-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
supabase: compact all migrations, refreshed from production
Minor adjustments to account for drift between migrations and the production DB.
- Loading branch information
1 parent
33fe96f
commit 0ed270a
Showing
79 changed files
with
8,371 additions
and
6,523 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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,54 @@ | ||
begin; | ||
|
||
-- Roles which are created by supabase: anon, authenticated, supabase_admin, service_role. | ||
|
||
create role stats_loader with login password 'stats_loader_password' bypassrls; | ||
create role marketplace_integration; | ||
create role gatsby_reader; | ||
create role github_action_connector_refresh; | ||
create role wgd_automation; | ||
create role reporting_user; | ||
|
||
-- Required for postgres to give ownership of catalog_stats to stats_loader. | ||
grant stats_loader to postgres; | ||
|
||
-- Required for stats materialization to create flow_checkpoins_v1 and flow_materializations_v2. | ||
grant create on schema public to stats_loader; | ||
|
||
-- TODO(johnny): Required for `authenticated` to own `drafts_ext` and `publication_specs_ext`. | ||
-- We should make them owed by postgres and grant usage instead. | ||
grant create on schema public to authenticated; | ||
|
||
-- The production database has a Flow materialization of Stripe customer data. | ||
-- This is a partial table which matches the portions we use today. | ||
create schema stripe; | ||
|
||
create table stripe.customers ( | ||
id text primary key, | ||
address json, | ||
"address/city" text, | ||
"address/country" text, | ||
"address/line1" text, | ||
"address/line2" text, | ||
"address/postal_code" text, | ||
"address/state" text, | ||
balance bigint, | ||
created bigint, | ||
currency text, | ||
default_source text, | ||
delinquent boolean, | ||
description text, | ||
email text, | ||
invoice_prefix text, | ||
invoice_settings json, | ||
"invoice_settings/custom_fields" json, | ||
"invoice_settings/default_payment_method" text, | ||
metadata json, | ||
name text, | ||
phone text, | ||
flow_document json not null | ||
); | ||
|
||
grant usage on schema stripe to postgres; | ||
|
||
commit; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.