mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
6 lines
126 B
SQL
6 lines
126 B
SQL
create table community (
|
|
id serial primary key,
|
|
name varchar(20) not null,
|
|
starttime timestamp not null default now()
|
|
)
|