lemmy/server/migrations/2019-02-27-170003_create_co.../up.sql

6 lines
126 B
SQL

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