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