2019-02-28 06:02:55 +00:00
|
|
|
create table user_ (
|
|
|
|
id serial primary key,
|
|
|
|
name varchar(20) not null,
|
2019-03-04 16:39:07 +00:00
|
|
|
preferred_username varchar(20),
|
|
|
|
password_encrypted text not null,
|
|
|
|
email text,
|
2019-02-28 06:02:55 +00:00
|
|
|
icon bytea,
|
2019-03-04 16:39:07 +00:00
|
|
|
start_time timestamp not null default now()
|
|
|
|
);
|
|
|
|
|