You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
BEGIN;
|
|
ALTER TABLE servers
|
|
ADD COLUMN ftp_port int4,
|
|
ADD COLUMN ftp_username varchar(200),
|
|
ADD COLUMN ftp_password varchar(200);
|
|
COMMIT;
|