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/2020-04-03-194936_add_activ.../up.sql

12 lines
660 B
SQL

-- Add federation columns to post, comment
ALTER TABLE post
-- TODO uniqueness constraints should be added on these 3 columns later
ADD COLUMN ap_id character varying(255) NOT NULL DEFAULT 'http://fake.com', -- This needs to be checked and updated in code, building from the site url if local
ADD COLUMN local boolean NOT NULL DEFAULT TRUE;
ALTER TABLE comment
-- TODO uniqueness constraints should be added on these 3 columns later
ADD COLUMN ap_id character varying(255) NOT NULL DEFAULT 'http://fake.com', -- This needs to be checked and updated in code, building from the site url if local
ADD COLUMN local boolean NOT NULL DEFAULT TRUE;