mirror of
https://github.com/LemmyNet/lemmy
synced 2025-01-09 19:48:43 +00:00
5 lines
126 B
SQL
5 lines
126 B
SQL
create table community (
|
|
id serial primary key,
|
|
name varchar(20) not null,
|
|
starttime timestamp not null default now()
|
|
)
|