Answers for "php artisan make:migration change_fieldname_to_datatype_in_tablename_table --table=tablename"

PHP
3

laravel migration change column type

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}
Posted by: Guest on June-10-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

Code answers related to "php artisan make:migration change_fieldname_to_datatype_in_tablename_table --table=tablename"

Browse Popular Code Answers by Language