Geeksbot/pkg/database/migrations/000006_add_ftp_credentials.down.sql
Dustin Pianalto 83c41e2788
Some checks failed
CI / build (push) Has been cancelled
Add ftp credentials to db schema
2021-02-22 23:10:57 -09:00

7 lines
137 B
PL/PgSQL

BEGIN;
ALTER TABLE servers
DROP COLUMN ftp_port,
DROP COLUMN ftp_username,
DROP COLUMN ftp_password;
COMMIT;