How to Create Table using Migration in Laravel 11?
Hello Developer,
In this example, I will show you how to create a database table using the migration command in laravel. We will look at examples of how to create a table through migration in laravel. we will help you to give an example of how to create table migration in laravel. you will learn laravel to create a table using migration. you will do the following things to create a table in laravel using migration.
I will guide you on how to create a database table using laravel migration. we will use the laravel command to creating migration for the table. you can easily create migration in laravel 11.
I will also let you know how to run migration and rollback migration and how to create migration using the command in laravel. let’s see the below instruction.
Create Migration:
Using the bellow command you can simply create migration for a database table.
php artisan make:migration create_posts_table
After running the above command, you can see create new file as below and you have to add a new column for string, integer, timestamp, and text data type as like bellow:
Location:-database/migrations/2024_10_13_061945_create_posts_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{…