string('key_id')->nullable()->unique()->index()->after('outbox_url'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('profiles', function (Blueprint $table) { $table->dropColumn('key_id'); }); } }