string('scope')->default('public')->index()->after('is_nsfw'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('statuses', function (Blueprint $table) { $table->dropColumn('scope'); }); } }