diff --git a/supabase/migrations/20241017151343_user_profile_camelcase.sql b/supabase/migrations/20241017151343_user_profile_camelcase.sql index c23db01f..2d0255fb 100644 --- a/supabase/migrations/20241017151343_user_profile_camelcase.sql +++ b/supabase/migrations/20241017151343_user_profile_camelcase.sql @@ -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; \ No newline at end of file +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; \ No newline at end of file diff --git a/supabase/migrations/20241018114347_add_latest_drift_output_column.sql b/supabase/migrations/20241018114347_add_latest_drift_output_column.sql new file mode 100644 index 00000000..f825056b --- /dev/null +++ b/supabase/migrations/20241018114347_add_latest_drift_output_column.sql @@ -0,0 +1 @@ +-- leaving blank for backwards compatability \ No newline at end of file diff --git a/supabase/migrations/20241024215657_drop_user_private_info.sql b/supabase/migrations/20241024215657_drop_user_private_info.sql index acca233c..5b7ad51d 100644 --- a/supabase/migrations/20241024215657_drop_user_private_info.sql +++ b/supabase/migrations/20241024215657_drop_user_private_info.sql @@ -1,4 +1,2 @@ -DROP TABLE IF EXISTS user_private_info; - ALTER TABLE user_profiles ADD COLUMN default_organization uuid; \ No newline at end of file