Skip to content
Merged

next #145

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drizzle/0004_loose_wasp.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP TABLE "_prisma_migrations" CASCADE;
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DROP TABLE "_prisma_migrations" CASCADE; will fail in environments where the table is already missing (e.g., someone manually removed it or a DB was created without the legacy Prisma artifacts). Consider using DROP TABLE IF EXISTS and avoid CASCADE unless you’ve verified there are dependent objects you intentionally want to remove; CASCADE can drop unexpected dependent views/constraints.

Suggested change
DROP TABLE "_prisma_migrations" CASCADE;
DROP TABLE IF EXISTS "_prisma_migrations";

Copilot uses AI. Check for mistakes.
Loading
Loading