You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2021-11-23-153753_add_invit.../down.sql

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;