From 1a80b5b27d906f5ed0b41468caf2c898e9a092a9 Mon Sep 17 00:00:00 2001 From: sunryuan Date: Wed, 28 Aug 2013 12:01:36 +0800 Subject: [PATCH] add create table sql --- script/Cat.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/script/Cat.sql b/script/Cat.sql index ba9de717c..12e004e42 100644 --- a/script/Cat.sql +++ b/script/Cat.sql @@ -349,6 +349,18 @@ CREATE TABLE `topologyGraph` ( KEY `period` (`period`) ) ENGINE=InnoDB AUTO_INCREMENT=21912 DEFAULT CHARSET=utf8 COMMENT='用于存储历史的拓扑图曲线'; +CREATE TABLE `baseline` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `report_name` varchar(100) DEFAULT NULL, + `index_key` varchar(100) DEFAULT NULL, + `report_period` datetime DEFAULT NULL, + `data` blob, + `creation_date` datetime DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `ix_indexkey_reportperiod` (`index_key`,`report_period`), + KEY `ix_reportperiod` (`report_period`) +) ENGINE=InnoDB AUTO_INCREMENT=5062 DEFAULT CHARSET=utf8 + -- GitLab