Changeset 41001
- Timestamp:
- Oct 29, 2019, 3:33:36 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ccl_branches/ipp-20190806/ippMonitor/czartool/czarDbSchema.sql
r40055 r41001 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 -- 406 481 -- Table structure for table `server_dates` 407 482 --
Note:
See TracChangeset
for help on using the changeset viewer.
