- Timestamp:
- Nov 27, 2019, 11:39:38 AM (7 years ago)
- Location:
- branches/eam_branches/ipp-20191011
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
ippMonitor (modified) (1 prop)
-
ippMonitor/czartool/czarDbSchema.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20191011
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20191011/ippMonitor
- Property svn:mergeinfo changed
/trunk/ippMonitor (added) merged: 40936,41125-41126,41132-41135
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20191011/ippMonitor/czartool/czarDbSchema.sql
r40055 r41170 404 404 405 405 -- 406 -- Table structure for table `science_labels` (from current_labels) 407 -- 408 409 DROP TABLE IF EXISTS `science_labels`; 410 SET @saved_cs_client = @@character_set_client; 411 SET character_set_client = utf8; 412 CREATE TABLE `science_labels` ( 413 `server` varchar(128) default NULL, 414 `label` varchar(128) default NULL, 415 `telescope` varchar(128) NOT NULL, 416 `priority` int(11) NOT NULL default '0', 417 KEY `science_labels` (`server`,`label`, `telescope`) 418 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 419 SET character_set_client = @saved_cs_client; 420 421 -- 422 -- Table structure for table `science_nightlyscience` (from nightlyscience) 423 -- 424 425 DROP TABLE IF EXISTS `science_nightlyscience`; 426 SET @saved_cs_client = @@character_set_client; 427 SET character_set_client = utf8; 428 CREATE TABLE `science_nightlyscience` ( 429 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 430 `status` varchar(128) default 'NONE', 431 `telescope` varchar(128) NOT NULL 432 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 433 SET character_set_client = @saved_cs_client; 434 435 -- 436 -- Table structure for table `science_reverts` (from reverts) 437 -- 438 439 DROP TABLE IF EXISTS `science_reverts`; 440 SET @saved_cs_client = @@character_set_client; 441 SET character_set_client = utf8; 442 CREATE TABLE `science_reverts` ( 443 `stage` varchar(128) default NULL, 444 `telescope` varchar(128) NOT NULL, 445 `reverting` tinyint(4) default NULL 446 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 447 SET character_set_client = @saved_cs_client; 448 449 -- 450 -- Table structure for table `science_server_dates` (from server_dates) 451 -- 452 453 DROP TABLE IF EXISTS `science_server_dates`; 454 SET @saved_cs_client = @@character_set_client; 455 SET character_set_client = utf8; 456 CREATE TABLE `science_server_dates` ( 457 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 458 `server` varchar(64) default 'NONE', 459 `telescope` varchar(128) NOT NULL, 460 `date` varchar(64) default 'NONE' 461 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 462 SET character_set_client = @saved_cs_client; 463 464 -- 465 -- Table structure for table `science_servers` (from servers) 466 -- 467 468 DROP TABLE IF EXISTS `science_servers`; 469 SET @saved_cs_client = @@character_set_client; 470 SET character_set_client = utf8; 471 CREATE TABLE `science_servers` ( 472 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 473 `server` varchar(128) default NULL, 474 `telescope` varchar(128) NOT NULL, 475 `alive` tinyint(4) default NULL, 476 `running` tinyint(4) default NULL 477 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 478 SET character_set_client = @saved_cs_client; 479 480 -- 481 -- Table structure for table `live_servers` (from servers) 482 -- 483 484 DROP TABLE IF EXISTS `live_servers`; 485 SET @saved_cs_client = @@character_set_client; 486 SET character_set_client = utf8; 487 CREATE TABLE `live_servers` ( 488 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 489 `server` varchar(128) default NULL, 490 `telescope` varchar(128) NOT NULL, 491 `alive` tinyint(4) default NULL, 492 `running` tinyint(4) default NULL 493 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 494 SET character_set_client = @saved_cs_client; 495 496 -- 406 497 -- Table structure for table `server_dates` 407 498 --
Note:
See TracChangeset
for help on using the changeset viewer.
