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