Changeset 39970
- Timestamp:
- Feb 2, 2017, 11:12:57 AM (9 years ago)
- Location:
- trunk/ippToPsps/config
- Files:
-
- 3 edited
-
changes.txt (modified) (1 diff)
-
render.pl (modified) (1 diff)
-
settings.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/config/changes.txt
r39786 r39970 18 18 alter table skychunk change column queue_FO queue_FO tinyint(1) default 0; 19 19 alter table skychunk change column queue_FG queue_FG tinyint(1) default 0; 20 21 22 -- 23 -- Table structure for table `forcedgalobject` 24 -- 25 DROP TABLE IF EXISTS `forcedgalobject`; 26 SET @saved_cs_client = @@character_set_client; 27 SET character_set_client = utf8; 28 CREATE 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; 34 SET character_set_client = @saved_cs_client; 35 36 37 38 -- 39 -- Table structure for table `gaiaobject` 40 -- 41 DROP TABLE IF EXISTS `gaiaobject`; 42 SET @saved_cs_client = @@character_set_client; 43 SET character_set_client = utf8; 44 CREATE 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; 50 SET character_set_client = @saved_cs_client; 51 52 -
trunk/ippToPsps/config/render.pl
r38936 r39970 2 2 3 3 4 my @tables = ('IN','P2','OB','ST','DF','DO','FW','FG','FO' );4 my @tables = ('IN','P2','OB','ST','DF','DO','FW','FG','FO','GO'); 5 5 # my @tables = ('P2'); 6 6 -
trunk/ippToPsps/config/settings.xml
r39786 r39970 819 819 <!-- ippToPsps Db section (REAL version) --> 820 820 <ipptopspsdatabase> 821 <name>ipptopsps 3</name>821 <name>ipptopsps2</name> 822 822 <host>ipp006</host> 823 823 <user>dvo</user>
Note:
See TracChangeset
for help on using the changeset viewer.
