IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 3, 2014, 2:41:20 PM (12 years ago)
Author:
heather
Message:

added diff / ff stages to addstar, partially to ipptopsps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/config/ippToPspsDbSchema.sql

    r37246 r37551  
    189189SET character_set_client = @saved_cs_client;
    190190--
     191-- Table structure for table `forcedobject`
     192--
     193
     194DROP TABLE IF EXISTS `forcedobject`;
     195SET @saved_cs_client     = @@character_set_client;
     196SET character_set_client = utf8;
     197CREATE TABLE `forcedobject` (
     198  `batch_id` bigint(20) unsigned NOT NULL,
     199  `region` varchar(50) default NULL,
     200  KEY `batch_id` (`batch_id`),
     201  CONSTRAINT `diffobject_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--
    191206-- Table structure for table `diffobject`
    192207--
Note: See TracChangeset for help on using the changeset viewer.