Answers for "laravel modify field in DB 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 "laravel modify field in DB migration"

Browse Popular Code Answers by Language