Answers for "php artisan change column type in table"

PHP
1

laravel change column type

php artisan make:migration change_sometable_in_finance_table --table=finance

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}
Posted by: Guest on September-14-2021
0

update column type laravel migration

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

Code answers related to "php artisan change column type in table"

Browse Popular Code Answers by Language