lemmy/migrations/2021-03-31-105915_add_bot_account/up.sql
Dessalines be1389420b
Adding SQL format checking via pg_format / pgFormatter (#3740)
* SQL format checking, 1.

* SQL format checking, 2.

* SQL format checking, 3.

* SQL format checking, 4.

* SQL format checking, 5.

* Running pg_format

* Getting rid of comment.

* Upping pg_format version.

* Using git ls-files for sql format check.

* Fixing sql lints.

* Addressing PR comments.
2023-08-02 12:44:51 -04:00

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;