IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 28, 2015, 8:28:32 PM (11 years ago)
Author:
eugene
Message:

merge changes from trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150112/ippToPsps/config/ippToPspsDbSchema.sql

    r37739 r38052  
    199199  `region` varchar(50) default NULL,
    200200  KEY `batch_id` (`batch_id`),
     201  CONSTRAINT `forcedobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`)
     202) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     203SET character_set_client = @saved_cs_client;
     204
     205--
     206-- Table structure for table `diffobject`
     207--
     208
     209DROP TABLE IF EXISTS `diffobject`;
     210SET @saved_cs_client     = @@character_set_client;
     211SET character_set_client = utf8;
     212CREATE TABLE `diffobject` (
     213  `batch_id` bigint(20) unsigned NOT NULL,
     214  `region` varchar(50) default NULL,
     215  KEY `batch_id` (`batch_id`),
    201216  CONSTRAINT `diffobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`)
    202217) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     
    204219
    205220--
    206 -- Table structure for table `diffobject`
    207 --
    208 
    209 DROP TABLE IF EXISTS `diffobject`;
    210 SET @saved_cs_client     = @@character_set_client;
    211 SET character_set_client = utf8;
    212 CREATE TABLE `diffobject` (
    213   `batch_id` bigint(20) unsigned NOT NULL,
    214   `region` varchar(50) default NULL,
    215   KEY `batch_id` (`batch_id`),
    216   CONSTRAINT `diffobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`)
    217 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    218 SET character_set_client = @saved_cs_client;
    219 
    220 --
    221221-- Table structure for table `pending`
    222222--
     223-- i had to do this to get uniqueness prob sorted out:
     224
     225--show index from pending;
     226--alter table pending drop index `name`;
     227--where name was broken becaue it only indedxed stage idg
    223228
    224229DROP TABLE IF EXISTS `pending`;
Note: See TracChangeset for help on using the changeset viewer.