Answers for "laravel migration add column after type text"

PHP
4

laravel migration add column after

Schema::table('users', function ($table) {
    $table->string('email')->after('id')->nullable();
});
Posted by: Guest on December-11-2020
6

laravel migration update table column type

Schema::table('users', function ($table) {
    $table->string('name', 50)->change();
});
We could also modify a column to be nullable:

Schema::table('users', function ($table) {
    $table->string('name', 50)->nullable()->change();
});
Posted by: Guest on July-31-2021
0

update column type laravel migration

$table-><column_type>('<column_name>')->change();
Posted by: Guest on January-11-2022

Code answers related to "laravel migration add column after type text"

Browse Popular Code Answers by Language