string('shared_inbox')->nullable()->index(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('instances', function (Blueprint $table) { $table->dropColumn('shared_inbox'); }); } };