This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
lemmy/server/migrations/2019-02-27-170003_create_community/up.sql
2019-02-27 22:02:55 -08:00

5 lines
126 B
SQL

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