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.
41 lines
976 B
SQL
41 lines
976 B
SQL
-- create enum for registration modes
|
|
CREATE TYPE registration_mode_enum AS enum (
|
|
'closed',
|
|
'require_application',
|
|
'open'
|
|
);
|
|
|
|
-- use this enum for registration mode setting
|
|
ALTER TABLE local_site
|
|
ADD COLUMN registration_mode registration_mode_enum NOT NULL DEFAULT 'require_application';
|
|
|
|
-- generate registration mode value from previous settings
|
|
WITH subquery AS (
|
|
SELECT
|
|
open_registration,
|
|
require_application,
|
|
CASE WHEN open_registration = FALSE THEN
|
|
'closed'::registration_mode_enum
|
|
WHEN open_registration = TRUE
|
|
AND require_application = TRUE THEN
|
|
'require_application'
|
|
ELSE
|
|
'open'
|
|
END
|
|
FROM
|
|
local_site)
|
|
UPDATE
|
|
local_site
|
|
SET
|
|
registration_mode = subquery.case
|
|
FROM
|
|
subquery;
|
|
|
|
-- drop old registration settings
|
|
ALTER TABLE local_site
|
|
DROP COLUMN open_registration;
|
|
|
|
ALTER TABLE local_site
|
|
DROP COLUMN require_application;
|
|
|