diff options
| author | Fuwn <[email protected]> | 2024-01-02 21:51:17 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-02 21:51:17 -0800 |
| commit | 468b47247f4b3fce7b938ac3a6da7c3968c3698a (patch) | |
| tree | 2b399f011aa6edd65c9f73e6649f200f26c817be | |
| parent | feat(badges): categories (diff) | |
| download | due.moe-468b47247f4b3fce7b938ac3a6da7c3968c3698a.tar.xz due.moe-468b47247f4b3fce7b938ac3a6da7c3968c3698a.zip | |
fix(sql): update database schema
| -rw-r--r-- | due_moe_schema.sql | 1 |
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 ); |