-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #9 from Design-System-Project/fix/migrations
Fix/migrations
Showing
4 changed files
with
470 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ storybook-static | |
/dist | ||
|
||
**/.cache/ | ||
|
||
packages/database/src/migrations/ |
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,88 @@ | ||
DO $$ BEGIN | ||
CREATE TYPE "public"."integration_type" AS ENUM('github', 'figma'); | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
CREATE TABLE IF NOT EXISTS "accounts" ( | ||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
"user_id" uuid NOT NULL, | ||
CONSTRAINT "accounts_user_id_unique" UNIQUE("user_id") | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE IF NOT EXISTS "integrations" ( | ||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
"project_id" uuid NOT NULL, | ||
"type" "integration_type" NOT NULL, | ||
"created_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"updated_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"data" jsonb, | ||
CONSTRAINT "integrations_type_project_id_unique" UNIQUE("type","project_id") | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE IF NOT EXISTS "projects" ( | ||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
"name" text DEFAULT 'Default Project' NOT NULL, | ||
"created_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"updated_at" timestamp with time zone DEFAULT now() NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE IF NOT EXISTS "accounts_to_projects" ( | ||
"account_id" uuid NOT NULL, | ||
"project_id" uuid NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE IF NOT EXISTS "figma_resources" ( | ||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
"created_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"updated_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"resource_id" uuid NOT NULL, | ||
"name" text NOT NULL, | ||
CONSTRAINT "figma_resources_resource_id_unique" UNIQUE("resource_id") | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE IF NOT EXISTS "resources" ( | ||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
"created_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"updated_at" timestamp with time zone DEFAULT now() NOT NULL, | ||
"project_id" uuid NOT NULL, | ||
"name" text NOT NULL, | ||
"design_tokens" json, | ||
CONSTRAINT "resources_project_id_unique" UNIQUE("project_id") | ||
); | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "accounts" ADD CONSTRAINT "accounts_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "auth"."users"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "integrations" ADD CONSTRAINT "integrations_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "accounts_to_projects" ADD CONSTRAINT "accounts_to_projects_account_id_accounts_id_fk" FOREIGN KEY ("account_id") REFERENCES "public"."accounts"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "accounts_to_projects" ADD CONSTRAINT "accounts_to_projects_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "figma_resources" ADD CONSTRAINT "figma_resources_resource_id_resources_id_fk" FOREIGN KEY ("resource_id") REFERENCES "public"."resources"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "resources" ADD CONSTRAINT "resources_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; |
367 changes: 367 additions & 0 deletions
367
packages/database/src/migrations/meta/0000_snapshot.json
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,367 @@ | ||
{ | ||
"id": "0ea39276-750b-410c-b564-c2c13302811a", | ||
"prevId": "00000000-0000-0000-0000-000000000000", | ||
"version": "7", | ||
"dialect": "postgresql", | ||
"tables": { | ||
"public.accounts": { | ||
"name": "accounts", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "gen_random_uuid()" | ||
}, | ||
"user_id": { | ||
"name": "user_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"accounts_user_id_users_id_fk": { | ||
"name": "accounts_user_id_users_id_fk", | ||
"tableFrom": "accounts", | ||
"tableTo": "users", | ||
"schemaTo": "auth", | ||
"columnsFrom": [ | ||
"user_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"accounts_user_id_unique": { | ||
"name": "accounts_user_id_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"user_id" | ||
] | ||
} | ||
} | ||
}, | ||
"public.integrations": { | ||
"name": "integrations", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "gen_random_uuid()" | ||
}, | ||
"project_id": { | ||
"name": "project_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"type": { | ||
"name": "type", | ||
"type": "integration_type", | ||
"typeSchema": "public", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"updated_at": { | ||
"name": "updated_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"data": { | ||
"name": "data", | ||
"type": "jsonb", | ||
"primaryKey": false, | ||
"notNull": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"integrations_project_id_projects_id_fk": { | ||
"name": "integrations_project_id_projects_id_fk", | ||
"tableFrom": "integrations", | ||
"tableTo": "projects", | ||
"columnsFrom": [ | ||
"project_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"integrations_type_project_id_unique": { | ||
"name": "integrations_type_project_id_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"type", | ||
"project_id" | ||
] | ||
} | ||
} | ||
}, | ||
"public.projects": { | ||
"name": "projects", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "gen_random_uuid()" | ||
}, | ||
"name": { | ||
"name": "name", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "'Default Project'" | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"updated_at": { | ||
"name": "updated_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": {} | ||
}, | ||
"public.accounts_to_projects": { | ||
"name": "accounts_to_projects", | ||
"schema": "", | ||
"columns": { | ||
"account_id": { | ||
"name": "account_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"project_id": { | ||
"name": "project_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"accounts_to_projects_account_id_accounts_id_fk": { | ||
"name": "accounts_to_projects_account_id_accounts_id_fk", | ||
"tableFrom": "accounts_to_projects", | ||
"tableTo": "accounts", | ||
"columnsFrom": [ | ||
"account_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
}, | ||
"accounts_to_projects_project_id_projects_id_fk": { | ||
"name": "accounts_to_projects_project_id_projects_id_fk", | ||
"tableFrom": "accounts_to_projects", | ||
"tableTo": "projects", | ||
"columnsFrom": [ | ||
"project_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": {} | ||
}, | ||
"public.figma_resources": { | ||
"name": "figma_resources", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "gen_random_uuid()" | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"updated_at": { | ||
"name": "updated_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"resource_id": { | ||
"name": "resource_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"name": { | ||
"name": "name", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": true | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"figma_resources_resource_id_resources_id_fk": { | ||
"name": "figma_resources_resource_id_resources_id_fk", | ||
"tableFrom": "figma_resources", | ||
"tableTo": "resources", | ||
"columnsFrom": [ | ||
"resource_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"figma_resources_resource_id_unique": { | ||
"name": "figma_resources_resource_id_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"resource_id" | ||
] | ||
} | ||
} | ||
}, | ||
"public.resources": { | ||
"name": "resources", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "gen_random_uuid()" | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"updated_at": { | ||
"name": "updated_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"project_id": { | ||
"name": "project_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"name": { | ||
"name": "name", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"design_tokens": { | ||
"name": "design_tokens", | ||
"type": "json", | ||
"primaryKey": false, | ||
"notNull": false | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"resources_project_id_projects_id_fk": { | ||
"name": "resources_project_id_projects_id_fk", | ||
"tableFrom": "resources", | ||
"tableTo": "projects", | ||
"columnsFrom": [ | ||
"project_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"resources_project_id_unique": { | ||
"name": "resources_project_id_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"project_id" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"enums": { | ||
"public.integration_type": { | ||
"name": "integration_type", | ||
"schema": "public", | ||
"values": [ | ||
"github", | ||
"figma" | ||
] | ||
} | ||
}, | ||
"schemas": {}, | ||
"sequences": {}, | ||
"_meta": { | ||
"columns": {}, | ||
"schemas": {}, | ||
"tables": {} | ||
} | ||
} |
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,13 @@ | ||
{ | ||
"version": "7", | ||
"dialect": "postgresql", | ||
"entries": [ | ||
{ | ||
"idx": 0, | ||
"version": "7", | ||
"when": 1724264494778, | ||
"tag": "0000_illegal_ultimo", | ||
"breakpoints": true | ||
} | ||
] | ||
} |