create table users(
id bigserial
constraint users_pk
primary key,
name text not null,
birthday date not null,
email text not null,
hashed_password text not null
);
create unique index
users_email_uindex on users (email);
alter table users
add line_id text;
alter table users
add line_token text;
create unique index
users_line_token_uindex
on users (line_token);
create unique index
users_line_id_uindex
on users (line_id);