-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
9 changes: 4 additions & 5 deletions
9
supabase/migrations/20241017151343_user_profile_camelcase.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
ALTER TABLE user_profiles | ||
RENAME COLUMN hasAcceptedTerms TO has_accepted_terms, | ||
RENAME COLUMN hasCompletedProfile TO has_completed_profile, | ||
RENAME COLUMN hasCreatedOrganization TO has_created_organization, | ||
RENAME COLUMN isCreatedThroughOrgInvitation TO is_created_through_org_invitation; | ||
ALTER TABLE user_profiles RENAME COLUMN hasAcceptedTerms TO has_accepted_terms; | ||
ALTER TABLE user_profiles RENAME COLUMN hasCompletedProfile TO has_completed_profile; | ||
ALTER TABLE user_profiles RENAME COLUMN hasCreatedOrganization TO has_created_organization; | ||
ALTER TABLE user_profiles RENAME COLUMN isCreatedThroughOrgInvitation TO is_created_through_org_invitation; |
1 change: 1 addition & 0 deletions
1
supabase/migrations/20241018114347_add_latest_drift_output_column.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-- leaving blank for backwards compatability |
2 changes: 0 additions & 2 deletions
2
supabase/migrations/20241024215657_drop_user_private_info.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
DROP TABLE IF EXISTS user_private_info; | ||
|
||
ALTER TABLE user_profiles | ||
ADD COLUMN default_organization uuid; |