sum7/warehost
sum7
/
warehost
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Martin Geno d8be895eb0
[BUGFIX] [host] edit web and mail
2017-10-04 12:32:07 +02:00
cmd [BUGFIX] ftp join and 2017-05-05 23:42:46 +02:00
config refactorying to easyier binding 2016-10-11 20:16:24 +02:00
lib [BUGFIX] [host] edit web and mail 2017-10-04 12:32:07 +02:00
modul [BUGFIX] [host] edit web and mail 2017-10-04 12:32:07 +02:00
system [TASK] [web] add blog 2017-03-22 17:16:09 +01:00
test fix context 2016-12-19 12:24:18 +01:00
.gitignore remove api test 2016-09-22 18:07:12 +02:00
.gitlab-ci.yml Update .gitlab-ci.yml 2016-09-22 15:06:42 +00:00
CHANGELOG Add changelog 2016-09-22 14:41:44 +00:00
CONTRIBUTING.md Update CONTRIBUTING.md 2016-09-22 14:44:38 +00:00
README.md fix error on empty password + mail api forward 2016-11-17 23:15:30 +01:00
build.sh add ./build.sh 2016-12-13 16:18:25 +01:00

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;