pandorafms/pandora_console/extras/mr/1.sql

17 lines
648 B
MySQL
Raw Normal View History

2017-04-18 11:41:51 +02:00
START TRANSACTION;
2017-04-18 11:39:46 +02:00
ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0;
2017-04-20 16:18:37 +02:00
CREATE TABLE IF NOT EXISTS `treset_pass` (
`id` bigint(10) unsigned NOT NULL auto_increment,
`id_user` varchar(100) NOT NULL default '',
`cod_hash` varchar(100) NOT NULL default '',
`reset_time` int(10) unsigned NOT NULL default 0,
PRIMARY KEY (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
2017-04-25 16:26:45 +02:00
UPDATE tgis_map_connection SET conection_data = '{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}' where id_tmap_connection = 1;
2017-05-10 15:21:42 +02:00
ALTER TABLE tpolicy_modules MODIFY post_process double(24,15) default 0;
2017-04-18 11:41:51 +02:00
COMMIT;