Answers for "how to update existing column types in migration laravel"

PHP
1

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
0

add column migration laravel 8

add migration column laravel
Posted by: Guest on November-16-2021

Code answers related to "how to update existing column types in migration laravel"

Browse Popular Code Answers by Language