You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2022-11-13-181529_create_ta.../up.sql

9 lines
277 B
SQL

CREATE TABLE tagline (
id serial PRIMARY KEY,
local_site_id int REFERENCES local_site ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
content text NOT NULL,
published timestamp without time zone DEFAULT now() NOT NULL,
updated timestamp without time zone
);