From a110c200e86d2325af07167531fac0f61d9681a0 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Fri, 26 Dec 2025 18:41:26 +0100 Subject: Switch to GUI to manage the library Allow to regroup the CLI and the view into one unique tool. --- resources/migrations/01.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 resources/migrations/01.sql (limited to 'resources/migrations') diff --git a/resources/migrations/01.sql b/resources/migrations/01.sql new file mode 100644 index 0000000..1acccdd --- /dev/null +++ b/resources/migrations/01.sql @@ -0,0 +1,6 @@ +CREATE TABLE IF NOT EXISTS "books" ( + "id" TEXT PRIMARY KEY, + "created_at" TEXT NOT NULL DEFAULT (datetime()), + "updated_at" TEXT NOT NULL DEFAULT (datetime()), + "data" BLOB NOT NULL +) STRICT; -- cgit v1.2.3