]> Untitled Git - lemmy.git/blob - migrations/2022-11-13-181529_create_taglines/up.sql
Revert "Attempt to fix CI building wrong commits (#3830)"
[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 );
8