From 66819f8cb3503aec794e35d4d8bf712587356738 Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Thu, 6 Jul 2023 19:51:05 +0800 Subject: [PATCH] fix migration sql --- packages/db/migrations/0114.undo.add_type_to_subscriptions.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/db/migrations/0114.undo.add_type_to_subscriptions.sql b/packages/db/migrations/0114.undo.add_type_to_subscriptions.sql index 1d6b9f048..e15b0698b 100755 --- a/packages/db/migrations/0114.undo.add_type_to_subscriptions.sql +++ b/packages/db/migrations/0114.undo.add_type_to_subscriptions.sql @@ -10,6 +10,6 @@ ALTER TABLE omnivore.subscriptions DROP COLUMN count, DROP COLUMN "type"; -DROP TYPE omnivore.subscription_type; +DROP TYPE subscription_type; COMMIT;