From ea80ceeb6f2ee78e418fa86df99c466eebe56ec1 Mon Sep 17 00:00:00 2001 From: Rushil Perera Date: Sat, 21 Sep 2024 15:05:03 -0400 Subject: [PATCH] fix: forgot to generate migration for new table --- drizzle/0008_faulty_bushwacker.sql | 3 + drizzle/meta/0008_snapshot.json | 161 +++++++++++++++++++++++++++++ drizzle/meta/_journal.json | 7 ++ 3 files changed, 171 insertions(+) create mode 100644 drizzle/0008_faulty_bushwacker.sql create mode 100644 drizzle/meta/0008_snapshot.json diff --git a/drizzle/0008_faulty_bushwacker.sql b/drizzle/0008_faulty_bushwacker.sql new file mode 100644 index 0000000..36445c4 --- /dev/null +++ b/drizzle/0008_faulty_bushwacker.sql @@ -0,0 +1,3 @@ +CREATE TABLE `unreleased_titles` ( + `title_id` integer PRIMARY KEY NOT NULL +); diff --git a/drizzle/meta/0008_snapshot.json b/drizzle/meta/0008_snapshot.json new file mode 100644 index 0000000..67cdf37 --- /dev/null +++ b/drizzle/meta/0008_snapshot.json @@ -0,0 +1,161 @@ +{ + "version": "6", + "dialect": "sqlite", + "id": "efff8189-76e3-4944-b536-13121dcbe7b3", + "prevId": "9b7fe2b7-e3b1-4557-98b6-ba02f15eb37c", + "tables": { + "device_tokens": { + "name": "device_tokens", + "columns": { + "device_id": { + "name": "device_id", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "token": { + "name": "token", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "username": { + "name": "username", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false + }, + "last_connected_at": { + "name": "last_connected_at", + "type": "text", + "primaryKey": false, + "notNull": false, + "autoincrement": false, + "default": "(CURRENT_TIMESTAMP)" + } + }, + "indexes": { + "device_tokens_token_unique": { + "name": "device_tokens_token_unique", + "columns": ["token"], + "isUnique": true + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "key_value": { + "name": "key_value", + "columns": { + "key": { + "name": "key", + "type": "text", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "title_messages": { + "name": "title_messages", + "columns": { + "title_id": { + "name": "title_id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + }, + "message_id": { + "name": "message_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "unreleased_titles": { + "name": "unreleased_titles", + "columns": { + "title_id": { + "name": "title_id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {} + }, + "watch_status": { + "name": "watch_status", + "columns": { + "device_id": { + "name": "device_id", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + }, + "title_id": { + "name": "title_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": { + "watch_status_device_id_device_tokens_device_id_fk": { + "name": "watch_status_device_id_device_tokens_device_id_fk", + "tableFrom": "watch_status", + "tableTo": "device_tokens", + "columnsFrom": ["device_id"], + "columnsTo": ["device_id"], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "watch_status_device_id_title_id_pk": { + "columns": ["device_id", "title_id"], + "name": "watch_status_device_id_title_id_pk" + } + }, + "uniqueConstraints": {} + } + }, + "enums": {}, + "_meta": { + "schemas": {}, + "tables": {}, + "columns": {} + }, + "internal": { + "indexes": {} + } +} diff --git a/drizzle/meta/_journal.json b/drizzle/meta/_journal.json index f9d9cb5..748fb39 100644 --- a/drizzle/meta/_journal.json +++ b/drizzle/meta/_journal.json @@ -57,6 +57,13 @@ "when": 1726019943934, "tag": "0007_warm_alex_wilder", "breakpoints": true + }, + { + "idx": 8, + "version": "6", + "when": 1726945478448, + "tag": "0008_faulty_bushwacker", + "breakpoints": true } ] }