summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-03-16 15:16:10 +0100
committerTor Andersson <tor@ccxvii.net>2024-03-16 15:16:14 +0100
commit9205e584db652b8fbeab22872abd2490ead57b03 (patch)
tree2508af1042928112d76abcc10aa8a29331ec3e80
parentd288108a7d294389a21a3df9d3f7fbcc5697ffac (diff)
downloadserver-9205e584db652b8fbeab22872abd2490ead57b03.tar.gz
Fix typo in schema.
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 049f6a8..9fe8a76 100644
--- a/schema.sql
+++ b/schema.sql
@@ -182,7 +182,7 @@ create table if not exists ratings (
user_id integer,
rating integer,
count integer,
- last timestamp,
+ last datetime,
primary key (title_id, user_id)
) without rowid;