Study/prisma/migrations/20260808100000_remove_arcade/migration.sql
Elijah e8dffc9692
Some checks failed
Verify and publish container / build-and-push (push) Failing after 33s
Remove obsolete project artifacts
2026-08-08 18:50:16 -07:00

10 lines
402 B
SQL

-- Remove Arcade-generated activity and saved instruction settings.
DELETE FROM "StudyActivity"
WHERE "type" IN ('ARCADE_GROUP', 'ARCADE_WORD');
DELETE FROM "Setting"
WHERE "key" IN ('llmInstructionsConnections', 'llmInstructionsCrossword');
-- Drop the dependent table before its parent while SQLite foreign keys are enabled.
DROP TABLE IF EXISTS "ArcadeAttempt";
DROP TABLE IF EXISTS "ArcadePack";