From 8716d90148701ddeff111fe30fde6d6eed0ab32e Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Sun, 8 Mar 2026 14:53:23 +0100 Subject: [PATCH] feat: add migration to remove 'condizioni' column from 'ordini' table --- apps/db/migrations/35_removecondizioni.up.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 apps/db/migrations/35_removecondizioni.up.sql diff --git a/apps/db/migrations/35_removecondizioni.up.sql b/apps/db/migrations/35_removecondizioni.up.sql new file mode 100644 index 0000000..d58c005 --- /dev/null +++ b/apps/db/migrations/35_removecondizioni.up.sql @@ -0,0 +1 @@ +ALTER TABLE IF EXISTS public.ordini DROP COLUMN IF EXISTS condizioni; \ No newline at end of file