mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +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.
16 lines
321 B
SQL
16 lines
321 B
SQL
-- Add columns to site table
|
|
ALTER TABLE site
|
|
DROP COLUMN require_application;
|
|
|
|
ALTER TABLE site
|
|
DROP COLUMN application_question;
|
|
|
|
ALTER TABLE site
|
|
DROP COLUMN private_instance;
|
|
|
|
-- Add pending to local_user
|
|
ALTER TABLE local_user
|
|
DROP COLUMN accepted_application;
|
|
|
|
DROP TABLE registration_application;
|
|
|