IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 27, 2019, 11:39:38 AM (7 years ago)
Author:
eugene
Message:

merge changes from trunk (mostly Ohana & ippMonitor improvements, some work on ippTools)

Location:
branches/eam_branches/ipp-20191011
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20191011

  • branches/eam_branches/ipp-20191011/ippMonitor

  • branches/eam_branches/ipp-20191011/ippMonitor/czartool/czarDbSchema.sql

    r40055 r41170  
    404404
    405405--
     406-- Table structure for table `science_labels` (from current_labels)
     407--
     408
     409DROP TABLE IF EXISTS `science_labels`;
     410SET @saved_cs_client     = @@character_set_client;
     411SET character_set_client = utf8;
     412CREATE 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;
     419SET character_set_client = @saved_cs_client;
     420
     421--
     422-- Table structure for table `science_nightlyscience` (from nightlyscience)
     423--
     424
     425DROP TABLE IF EXISTS `science_nightlyscience`;
     426SET @saved_cs_client     = @@character_set_client;
     427SET character_set_client = utf8;
     428CREATE 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;
     433SET character_set_client = @saved_cs_client;
     434
     435--
     436-- Table structure for table `science_reverts` (from reverts)
     437--
     438
     439DROP TABLE IF EXISTS `science_reverts`;
     440SET @saved_cs_client     = @@character_set_client;
     441SET character_set_client = utf8;
     442CREATE 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;
     447SET character_set_client = @saved_cs_client;
     448
     449--
     450-- Table structure for table `science_server_dates` (from server_dates)
     451--
     452
     453DROP TABLE IF EXISTS `science_server_dates`;
     454SET @saved_cs_client     = @@character_set_client;
     455SET character_set_client = utf8;
     456CREATE 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;
     462SET character_set_client = @saved_cs_client;
     463
     464--
     465-- Table structure for table `science_servers` (from servers)
     466--
     467
     468DROP TABLE IF EXISTS `science_servers`;
     469SET @saved_cs_client     = @@character_set_client;
     470SET character_set_client = utf8;
     471CREATE 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;
     478SET character_set_client = @saved_cs_client;
     479
     480--
     481-- Table structure for table `live_servers` (from servers)
     482--
     483
     484DROP TABLE IF EXISTS `live_servers`;
     485SET @saved_cs_client     = @@character_set_client;
     486SET character_set_client = utf8;
     487CREATE 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;
     494SET character_set_client = @saved_cs_client;
     495
     496--
    406497-- Table structure for table `server_dates`
    407498--
Note: See TracChangeset for help on using the changeset viewer.