From afd184f466e2794bdda68fdbc43b3bcee850ddcc Mon Sep 17 00:00:00 2001 From: Enrique Camargo Date: Thu, 31 Aug 2017 17:58:34 +0200 Subject: [PATCH] Update 6.sql --- pandora_console/extras/mr/6.sql | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pandora_console/extras/mr/6.sql b/pandora_console/extras/mr/6.sql index 57b6be6d89..52e4ce6e9e 100644 --- a/pandora_console/extras/mr/6.sql +++ b/pandora_console/extras/mr/6.sql @@ -2,12 +2,15 @@ START TRANSACTION; ALTER TABLE tagente MODIFY COLUMN `cascade_protection_module` int(10) unsigned NOT NULL default '0'; -COMMIT; - CREATE TABLE IF NOT EXISTS treset_pass_history ( - id int(10) unsigned NOT NULL auto_increment, - id_user varchar(60) NOT NULL, - reset_moment datetime NOT NULL, - success tinyint(1) NOT NULL, - PRIMARY KEY (id) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; \ No newline at end of file + id int(10) unsigned NOT NULL auto_increment, + id_user varchar(60) NOT NULL, + reset_moment datetime NOT NULL, + success tinyint(1) NOT NULL, + PRIMARY KEY (id)) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +ALTER TABLE tserver ADD COLUMN exec_proxy tinyint(1) UNSIGNED NOT NULL default 0; + +ALTER TABLE tevent_response ADD COLUMN server_to_exec int(10) unsigned NOT NULL DEFAULT 0; + +COMMIT; \ No newline at end of file