🛠️ **Migration:** Added hasTable check to meetup_user migration to prevent redundant table creation.

This commit is contained in:
BT
2026-05-02 22:06:35 +01:00
parent 11821b0fae
commit 172217d388
@@ -11,6 +11,10 @@ return new class extends Migration
*/
public function up(): void
{
if (Schema::hasTable('meetup_user')) {
return;
}
Schema::disableForeignKeyConstraints();
Schema::create('meetup_user', function (Blueprint $table) {