IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39970


Ignore:
Timestamp:
Feb 2, 2017, 11:12:57 AM (9 years ago)
Author:
heather
Message:

gaia schema changes, forgot to check in

Location:
trunk/ippToPsps/config
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/config/changes.txt

    r39786 r39970  
    1818alter table skychunk change column queue_FO queue_FO tinyint(1) default 0;
    1919alter table skychunk change column queue_FG queue_FG tinyint(1) default 0;
     20
     21
     22--
     23-- Table structure for table `forcedgalobject`
     24--
     25DROP TABLE IF EXISTS `forcedgalobject`;
     26SET @saved_cs_client     = @@character_set_client;
     27SET character_set_client = utf8;
     28CREATE TABLE `forcedgalobject` (
     29  `batch_id` bigint(20) unsigned NOT NULL,
     30  `region` varchar(50) default NULL,
     31  KEY `batch_id` (`batch_id`),
     32  CONSTRAINT `forcedgalobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`)
     33) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     34SET character_set_client = @saved_cs_client;
     35
     36
     37
     38--
     39-- Table structure for table `gaiaobject`
     40--
     41DROP TABLE IF EXISTS `gaiaobject`;
     42SET @saved_cs_client     = @@character_set_client;
     43SET character_set_client = utf8;
     44CREATE TABLE `gaiaobject` (
     45  `batch_id` bigint(20) unsigned NOT NULL,
     46  `region` varchar(50) default NULL,
     47  KEY `batch_id` (`batch_id`),
     48  CONSTRAINT `gaiaobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`)
     49) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     50SET character_set_client = @saved_cs_client;
     51
     52
  • trunk/ippToPsps/config/render.pl

    r38936 r39970  
    22
    33
    4 my @tables = ('IN','P2','OB','ST','DF','DO','FW','FG','FO');
     4my @tables = ('IN','P2','OB','ST','DF','DO','FW','FG','FO','GO');
    55# my @tables = ('P2');
    66
  • trunk/ippToPsps/config/settings.xml

    r39786 r39970  
    819819  <!-- ippToPsps Db section (REAL version) -->
    820820  <ipptopspsdatabase>
    821     <name>ipptopsps3</name>
     821    <name>ipptopsps2</name>
    822822    <host>ipp006</host>
    823823    <user>dvo</user>
Note: See TracChangeset for help on using the changeset viewer.