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(); }); } }