Answers for "change data type of existing column in laravel migration"

PHP
0

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

Code answers related to "change data type of existing column in laravel migration"

Browse Popular Code Answers by Language