From 33de893adc27747be7d6296c0563fc4f0968bc7a Mon Sep 17 00:00:00 2001 From: Akis Date: Sun, 8 Jan 2023 20:26:50 +0200 Subject: [PATCH] fix --- src/lib/server/db.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/server/db.ts b/src/lib/server/db.ts index d5a4e23..a4d4be0 100644 --- a/src/lib/server/db.ts +++ b/src/lib/server/db.ts @@ -25,6 +25,7 @@ if (!building) { table.string("author").notNullable(); table.string("link").nullable(); table.bigInteger("created").notNullable(); + table.timestamps(); }); } } \ No newline at end of file