sum7
/
warehost
Archived
1
0
Fork 0
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
Martin Geno d8be895eb0
[BUGFIX] [host] edit web and mail
6 years ago
cmd [BUGFIX] ftp join and 6 years ago
config refactorying to easyier binding 7 years ago
lib [BUGFIX] [host] edit web and mail 6 years ago
modul [BUGFIX] [host] edit web and mail 6 years ago
system [TASK] [web] add blog 6 years ago
test fix context 6 years ago
.gitignore remove api test 7 years ago
.gitlab-ci.yml Update .gitlab-ci.yml 7 years ago
CHANGELOG Add changelog 7 years ago
CONTRIBUTING.md Update CONTRIBUTING.md 7 years ago
README.md fix error on empty password + mail api forward 6 years ago
build.sh add ./build.sh 6 years ago

README.md

TODO on change

ALTER TABLE login ALTER createat TYPE timestamptz;
ALTER TABLE login ALTER lastloginat TYPE timestamptz;


BEGIN;
insert into host_web_httpaccess (web,login) (select id,unnest(httpaccess) from host_web);
ALTER TABLE host_web DROP httpaccess;

insert into host_web_ftpaccess (web,login) (select id,unnest(ftp) from host_web);
ALTER TABLE host_web DROP ftp;

insert into host_mail_forward (mail,"to") (select id,unnest(forward) from host_mail);
ALTER TABLE host_mail DROP forward;
COMMIT;