mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Db changes for tgraph_source field order - #1382
This commit is contained in:
parent
934ed84fd5
commit
7e6adb5d40
@ -1411,6 +1411,7 @@ ALTER TABLE tserver_export MODIFY `name` varchar(600) BINARY NOT NULL default ''
|
|||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
|
|
||||||
ALTER TABLE tgraph_source ADD COLUMN id_server int(11) UNSIGNED NOT NULL default 0;
|
ALTER TABLE tgraph_source ADD COLUMN id_server int(11) UNSIGNED NOT NULL default 0;
|
||||||
|
ALTER TABLE tgraph_source ADD COLUMN `order` int(10) NOT NULL default 0;
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Table `tserver_export_data`
|
-- Table `tserver_export_data`
|
||||||
|
@ -1201,6 +1201,7 @@ CREATE TABLE IF NOT EXISTS `tgraph_source` (
|
|||||||
`id_agent_module` int(11) NOT NULL default 0,
|
`id_agent_module` int(11) NOT NULL default 0,
|
||||||
`weight` float(8,3) NOT NULL DEFAULT 0,
|
`weight` float(8,3) NOT NULL DEFAULT 0,
|
||||||
`label` varchar(150) DEFAULT '',
|
`label` varchar(150) DEFAULT '',
|
||||||
|
`order` int(10) DEFAULT 0,
|
||||||
PRIMARY KEY(`id_gs`)
|
PRIMARY KEY(`id_gs`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user