mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-04-19 16:58:55 +00:00
12 lines
350 B
SQL
12 lines
350 B
SQL
-- 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
|
|
);
|