]> Untitled Git - lemmy.git/blob - migrations/2022-11-13-181529_create_taglines/up.sql
stop requiring superuser to run migrations (#3002)
[lemmy.git] / migrations / 2022-11-13-181529_create_taglines / up.sql
1 create table tagline (
2   id serial primary key,
3   local_site_id int references local_site on update cascade on delete cascade not null,
4   content text not null,
5   published timestamp without time zone default now() not null,
6   updated timestamp without time zone
7 );