- Timestamp:
- Mar 28, 2015, 8:28:32 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20150112/ippToPsps/config/ippToPspsDbSchema.sql
r37739 r38052 199 199 `region` varchar(50) default NULL, 200 200 KEY `batch_id` (`batch_id`), 201 CONSTRAINT `forcedobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`) 202 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 203 SET character_set_client = @saved_cs_client; 204 205 -- 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`), 201 216 CONSTRAINT `diffobject_fk_1` FOREIGN KEY (`batch_id`) REFERENCES `batch` (`batch_id`) 202 217 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; … … 204 219 205 220 -- 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 --221 221 -- Table structure for table `pending` 222 222 -- 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 223 228 224 229 DROP TABLE IF EXISTS `pending`;
Note:
See TracChangeset
for help on using the changeset viewer.
