getDatabasePlatform() ->registerDoctrineTypeMapping('enum', 'string'); } /** * Run the migrations. * * @return void */ public function up() { Schema::table('statuses', function ($table) { $table->text('caption')->change(); $table->text('rendered')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }