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

6 lines
126 B
MySQL
Raw Normal View History

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