mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
be1389420b
* 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.
23 lines
448 B
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;
|
|
|