mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
code style
This commit is contained in:
parent
53149712f5
commit
460052b25f
@ -1893,9 +1893,9 @@ CREATE TABLE IF NOT EXISTS `tgis_data_status` (
|
||||
CREATE TABLE IF NOT EXISTS `tgis_map` (
|
||||
`id_tgis_map` INT NOT NULL AUTO_INCREMENT COMMENT 'table identifier' ,
|
||||
`map_name` VARCHAR(63) NOT NULL COMMENT 'Name of the map' ,
|
||||
`initial_longitude` DOUBLE NULL COMMENT 'longitude of the center of the map when it\'s loaded' ,
|
||||
`initial_latitude` DOUBLE NULL COMMENT 'latitude of the center of the map when it\'s loaded' ,
|
||||
`initial_altitude` DOUBLE NULL COMMENT 'altitude of the center of the map when it\'s loaded' ,
|
||||
`initial_longitude` DOUBLE NULL COMMENT "longitude of the center of the map when it\'s loaded",
|
||||
`initial_latitude` DOUBLE NULL COMMENT "latitude of the center of the map when it\'s loaded",
|
||||
`initial_altitude` DOUBLE NULL COMMENT "altitude of the center of the map when it\'s loaded",
|
||||
`zoom_level` TINYINT NULL DEFAULT 1 COMMENT 'Zoom level to show when the map is loaded.',
|
||||
`map_background` VARCHAR(127) NULL COMMENT 'path on the server to the background image of the map',
|
||||
`default_longitude` DOUBLE NULL COMMENT 'DEFAULT longitude for the agents placed on the map',
|
||||
@ -1920,9 +1920,9 @@ CREATE TABLE IF NOT EXISTS `tgis_map_connection` (
|
||||
`default_longitude` DOUBLE NULL COMMENT 'DEFAULT longitude for the agents placed on the map',
|
||||
`default_latitude` DOUBLE NULL COMMENT 'DEFAULT latitude for the agents placed on the map',
|
||||
`default_altitude` DOUBLE NULL COMMENT 'DEFAULT altitude for the agents placed on the map',
|
||||
`initial_longitude` DOUBLE NULL COMMENT 'longitude of the center of the map when it\'s loaded' ,
|
||||
`initial_latitude` DOUBLE NULL COMMENT 'latitude of the center of the map when it\'s loaded' ,
|
||||
`initial_altitude` DOUBLE NULL COMMENT 'altitude of the center of the map when it\'s loaded' ,
|
||||
`initial_longitude` DOUBLE NULL COMMENT "longitude of the center of the map when it\'s loaded",
|
||||
`initial_latitude` DOUBLE NULL COMMENT "latitude of the center of the map when it\'s loaded",
|
||||
`initial_altitude` DOUBLE NULL COMMENT "altitude of the center of the map when it\'s loaded",
|
||||
`group_id` INT NOT NULL DEFAULT 0 COMMENT 'Group that owns the map',
|
||||
PRIMARY KEY (`id_tmap_connection`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4 COMMENT='Table to store the map connection information';
|
||||
@ -1957,7 +1957,7 @@ CREATE TABLE IF NOT EXISTS `tgis_map_layer` (
|
||||
`id_tmap_layer` INT NOT NULL AUTO_INCREMENT COMMENT 'table id',
|
||||
`layer_name` VARCHAR(45) NOT NULL COMMENT 'Name of the layer ',
|
||||
`view_layer` TINYINT NOT NULL DEFAULT TRUE COMMENT 'True if the layer must be shown',
|
||||
`layer_stack_order` TINYINT NULL DEFAULT 0 COMMENT 'Number of order of the layer in the layer stack, bigger means upper on the stack.\n' ,
|
||||
`layer_stack_order` TINYINT NULL DEFAULT 0 COMMENT 'Number of order of the layer in the layer stack, bigger means upper on the stack.',
|
||||
`tgis_map_id_tgis_map` INT NOT NULL COMMENT 'reference to the map containing the layer',
|
||||
`tgrupo_id_grupo` MEDIUMINT NOT NULL COMMENT 'reference to the group shown in the layer',
|
||||
PRIMARY KEY (`id_tmap_layer`),
|
||||
|
Loading…
x
Reference in New Issue
Block a user