From fe4700caed2d12f55386c7e956ddaba1a53f9071 Mon Sep 17 00:00:00 2001 From: motatoes Date: Wed, 30 Oct 2024 19:01:35 +0000 Subject: [PATCH] commented out migrations --- .../migrations/20241017151749_user_profile_naming.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/supabase/migrations/20241017151749_user_profile_naming.sql b/supabase/migrations/20241017151749_user_profile_naming.sql index 53d90a49..837106d2 100644 --- a/supabase/migrations/20241017151749_user_profile_naming.sql +++ b/supabase/migrations/20241017151749_user_profile_naming.sql @@ -6,8 +6,8 @@ DROP COLUMN IF EXISTS hasCreatedOrganization, DROP COLUMN IF EXISTS isCreatedThroughOrgInvitation; -- Recreate columns with underscore notation -ALTER TABLE user_profiles -ADD COLUMN has_accepted_terms BOOLEAN DEFAULT TRUE, -ADD COLUMN has_completed_profile BOOLEAN DEFAULT FALSE, -ADD COLUMN has_created_organization BOOLEAN DEFAULT FALSE, -ADD COLUMN is_created_through_org_invitation BOOLEAN DEFAULT FALSE; \ No newline at end of file +-- ALTER TABLE user_profiles +-- ADD COLUMN has_accepted_terms BOOLEAN DEFAULT TRUE, +-- ADD COLUMN has_completed_profile BOOLEAN DEFAULT FALSE, +-- ADD COLUMN has_created_organization BOOLEAN DEFAULT FALSE, +-- ADD COLUMN is_created_through_org_invitation BOOLEAN DEFAULT FALSE; \ No newline at end of file