aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-02 21:51:17 -0800
committerFuwn <[email protected]>2024-01-02 21:51:17 -0800
commit468b47247f4b3fce7b938ac3a6da7c3968c3698a (patch)
tree2b399f011aa6edd65c9f73e6649f200f26c817be
parentfeat(badges): categories (diff)
downloaddue.moe-468b47247f4b3fce7b938ac3a6da7c3968c3698a.tar.xz
due.moe-468b47247f4b3fce7b938ac3a6da7c3968c3698a.zip
fix(sql): update database schema
-rw-r--r--due_moe_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/due_moe_schema.sql b/due_moe_schema.sql
index ead8dc5f..0dae4479 100644
--- a/due_moe_schema.sql
+++ b/due_moe_schema.sql
@@ -4,5 +4,6 @@ CREATE TABLE user_badges (
post text(1000) not null,
image text(1000) not null,
description text(1000) default null,
+ category text(1000) default null,
time timestamp default current_timestamp
);