Some checks failed
Verify and publish container / build-and-push (push) Failing after 33s
10 lines
402 B
SQL
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";
|