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/2021-03-31-105915_add_bot_a.../up.sql

23 lines
448 B
SQL

-- Add the bot_account column to the person table
DROP VIEW person_alias_1, person_alias_2;
ALTER TABLE person
ADD COLUMN bot_account boolean NOT NULL DEFAULT FALSE;
CREATE VIEW person_alias_1 AS
SELECT
*
FROM
person;
CREATE VIEW person_alias_2 AS
SELECT
*
FROM
person;
-- Add the show_bot_accounts to the local user table as a setting
ALTER TABLE local_user
ADD COLUMN show_bot_accounts boolean NOT NULL DEFAULT TRUE;