mirror of https://github.com/LemmyNet/lemmy.git
24 lines
675 B
MySQL
24 lines
675 B
MySQL
|
create table user_ (
|
||
|
id serial primary key,
|
||
|
name varchar(20) not null,
|
||
|
fedi_name varchar(40) not null,
|
||
|
preferred_username varchar(20),
|
||
|
password_encrypted text not null,
|
||
|
email text unique,
|
||
|
icon bytea,
|
||
|
admin boolean default false not null,
|
||
|
banned boolean default false not null,
|
||
|
published timestamp not null default now(),
|
||
|
updated timestamp,
|
||
|
unique(name, fedi_name)
|
||
|
);
|
||
|
|
||
|
create table user_ban (
|
||
|
id serial primary key,
|
||
|
user_id int references user_ on update cascade on delete cascade not null,
|
||
|
published timestamp not null default now(),
|
||
|
unique (user_id)
|
||
|
);
|
||
|
|
||
|
insert into user_ (name, fedi_name, password_encrypted) values ('admin', 'TBD', 'TBD');
|