mirror of
https://git.femboyfinancial.jp/james/FemScoreboard.git
synced 2024-11-25 19:42:00 -08:00
21 lines
639 B
MySQL
21 lines
639 B
MySQL
|
--------------------------------------------------------------------------------
|
||
|
-- 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;
|