2019-02-28 06:02:55 +00:00
|
|
|
create table user_ (
|
|
|
|
id serial primary key,
|
2019-03-23 01:42:57 +00:00
|
|
|
name varchar(20) not null unique,
|
2019-03-04 16:39:07 +00:00
|
|
|
preferred_username varchar(20),
|
|
|
|
password_encrypted text not null,
|
2019-03-23 01:42:57 +00:00
|
|
|
email text unique,
|
2019-02-28 06:02:55 +00:00
|
|
|
icon bytea,
|
2019-03-05 03:52:09 +00:00
|
|
|
published timestamp not null default now(),
|
|
|
|
updated timestamp
|
|
|
|
)
|