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_co.../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()
)