Separate auth0 users depending on tenants

This commit is contained in:
Charles Bochet
2023-02-03 19:59:00 +01:00
parent d94ed13f4e
commit d58af82c51
13 changed files with 147 additions and 56 deletions

View File

@ -0,0 +1 @@
alter table "public"."tenants" drop column "auth0_client_id";

View File

@ -0,0 +1 @@
alter table "public"."tenants" add column "auth0_client_id" text null;

View File

@ -0,0 +1 @@
alter table "public"."tenants" drop column "domain";

View File

@ -0,0 +1,2 @@
alter table "public"."tenants" add column "domain" text
null default 'pilot.twenty.com';