mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-05-24 09:10:49 +00:00
Move to SQLite (#13)
This commit is contained in:
parent
750ddb7762
commit
1799b70bc1
50 changed files with 2122 additions and 394 deletions
12
youmubot-db-sql/migrations/20210329111010_osu_users.sql
Normal file
12
youmubot-db-sql/migrations/20210329111010_osu_users.sql
Normal file
|
@ -0,0 +1,12 @@
|
|||
-- Add migration script here
|
||||
|
||||
CREATE TABLE osu_users (
|
||||
user_id BIGINT NOT NULL PRIMARY KEY,
|
||||
id BIGINT NOT NULL UNIQUE,
|
||||
last_update DATETIME NOT NULL,
|
||||
pp_std REAL NULL,
|
||||
pp_taiko REAL NULL,
|
||||
pp_mania REAL NULL,
|
||||
pp_catch REAL NULL,
|
||||
failures INT NOT NULL DEFAULT 0
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue