-------------------------------------------------------------------------------- -- 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;