From 8395c0c99c325d7c4d713939a78f5e0848f73b7d Mon Sep 17 00:00:00 2001 From: Roy Scheeren Date: Thu, 25 Jan 2024 14:49:34 +0100 Subject: [PATCH] feat(envited.ascs.digital): updated staging migrations Signed-off-by: Roy Scheeren --- ...brood.sql => 0000_groovy_ender_wiggin.sql} | 45 +- .../drizzle/staging/0001_rare_falcon.sql | 43 -- .../drizzle/staging/meta/0000_snapshot.json | 203 +++++- .../drizzle/staging/meta/0001_snapshot.json | 619 ------------------ .../drizzle/staging/meta/_journal.json | 11 +- 5 files changed, 246 insertions(+), 675 deletions(-) rename apps/envited.ascs.digital/drizzle/staging/{0000_sour_brood.sql => 0000_groovy_ender_wiggin.sql} (68%) delete mode 100644 apps/envited.ascs.digital/drizzle/staging/0001_rare_falcon.sql delete mode 100644 apps/envited.ascs.digital/drizzle/staging/meta/0001_snapshot.json diff --git a/apps/envited.ascs.digital/drizzle/staging/0000_sour_brood.sql b/apps/envited.ascs.digital/drizzle/staging/0000_groovy_ender_wiggin.sql similarity index 68% rename from apps/envited.ascs.digital/drizzle/staging/0000_sour_brood.sql rename to apps/envited.ascs.digital/drizzle/staging/0000_groovy_ender_wiggin.sql index b36b43a5..043b4531 100644 --- a/apps/envited.ascs.digital/drizzle/staging/0000_sour_brood.sql +++ b/apps/envited.ascs.digital/drizzle/staging/0000_groovy_ender_wiggin.sql @@ -5,6 +5,14 @@ CREATE TABLE IF NOT EXISTS "addressType" ( CONSTRAINT "addressType_name_unique" UNIQUE("name") ); --> statement-breakpoint +CREATE TABLE IF NOT EXISTS "companyCategory" ( + "id" text PRIMARY KEY NOT NULL, + "name" text, + "description" text, + CONSTRAINT "companyCategory_id_unique" UNIQUE("id"), + CONSTRAINT "companyCategory_name_unique" UNIQUE("name") +); +--> statement-breakpoint CREATE TABLE IF NOT EXISTS "credentialType" ( "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, "name" text, @@ -19,6 +27,29 @@ CREATE TABLE IF NOT EXISTS "issuer" ( CONSTRAINT "issuer_id_unique" UNIQUE("id") ); --> statement-breakpoint +CREATE TABLE IF NOT EXISTS "profile" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" text, + "description" text, + "logo" text, + "street_address" text, + "postal_code" text, + "address_locality" text, + "address_country" text, + "first_name" text, + "last_name" text, + "phone" text, + "email" text, + "website" text, + "offerings" jsonb, + CONSTRAINT "profile_name_unique" UNIQUE("name") +); +--> statement-breakpoint +CREATE TABLE IF NOT EXISTS "profilesToCompanyCategories" ( + "profile_id" uuid NOT NULL, + "company_category_id" text NOT NULL +); +--> statement-breakpoint CREATE TABLE IF NOT EXISTS "role" ( "id" text PRIMARY KEY NOT NULL, "name" text, @@ -34,7 +65,7 @@ CREATE TABLE IF NOT EXISTS "user" ( "is_envited_member" boolean, "street_address" text, "postal_code" text, - "address_location" text, + "address_locality" text, "address_country" text, "vat_id" text, "privacy_policy_accepted" text, @@ -59,6 +90,18 @@ CREATE TABLE IF NOT EXISTS "usersToRoles" ( "role_id" text NOT NULL ); --> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "profilesToCompanyCategories" ADD CONSTRAINT "profilesToCompanyCategories_profile_id_profile_id_fk" FOREIGN KEY ("profile_id") REFERENCES "public"."profile"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint +DO $$ BEGIN + ALTER TABLE "profilesToCompanyCategories" ADD CONSTRAINT "profilesToCompanyCategories_company_category_id_companyCategory_id_fk" FOREIGN KEY ("company_category_id") REFERENCES "public"."companyCategory"("id") ON DELETE no action ON UPDATE no action; +EXCEPTION + WHEN duplicate_object THEN null; +END $$; +--> statement-breakpoint DO $$ BEGIN ALTER TABLE "user" ADD CONSTRAINT "user_issuer_id_issuer_id_fk" FOREIGN KEY ("issuer_id") REFERENCES "public"."issuer"("id") ON DELETE no action ON UPDATE no action; EXCEPTION diff --git a/apps/envited.ascs.digital/drizzle/staging/0001_rare_falcon.sql b/apps/envited.ascs.digital/drizzle/staging/0001_rare_falcon.sql deleted file mode 100644 index bb20f7cc..00000000 --- a/apps/envited.ascs.digital/drizzle/staging/0001_rare_falcon.sql +++ /dev/null @@ -1,43 +0,0 @@ -CREATE TABLE IF NOT EXISTS "companyCategory" ( - "id" text PRIMARY KEY NOT NULL, - "name" text, - "description" text, - CONSTRAINT "companyCategory_id_unique" UNIQUE("id"), - CONSTRAINT "companyCategory_name_unique" UNIQUE("name") -); ---> statement-breakpoint -CREATE TABLE IF NOT EXISTS "profile" ( - "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, - "name" text, - "description" text, - "logo" text, - "street_address" text, - "postal_code" text, - "address_locality" text, - "address_country" text, - "first_name" text, - "last_name" text, - "phone" text, - "email" text, - "website" text, - "offerings" jsonb, - CONSTRAINT "profile_name_unique" UNIQUE("name") -); ---> statement-breakpoint -CREATE TABLE IF NOT EXISTS "profilesToCompanyCategories" ( - "profile_id" uuid NOT NULL, - "company_category_id" text NOT NULL -); ---> statement-breakpoint -ALTER TABLE "user" RENAME COLUMN "address_location" TO "address_locality";--> statement-breakpoint -DO $$ BEGIN - ALTER TABLE "profilesToCompanyCategories" ADD CONSTRAINT "profilesToCompanyCategories_profile_id_profile_id_fk" FOREIGN KEY ("profile_id") REFERENCES "public"."profile"("id") ON DELETE no action ON UPDATE no action; -EXCEPTION - WHEN duplicate_object THEN null; -END $$; ---> statement-breakpoint -DO $$ BEGIN - ALTER TABLE "profilesToCompanyCategories" ADD CONSTRAINT "profilesToCompanyCategories_company_category_id_companyCategory_id_fk" FOREIGN KEY ("company_category_id") REFERENCES "public"."companyCategory"("id") ON DELETE no action ON UPDATE no action; -EXCEPTION - WHEN duplicate_object THEN null; -END $$; diff --git a/apps/envited.ascs.digital/drizzle/staging/meta/0000_snapshot.json b/apps/envited.ascs.digital/drizzle/staging/meta/0000_snapshot.json index 77d24f03..396e2acd 100644 --- a/apps/envited.ascs.digital/drizzle/staging/meta/0000_snapshot.json +++ b/apps/envited.ascs.digital/drizzle/staging/meta/0000_snapshot.json @@ -1,5 +1,5 @@ { - "id": "0f18334e-00d5-49b3-a2e4-c4f1e330f663", + "id": "beab304d-1e10-46f3-9c54-1aed13b28857", "prevId": "00000000-0000-0000-0000-000000000000", "version": "5", "dialect": "pg", @@ -41,6 +41,49 @@ } } }, + "companyCategory": { + "name": "companyCategory", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "companyCategory_id_unique": { + "name": "companyCategory_id_unique", + "nullsNotDistinct": false, + "columns": [ + "id" + ] + }, + "companyCategory_name_unique": { + "name": "companyCategory_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + } + }, "credentialType": { "name": "credentialType", "schema": "", @@ -112,6 +155,160 @@ } } }, + "profile": { + "name": "profile", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "logo": { + "name": "logo", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "street_address": { + "name": "street_address", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "postal_code": { + "name": "postal_code", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "address_locality": { + "name": "address_locality", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "address_country": { + "name": "address_country", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "first_name": { + "name": "first_name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "last_name": { + "name": "last_name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "phone": { + "name": "phone", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "website": { + "name": "website", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "offerings": { + "name": "offerings", + "type": "jsonb", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "profile_name_unique": { + "name": "profile_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + } + }, + "profilesToCompanyCategories": { + "name": "profilesToCompanyCategories", + "schema": "", + "columns": { + "profile_id": { + "name": "profile_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "company_category_id": { + "name": "company_category_id", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "profilesToCompanyCategories_profile_id_profile_id_fk": { + "name": "profilesToCompanyCategories_profile_id_profile_id_fk", + "tableFrom": "profilesToCompanyCategories", + "tableTo": "profile", + "schemaTo": "public", + "columnsFrom": [ + "profile_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "profilesToCompanyCategories_company_category_id_companyCategory_id_fk": { + "name": "profilesToCompanyCategories_company_category_id_companyCategory_id_fk", + "tableFrom": "profilesToCompanyCategories", + "tableTo": "companyCategory", + "schemaTo": "public", + "columnsFrom": [ + "company_category_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, "role": { "name": "role", "schema": "", @@ -194,8 +391,8 @@ "primaryKey": false, "notNull": false }, - "address_location": { - "name": "address_location", + "address_locality": { + "name": "address_locality", "type": "text", "primaryKey": false, "notNull": false diff --git a/apps/envited.ascs.digital/drizzle/staging/meta/0001_snapshot.json b/apps/envited.ascs.digital/drizzle/staging/meta/0001_snapshot.json deleted file mode 100644 index 24416c1d..00000000 --- a/apps/envited.ascs.digital/drizzle/staging/meta/0001_snapshot.json +++ /dev/null @@ -1,619 +0,0 @@ -{ - "id": "ad23ddb4-78f2-4194-8dce-cee58ae52b5c", - "prevId": "0f18334e-00d5-49b3-a2e4-c4f1e330f663", - "version": "5", - "dialect": "pg", - "tables": { - "addressType": { - "name": "addressType", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "uuid", - "primaryKey": true, - "notNull": true, - "default": "gen_random_uuid()" - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "description": { - "name": "description", - "type": "text", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": { - "addressType_name_unique": { - "name": "addressType_name_unique", - "nullsNotDistinct": false, - "columns": [ - "name" - ] - } - } - }, - "companyCategory": { - "name": "companyCategory", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "text", - "primaryKey": true, - "notNull": true - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "description": { - "name": "description", - "type": "text", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": { - "companyCategory_id_unique": { - "name": "companyCategory_id_unique", - "nullsNotDistinct": false, - "columns": [ - "id" - ] - }, - "companyCategory_name_unique": { - "name": "companyCategory_name_unique", - "nullsNotDistinct": false, - "columns": [ - "name" - ] - } - } - }, - "credentialType": { - "name": "credentialType", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "uuid", - "primaryKey": true, - "notNull": true, - "default": "gen_random_uuid()" - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "description": { - "name": "description", - "type": "text", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": {} - }, - "issuer": { - "name": "issuer", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "text", - "primaryKey": true, - "notNull": true - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "url": { - "name": "url", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "type": { - "name": "type", - "type": "text", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": { - "issuer_id_unique": { - "name": "issuer_id_unique", - "nullsNotDistinct": false, - "columns": [ - "id" - ] - } - } - }, - "profile": { - "name": "profile", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "uuid", - "primaryKey": true, - "notNull": true, - "default": "gen_random_uuid()" - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "description": { - "name": "description", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "logo": { - "name": "logo", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "street_address": { - "name": "street_address", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "postal_code": { - "name": "postal_code", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "address_locality": { - "name": "address_locality", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "address_country": { - "name": "address_country", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "first_name": { - "name": "first_name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "last_name": { - "name": "last_name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "phone": { - "name": "phone", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "email": { - "name": "email", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "website": { - "name": "website", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "offerings": { - "name": "offerings", - "type": "jsonb", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": { - "profile_name_unique": { - "name": "profile_name_unique", - "nullsNotDistinct": false, - "columns": [ - "name" - ] - } - } - }, - "profilesToCompanyCategories": { - "name": "profilesToCompanyCategories", - "schema": "", - "columns": { - "profile_id": { - "name": "profile_id", - "type": "uuid", - "primaryKey": false, - "notNull": true - }, - "company_category_id": { - "name": "company_category_id", - "type": "text", - "primaryKey": false, - "notNull": true - } - }, - "indexes": {}, - "foreignKeys": { - "profilesToCompanyCategories_profile_id_profile_id_fk": { - "name": "profilesToCompanyCategories_profile_id_profile_id_fk", - "tableFrom": "profilesToCompanyCategories", - "tableTo": "profile", - "schemaTo": "public", - "columnsFrom": [ - "profile_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - }, - "profilesToCompanyCategories_company_category_id_companyCategory_id_fk": { - "name": "profilesToCompanyCategories_company_category_id_companyCategory_id_fk", - "tableFrom": "profilesToCompanyCategories", - "tableTo": "companyCategory", - "schemaTo": "public", - "columnsFrom": [ - "company_category_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - } - }, - "compositePrimaryKeys": {}, - "uniqueConstraints": {} - }, - "role": { - "name": "role", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "text", - "primaryKey": true, - "notNull": true - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "description": { - "name": "description", - "type": "text", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": { - "role_id_unique": { - "name": "role_id_unique", - "nullsNotDistinct": false, - "columns": [ - "id" - ] - } - } - }, - "user": { - "name": "user", - "schema": "", - "columns": { - "id": { - "name": "id", - "type": "text", - "primaryKey": true, - "notNull": true - }, - "name": { - "name": "name", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "email": { - "name": "email", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "is_ascs_member": { - "name": "is_ascs_member", - "type": "boolean", - "primaryKey": false, - "notNull": false - }, - "is_envited_member": { - "name": "is_envited_member", - "type": "boolean", - "primaryKey": false, - "notNull": false - }, - "street_address": { - "name": "street_address", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "postal_code": { - "name": "postal_code", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "address_locality": { - "name": "address_locality", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "address_country": { - "name": "address_country", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "vat_id": { - "name": "vat_id", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "privacy_policy_accepted": { - "name": "privacy_policy_accepted", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "articles_of_association_accepted": { - "name": "articles_of_association_accepted", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "contribution_rules_accepted": { - "name": "contribution_rules_accepted", - "type": "text", - "primaryKey": false, - "notNull": false - }, - "issuer_id": { - "name": "issuer_id", - "type": "text", - "primaryKey": false, - "notNull": true - }, - "address_type_id": { - "name": "address_type_id", - "type": "uuid", - "primaryKey": false, - "notNull": false - }, - "issuance_date": { - "name": "issuance_date", - "type": "timestamp", - "primaryKey": false, - "notNull": false - }, - "expiration_date": { - "name": "expiration_date", - "type": "timestamp", - "primaryKey": false, - "notNull": false - }, - "created_at": { - "name": "created_at", - "type": "timestamp", - "primaryKey": false, - "notNull": false - }, - "updated_at": { - "name": "updated_at", - "type": "timestamp", - "primaryKey": false, - "notNull": false - } - }, - "indexes": {}, - "foreignKeys": { - "user_issuer_id_issuer_id_fk": { - "name": "user_issuer_id_issuer_id_fk", - "tableFrom": "user", - "tableTo": "issuer", - "schemaTo": "public", - "columnsFrom": [ - "issuer_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - }, - "user_address_type_id_addressType_id_fk": { - "name": "user_address_type_id_addressType_id_fk", - "tableFrom": "user", - "tableTo": "addressType", - "schemaTo": "public", - "columnsFrom": [ - "address_type_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - } - }, - "compositePrimaryKeys": {}, - "uniqueConstraints": { - "user_id_unique": { - "name": "user_id_unique", - "nullsNotDistinct": false, - "columns": [ - "id" - ] - } - } - }, - "usersToCredentialTypes": { - "name": "usersToCredentialTypes", - "schema": "", - "columns": { - "user_id": { - "name": "user_id", - "type": "text", - "primaryKey": false, - "notNull": true - }, - "credential_type_id": { - "name": "credential_type_id", - "type": "uuid", - "primaryKey": false, - "notNull": true - } - }, - "indexes": {}, - "foreignKeys": { - "usersToCredentialTypes_user_id_user_id_fk": { - "name": "usersToCredentialTypes_user_id_user_id_fk", - "tableFrom": "usersToCredentialTypes", - "tableTo": "user", - "schemaTo": "public", - "columnsFrom": [ - "user_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - }, - "usersToCredentialTypes_credential_type_id_credentialType_id_fk": { - "name": "usersToCredentialTypes_credential_type_id_credentialType_id_fk", - "tableFrom": "usersToCredentialTypes", - "tableTo": "credentialType", - "schemaTo": "public", - "columnsFrom": [ - "credential_type_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - } - }, - "compositePrimaryKeys": {}, - "uniqueConstraints": {} - }, - "usersToRoles": { - "name": "usersToRoles", - "schema": "", - "columns": { - "user_id": { - "name": "user_id", - "type": "text", - "primaryKey": false, - "notNull": true - }, - "role_id": { - "name": "role_id", - "type": "text", - "primaryKey": false, - "notNull": true - } - }, - "indexes": {}, - "foreignKeys": { - "usersToRoles_user_id_user_id_fk": { - "name": "usersToRoles_user_id_user_id_fk", - "tableFrom": "usersToRoles", - "tableTo": "user", - "schemaTo": "public", - "columnsFrom": [ - "user_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - }, - "usersToRoles_role_id_role_id_fk": { - "name": "usersToRoles_role_id_role_id_fk", - "tableFrom": "usersToRoles", - "tableTo": "role", - "schemaTo": "public", - "columnsFrom": [ - "role_id" - ], - "columnsTo": [ - "id" - ], - "onDelete": "no action", - "onUpdate": "no action" - } - }, - "compositePrimaryKeys": {}, - "uniqueConstraints": {} - } - }, - "enums": {}, - "schemas": {}, - "_meta": { - "columns": {}, - "schemas": {}, - "tables": {} - } -} \ No newline at end of file diff --git a/apps/envited.ascs.digital/drizzle/staging/meta/_journal.json b/apps/envited.ascs.digital/drizzle/staging/meta/_journal.json index ae71d345..903f5115 100644 --- a/apps/envited.ascs.digital/drizzle/staging/meta/_journal.json +++ b/apps/envited.ascs.digital/drizzle/staging/meta/_journal.json @@ -5,15 +5,8 @@ { "idx": 0, "version": "5", - "when": 1705574199077, - "tag": "0000_sour_brood", - "breakpoints": true - }, - { - "idx": 1, - "version": "5", - "when": 1706021765110, - "tag": "0001_rare_falcon", + "when": 1706187554884, + "tag": "0000_groovy_ender_wiggin", "breakpoints": true } ]