Change tserver_export_data to varchar 600 - #1015

This commit is contained in:
enriquecd 2017-06-20 13:56:20 +02:00
parent 72202ae357
commit 7e383262bb
2 changed files with 7 additions and 1 deletions

View File

@ -1370,3 +1370,9 @@ CREATE TABLE IF NOT EXISTS `treset_pass` (
UPDATE tgis_map_connection SET conection_data = '{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}' where id_tmap_connection = 1;
ALTER TABLE tpolicy_modules MODIFY post_process double(24,15) default 0;
-- ---------------------------------------------------------------------
-- Table `tserver_export`
-- ---------------------------------------------------------------------
ALTER TABLE tserver_export MODIFY `name` varchar(600) BINARY NOT NULL default '';

View File

@ -1381,7 +1381,7 @@ CREATE TABLE IF NOT EXISTS `tmodule` (
-- ---------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `tserver_export` (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(100) NOT NULL default '',
`name` varchar(600) BINARY NOT NULL default '',
`preffix` varchar(100) NOT NULL default '',
`interval` int(5) unsigned NOT NULL default '300',
`ip_server` varchar(100) NOT NULL default '',