Skip to content

Commit de186b9

Browse files
fix: create missing migration for dropping obsolete indexes (calcom#24304)
* Create migration.sql * Drop index if exists, otherwise do nada --------- Co-authored-by: Alex van Andel <me@alexvanandel.com>
1 parent 6b24513 commit de186b9

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

  • packages/prisma/migrations/20251006191654_drop_watchlist_deleted_column_index
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- DropIndex
2+
DROP INDEX IF EXISTS "Watchlist_organizationId_isGlobal_idx";
3+
4+
-- DropIndex
5+
DROP INDEX IF EXISTS "Watchlist_source_idx";
6+
7+
-- DropIndex
8+
DROP INDEX IF EXISTS "WatchlistAudit_id_key";
9+
10+
-- DropIndex
11+
DROP INDEX IF EXISTS "WatchlistEventAudit_eventTypeId_timestamp_idx";
12+
13+
-- DropIndex
14+
DROP INDEX IF EXISTS "WatchlistEventAudit_watchlistId_timestamp_idx";

0 commit comments

Comments
 (0)