diff options
| author | Fuwn <[email protected]> | 2023-11-06 18:41:44 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-06 18:41:44 -0800 |
| commit | 37f3d48c80771b25040e50879257bfc3a6dcdc6c (patch) | |
| tree | 4ce7f34edd0a8c7178f257328534279249b8eab7 | |
| parent | refactor(svelte): remove old config docs (diff) | |
| download | due.moe-37f3d48c80771b25040e50879257bfc3a6dcdc6c.tar.xz due.moe-37f3d48c80771b25040e50879257bfc3a6dcdc6c.zip | |
style(sql): align schema
| -rw-r--r-- | due_moe_schema.sql | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/due_moe_schema.sql b/due_moe_schema.sql index 9fdb098c..ead8dc5f 100644 --- a/due_moe_schema.sql +++ b/due_moe_schema.sql @@ -1,8 +1,8 @@ CREATE TABLE user_badges ( - id integer primary key, - user_id integer not null, - post text(1000) not null, - image text(1000) not null, + id integer primary key, + user_id integer not null, + post text(1000) not null, + image text(1000) not null, description text(1000) default null, - time timestamp default current_timestamp + time timestamp default current_timestamp ); |