mirror of
https://git.femboyfinancial.jp/james/FemScoreboard.git
synced 2024-11-25 11:41:59 -08:00
21 lines
639 B
SQL
21 lines
639 B
SQL
--------------------------------------------------------------------------------
|
|
-- Up
|
|
--------------------------------------------------------------------------------
|
|
|
|
create table users
|
|
(
|
|
id text
|
|
constraint users_pk
|
|
primary key,
|
|
username text not null,
|
|
reaction_1_total integer not null default 0,
|
|
reaction_2_total integer not null default 0,
|
|
reaction_3_total integer not null default 0
|
|
);
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Down
|
|
--------------------------------------------------------------------------------
|
|
|
|
DROP TABLE users;
|