Laravel -Migration Änderung des Säulenentyps
public function up()
{
Schema::table('sometable', function (Blueprint $table) {
$table->text('text')->change();
});
}
hmt