Skip to content

Commit

Permalink
remove soft deletes for deck_memberships in migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jxjj committed Jan 23, 2025
1 parent 80b8761 commit 6d3ff0e
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions database/migrations/2025_01_23_021808_add_soft_deletes.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ public function up(): void
Schema::table('cards', function (Blueprint $table) {
$table->softDeletes();
});

Schema::table('deck_memberships', function (Blueprint $table) {
$table->softDeletes();
});
}

/**
Expand All @@ -44,9 +40,5 @@ public function down(): void
Schema::table('cards', function (Blueprint $table) {
$table->dropSoftDeletes();
});

Schema::table('deck_memberships', function (Blueprint $table) {
$table->dropSoftDeletes();
});
}
};

0 comments on commit 6d3ff0e

Please sign in to comment.