IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 4, 2014, 3:42:24 PM (12 years ago)
Author:
heather
Message:

current ipptopsps before we discovered we need skinny objects

File:
1 edited

Legend:

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

    r36706 r36815  
    278278
    279279-- Dump completed on 2012-04-10  6:00:59
     280
     281
     282DROP TABLE IF EXISTS `dvodb`;
     283SET @saved_cs_client     = @@character_set_client;
     284SET character_set_client = utf8;
     285CREATE TABLE `dvodb` (
     286  `dvo_db` varchar(30) default NULL,
     287  `batch_type` varchar(10) default NULL,
     288  `stage_id` bigint(20) unsigned default NULL,
     289  `ra_center` float default NULL,
     290  `dec_center` float default NULL,
     291  `uniq_key` varchar(30) default NULL,
     292  UNIQUE KEY `uniq_key` (`uniq_key`)
     293) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     294SET character_set_client = @saved_cs_client;
     295
     296
Note: See TracChangeset for help on using the changeset viewer.