This commit is contained in:
Charles Bochet
2023-04-24 17:00:14 +02:00
parent 29b6109e54
commit 7ae7efb523
17 changed files with 62 additions and 103 deletions

View File

@ -0,0 +1,10 @@
alter table "public"."workspaces" rename column "domain_name" to "name";
alter table "public"."workspaces" add constraint "workspaces_domain_name_key" unique (domain_name);
alter table "public"."workspaces" alter column "domain_name" drop not null;
alter table "public"."workspaces" add column "domain_name" text;
DROP TABLE "public"."workspace_members";