From f7f81e0bdaab7045cbf397169d06170000045d4f Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sat, 5 Aug 2023 14:52:41 -0500 Subject: [PATCH] fixing initial migration --- src/rust/migrations/2023-04-04-164359_library-db/up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rust/migrations/2023-04-04-164359_library-db/up.sql b/src/rust/migrations/2023-04-04-164359_library-db/up.sql index 18176e1..018dc3e 100644 --- a/src/rust/migrations/2023-04-04-164359_library-db/up.sql +++ b/src/rust/migrations/2023-04-04-164359_library-db/up.sql @@ -38,5 +38,6 @@ CREATE TABLE IF NOT EXISTS 'presentations' ( 'title' TEXT NOT NULL, 'filePath' TEXT NOT NULL, pageCount INTEGER DEFAULT 1, +html BOOLEAN NOT NULL DEFAULT 0, PRIMARY KEY(id) );