Laravel -Änderungsspaltenentyp
php artisan make:migration change_sometable_in_finance_table --table=finance
public function up()
{
Schema::table('sometable', function (Blueprint $table) {
$table->text('text')->change();
});
}
Excited Echidna