From 923c7c6b1a6549a6c5012713a22d5cf6e478f994 Mon Sep 17 00:00:00 2001 From: Mathias Magnusson Date: Thu, 14 Aug 2025 15:11:23 +0200 Subject: Set up htmx & drizzle+libsql --- migrations/0000_parallel_overlord.sql | 3 +++ migrations/meta/0000_snapshot.json | 35 +++++++++++++++++++++++++++++++++++ migrations/meta/_journal.json | 13 +++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 migrations/0000_parallel_overlord.sql create mode 100644 migrations/meta/0000_snapshot.json create mode 100644 migrations/meta/_journal.json (limited to 'migrations') diff --git a/migrations/0000_parallel_overlord.sql b/migrations/0000_parallel_overlord.sql new file mode 100644 index 0000000..c1c0d28 --- /dev/null +++ b/migrations/0000_parallel_overlord.sql @@ -0,0 +1,3 @@ +CREATE TABLE `groups` ( + `name` text NOT NULL +); diff --git a/migrations/meta/0000_snapshot.json b/migrations/meta/0000_snapshot.json new file mode 100644 index 0000000..245d657 --- /dev/null +++ b/migrations/meta/0000_snapshot.json @@ -0,0 +1,35 @@ +{ + "version": "6", + "dialect": "sqlite", + "id": "2b9ab579-4d91-4045-b35e-b5cceebe74de", + "prevId": "00000000-0000-0000-0000-000000000000", + "tables": { + "groups": { + "name": "groups", + "columns": { + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true, + "autoincrement": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "checkConstraints": {} + } + }, + "views": {}, + "enums": {}, + "_meta": { + "schemas": {}, + "tables": {}, + "columns": {} + }, + "internal": { + "indexes": {} + } +} \ No newline at end of file diff --git a/migrations/meta/_journal.json b/migrations/meta/_journal.json new file mode 100644 index 0000000..ccb08a8 --- /dev/null +++ b/migrations/meta/_journal.json @@ -0,0 +1,13 @@ +{ + "version": "7", + "dialect": "sqlite", + "entries": [ + { + "idx": 0, + "version": "6", + "when": 1755176694946, + "tag": "0000_parallel_overlord", + "breakpoints": true + } + ] +} \ No newline at end of file -- cgit v1.2.3