lemmy/server/migrations/2019-02-27-170003_create_community/up.sql
2019-02-27 22:02:55 -08:00

6 lines
126 B
SQL

create table community (
id serial primary key,
name varchar(20) not null,
starttime timestamp not null default now()
)