Skip to content

Commit

Permalink
commented out migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes committed Oct 30, 2024
1 parent d00d3c7 commit fe4700c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions supabase/migrations/20241017151749_user_profile_naming.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;
-- 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;

0 comments on commit fe4700c

Please sign in to comment.