Update the database schema unpublish_event (servers) & PublishWithoutEmail (servers)

pull/1809/head
devnull- 2017-01-05 16:40:40 +01:00
parent c4d66e03e9
commit d500f8682d
2 changed files with 4 additions and 0 deletions

View File

@ -442,6 +442,8 @@ CREATE TABLE IF NOT EXISTS `servers` (
`lastpushedid` int(11) DEFAULT NULL,
`organization` varchar(10) COLLATE utf8_bin DEFAULT NULL,
`remote_org_id` int(11) NOT NULL,
`publish_without_email` tinyint(1) NOT NULL DEFAULT 0,
`unpublish_event` tinyint(1) NOT NULL DEFAULT 0,
`self_signed` tinyint(1) NOT NULL,
`pull_rules` text COLLATE utf8_bin NOT NULL,
`push_rules` text COLLATE utf8_bin NOT NULL,

View File

@ -361,6 +361,8 @@ CREATE TABLE IF NOT EXISTS servers (
lastpushedid bigint DEFAULT NULL,
organization varchar(10) DEFAULT NULL,
remote_org_id bigint NOT NULL,
publish_without_email smallint NOT NULL DEFAULT 0,
unpublish_event smallint NOT NULL DEFAULT 0,
self_signed smallint NOT NULL,
pull_rules text NOT NULL,
push_rules text NOT NULL,