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 4a08e44182
[TASK] [web] switch model url binding
2017-03-10 23:18:12 +01:00
cmd [TASK] [web] switch model url binding 2017-03-10 23:18:12 +01:00
config refactorying to easyier binding 2016-10-11 20:16:24 +02:00
lib better logging and fix host 2016-12-22 23:16:41 +01:00
modul [TASK] [web] switch model url binding 2017-03-10 23:18:12 +01:00
system fix test 2016-12-19 12:52:43 +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;