From f7fbccaefd882c4bc4be252f612ab9b12b3f729b Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Thu, 24 Oct 2024 23:18:10 +0200 Subject: [PATCH] chore: add database migrations --- .../src/migrations/0002_fantastic_sleeper.sql | 38 ++ .../src/migrations/meta/0002_snapshot.json | 509 ++++++++++++++++++ .../src/migrations/meta/_journal.json | 7 + 3 files changed, 554 insertions(+) create mode 100644 packages/database/src/migrations/0002_fantastic_sleeper.sql create mode 100644 packages/database/src/migrations/meta/0002_snapshot.json diff --git a/packages/database/src/migrations/0002_fantastic_sleeper.sql b/packages/database/src/migrations/0002_fantastic_sleeper.sql new file mode 100644 index 0000000..4592744 --- /dev/null +++ b/packages/database/src/migrations/0002_fantastic_sleeper.sql @@ -0,0 +1,38 @@ +CREATE TABLE IF NOT EXISTS "changelogs_to_pages" ( + "changelogId" uuid NOT NULL, + "pageId" uuid NOT NULL, + CONSTRAINT "changelogs_to_pages_changelogId_pageId_pk" PRIMARY KEY("changelogId","pageId") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "page" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "userId" varchar(32), + "title" text NOT NULL, + "description" text NOT NULL, + "icon" text DEFAULT '' +); +--> statement-breakpoint +ALTER TABLE "changelog" ADD COLUMN "pageId" uuid;--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "changelogs_to_pages" ADD CONSTRAINT "changelogs_to_pages_changelogId_changelog_id_fk" FOREIGN KEY ("changelogId") REFERENCES "public"."changelog"("id") ON DELETE cascade ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "changelogs_to_pages" ADD CONSTRAINT "changelogs_to_pages_pageId_page_id_fk" FOREIGN KEY ("pageId") REFERENCES "public"."page"("id") ON DELETE cascade ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "page" ADD CONSTRAINT "page_userId_user_id_fk" FOREIGN KEY ("userId") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "changelog" ADD CONSTRAINT "changelog_pageId_page_id_fk" FOREIGN KEY ("pageId") REFERENCES "public"."page"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; diff --git a/packages/database/src/migrations/meta/0002_snapshot.json b/packages/database/src/migrations/meta/0002_snapshot.json new file mode 100644 index 0000000..14d40ef --- /dev/null +++ b/packages/database/src/migrations/meta/0002_snapshot.json @@ -0,0 +1,509 @@ +{ + "id": "3dd358bb-891a-46fa-b49d-6018c900ce5f", + "prevId": "6217594b-c287-4f69-b0f2-9c80ed3f7f83", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.user": { + "name": "user", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "varchar(32)", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "user_email_unique": { + "name": "user_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + } + }, + "public.access_token": { + "name": "access_token", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "userId": { + "name": "userId", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "token": { + "name": "token", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "lastUsedOn": { + "name": "lastUsedOn", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "access_token_userId_user_id_fk": { + "name": "access_token_userId_user_id_fk", + "tableFrom": "access_token", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.changelog": { + "name": "changelog", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "userId": { + "name": "userId", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "pageId": { + "name": "pageId", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "title": { + "name": "title", + "type": "varchar(256)", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "isSemver": { + "name": "isSemver", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + } + }, + "indexes": {}, + "foreignKeys": { + "changelog_userId_user_id_fk": { + "name": "changelog_userId_user_id_fk", + "tableFrom": "changelog", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "changelog_pageId_page_id_fk": { + "name": "changelog_pageId_page_id_fk", + "tableFrom": "changelog", + "tableTo": "page", + "columnsFrom": [ + "pageId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.changelog_commit": { + "name": "changelog_commit", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "changelogId": { + "name": "changelogId", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "versionId": { + "name": "versionId", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "shortHash": { + "name": "shortHash", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true + }, + "author": { + "name": "author", + "type": "json", + "primaryKey": false, + "notNull": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "message": { + "name": "message", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "unique": { + "name": "unique", + "columns": [ + { + "expression": "changelogId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "shortHash", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "changelog_commit_changelogId_changelog_id_fk": { + "name": "changelog_commit_changelogId_changelog_id_fk", + "tableFrom": "changelog_commit", + "tableTo": "changelog", + "columnsFrom": [ + "changelogId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "changelog_commit_versionId_changelog_version_id_fk": { + "name": "changelog_commit_versionId_changelog_version_id_fk", + "tableFrom": "changelog_commit", + "tableTo": "changelog_version", + "columnsFrom": [ + "versionId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.changelog_version": { + "name": "changelog_version", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "releasedAt": { + "name": "releasedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "changelogId": { + "name": "changelogId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "version": { + "name": "version", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "markdown": { + "name": "markdown", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'draft'" + } + }, + "indexes": {}, + "foreignKeys": { + "changelog_version_changelogId_changelog_id_fk": { + "name": "changelog_version_changelogId_changelog_id_fk", + "tableFrom": "changelog_version", + "tableTo": "changelog", + "columnsFrom": [ + "changelogId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "public.changelogs_to_pages": { + "name": "changelogs_to_pages", + "schema": "", + "columns": { + "changelogId": { + "name": "changelogId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "pageId": { + "name": "pageId", + "type": "uuid", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "changelogs_to_pages_changelogId_changelog_id_fk": { + "name": "changelogs_to_pages_changelogId_changelog_id_fk", + "tableFrom": "changelogs_to_pages", + "tableTo": "changelog", + "columnsFrom": [ + "changelogId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "changelogs_to_pages_pageId_page_id_fk": { + "name": "changelogs_to_pages_pageId_page_id_fk", + "tableFrom": "changelogs_to_pages", + "tableTo": "page", + "columnsFrom": [ + "pageId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "changelogs_to_pages_changelogId_pageId_pk": { + "name": "changelogs_to_pages_changelogId_pageId_pk", + "columns": [ + "changelogId", + "pageId" + ] + } + }, + "uniqueConstraints": {} + }, + "public.page": { + "name": "page", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "userId": { + "name": "userId", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "icon": { + "name": "icon", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "''" + } + }, + "indexes": {}, + "foreignKeys": { + "page_userId_user_id_fk": { + "name": "page_userId_user_id_fk", + "tableFrom": "page", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + } + }, + "enums": { + "public.status": { + "name": "status", + "schema": "public", + "values": [ + "draft", + "review", + "published" + ] + } + }, + "schemas": {}, + "sequences": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/packages/database/src/migrations/meta/_journal.json b/packages/database/src/migrations/meta/_journal.json index d4f49d6..79cabc4 100644 --- a/packages/database/src/migrations/meta/_journal.json +++ b/packages/database/src/migrations/meta/_journal.json @@ -15,6 +15,13 @@ "when": 1728640705376, "tag": "0001_daffy_rattler", "breakpoints": true + }, + { + "idx": 2, + "version": "7", + "when": 1729804659796, + "tag": "0002_fantastic_sleeper", + "breakpoints": true } ] } \ No newline at end of file