lemmy/migrations/2021-11-23-153753_add_invite_only_columns/down.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

17 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;