Changeset 2670 for molgenis4animaldb
- Timestamp:
- 03/03/10 15:50:34 (2 years ago)
- File:
-
- 1 edited
-
molgenis4animaldb/AnimalDB.sql (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molgenis4animaldb/AnimalDB.sql
r2658 r2670 19 19 -- Database: `animaldb` 20 20 -- 21 22 23 24 -- -------------------------------------------------------- 25 26 -- 27 -- Table structure for table `ontology` 28 -- 29 30 CREATE TABLE IF NOT EXISTS `ontology` ( 31 `type` enum('Ontology','Feature') NOT NULL, 32 `id` int(11) NOT NULL AUTO_INCREMENT, 33 `name` varchar(255) NOT NULL, 34 `termtype` varchar(255) NOT NULL, 35 `definition` text, 36 `path` text, 37 `accession` varchar(255) DEFAULT NULL, 38 PRIMARY KEY (`id`), 39 UNIQUE KEY `name` (`name`), 40 UNIQUE KEY `accession` (`accession`) 41 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=28 ; 42 43 -- 44 -- Dumping data for table `ontology` 45 -- 46 47 INSERT INTO `ontology` (`type`, `id`, `name`, `termtype`, `definition`, `path`, `accession`) VALUES 48 ('Ontology', 1, 'Animal', 'meta', NULL, NULL, NULL), 49 ('Ontology', 2, 'Unit', 'meta', NULL, NULL, NULL), 50 ('Ontology', 3, 'Role', 'meta', NULL, NULL, NULL), 51 ('Ontology', 4, 'Location', 'meta', NULL, NULL, NULL), 52 ('Ontology', 5, 'Hamster', 'Animal', NULL, NULL, NULL), 53 ('Ontology', 6, 'Fish', 'Animal', NULL, NULL, NULL), 54 ('Ontology', 7, 'DegreesCelsius', 'Unit', NULL, NULL, NULL), 55 ('Ontology', 8, 'Researcher', 'Role', NULL, NULL, NULL), 56 ('Feature', 9, 'CranialTemperature', 'Feature', NULL, NULL, NULL), 57 ('Feature', 10, 'RectalTemperature', 'Feature', NULL, NULL, NULL), 58 ('Ontology', 11, 'Experiment', 'meta', NULL, NULL, NULL), 59 ('Ontology', 12, 'Student', 'Role', NULL, NULL, NULL), 60 ('Ontology', 13, 'Streetname', 'Unit', NULL, NULL, NULL), 61 ('Feature', 14, 'Street', 'Feature', NULL, NULL, NULL), 62 ('Ontology', 15, 'Cityname', 'Unit', NULL, NULL, NULL), 63 ('Feature', 16, 'City', 'Feature', NULL, NULL, NULL), 64 ('Ontology', 17, 'Number', 'Unit', NULL, NULL, NULL), 65 ('Ontology', 18, 'Description', 'Unit', NULL, NULL, NULL), 66 ('Feature', 19, 'CauseOfDeath', 'Feature', NULL, NULL, NULL), 67 ('Ontology', 20, 'DatabaseLink', 'meta', NULL, NULL, NULL), 68 ('Ontology', 21, 'ExperimentLink', 'DatabaseLink', NULL, NULL, NULL), 69 ('Feature', 23, 'CorrespondingExperiment', 'Feature', NULL, NULL, NULL), 70 ('Ontology', 24, 'LocationLink', 'DatabaseLink', NULL, NULL, NULL), 71 ('Feature', 25, 'CorrespondingLocation', 'Feature', NULL, NULL, NULL), 72 ('Ontology', 26, 'DummyUnit', 'Unit', NULL, NULL, NULL), 73 ('Feature', 27, 'Dummy', 'Feature', NULL, NULL, NULL); 74 75 76 -- 77 -- Table structure for table `target` 78 -- 79 80 CREATE TABLE IF NOT EXISTS `target` ( 81 `id` int(11) NOT NULL AUTO_INCREMENT, 82 `name` varchar(255) NOT NULL, 83 `comment` varchar(255) DEFAULT NULL, 84 `targettype` int(11) DEFAULT NULL, 85 PRIMARY KEY (`id`), 86 UNIQUE KEY `name` (`name`), 87 UNIQUE KEY `id` (`id`), 88 KEY `targettype` (`targettype`) 89 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; 90 91 -- 92 -- Dumping data for table `target` 93 -- 94 95 INSERT INTO `target` (`id`, `name`, `comment`, `targettype`) VALUES 96 (1, 'Ate', NULL, 8), 97 (2, 'Hamster001', NULL, 5), 98 (3, 'Nemo', NULL, 6), 99 (4, 'AtesExperiment', NULL, 11), 100 (5, 'Room D228', NULL, 4), 101 (6, 'Henkie', NULL, 5), 102 (7, 'Frits', NULL, 5), 103 (8, 'CDL', NULL, 4), 104 (9, 'Blub', NULL, 6); 105 106 107 108 -- 109 -- Table structure for table `feature` 110 -- 111 112 CREATE TABLE IF NOT EXISTS `feature` ( 113 `unit` int(11) NOT NULL, 114 `id` int(11) NOT NULL, 115 PRIMARY KEY (`id`), 116 KEY `unit` (`unit`) 117 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 118 119 -- 120 -- Dumping data for table `feature` 121 -- 122 123 INSERT INTO `feature` (`unit`, `id`) VALUES 124 (7, 9), 125 (7, 10), 126 (13, 14), 127 (15, 16), 128 (18, 19), 129 (21, 23), 130 (24, 25), 131 (26, 27); 132 133 -- -------------------------------------------------------- 134 135 -- -------------------------------------------------------- 136 137 138 -- 139 -- Table structure for table `eventtype` 140 -- 141 142 CREATE TABLE IF NOT EXISTS `eventtype` ( 143 `id` int(11) NOT NULL AUTO_INCREMENT, 144 `name` varchar(255) NOT NULL, 145 `comment` varchar(255) DEFAULT NULL, 146 PRIMARY KEY (`id`), 147 UNIQUE KEY `name` (`name`), 148 UNIQUE KEY `id` (`id`) 149 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; 150 151 -- 152 -- Dumping data for table `eventtype` 153 -- 154 155 INSERT INTO `eventtype` (`id`, `name`, `comment`) VALUES 156 (1, 'TakeTemperature', NULL), 157 (2, 'SetAddress', NULL), 158 (3, 'SetCauseOfDeath', NULL), 159 (4, 'Died', NULL), 160 (5, 'Born', NULL), 161 (6, 'WaterSupplied', NULL), 162 (7, 'FoodSupplied', NULL), 163 (8, 'SetCorrespondingExperiment', NULL), 164 (9, 'InExperiment', NULL), 165 (10, 'SetCorrespondingLocation', NULL), 166 (11, 'Move', NULL), 167 (12, 'SetDummy', NULL), 168 (15, 'EventTypeWithoutFeature', NULL), 169 (16, 'EventTypeWithoutFeature2', NULL); 170 171 -- -------------------------------------------------------- 172 173 -- 174 -- Table structure for table `eventtype_features` 175 -- 176 177 CREATE TABLE IF NOT EXISTS `eventtype_features` ( 178 `features` int(11) NOT NULL, 179 `EventType` int(11) NOT NULL, 180 PRIMARY KEY (`features`,`EventType`), 181 KEY `EventType` (`EventType`) 182 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 183 184 -- 185 -- Dumping data for table `eventtype_features` 186 -- 187 188 INSERT INTO `eventtype_features` (`features`, `EventType`) VALUES 189 (9, 1), 190 (10, 1), 191 (14, 2), 192 (16, 2), 193 (19, 3), 194 (19, 4), 195 (27, 5), 196 (27, 6), 197 (27, 7), 198 (23, 8), 199 (23, 9), 200 (25, 10), 201 (25, 11), 202 (27, 12), 203 (27, 15), 204 (27, 16); 205 206 -- -------------------------------------------------------- 21 207 22 208 -- -------------------------------------------------------- … … 77 263 -- -------------------------------------------------------- 78 264 79 -- 80 -- Table structure for table `eventtype` 81 -- 82 83 CREATE TABLE IF NOT EXISTS `eventtype` ( 84 `id` int(11) NOT NULL AUTO_INCREMENT, 85 `name` varchar(255) NOT NULL, 86 `comment` varchar(255) DEFAULT NULL, 87 PRIMARY KEY (`id`), 88 UNIQUE KEY `name` (`name`), 89 UNIQUE KEY `id` (`id`) 90 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; 91 92 -- 93 -- Dumping data for table `eventtype` 94 -- 95 96 INSERT INTO `eventtype` (`id`, `name`, `comment`) VALUES 97 (1, 'TakeTemperature', NULL), 98 (2, 'SetAddress', NULL), 99 (3, 'SetCauseOfDeath', NULL), 100 (4, 'Died', NULL), 101 (5, 'Born', NULL), 102 (6, 'WaterSupplied', NULL), 103 (7, 'FoodSupplied', NULL), 104 (8, 'SetCorrespondingExperiment', NULL), 105 (9, 'InExperiment', NULL), 106 (10, 'SetCorrespondingLocation', NULL), 107 (11, 'Move', NULL), 108 (12, 'SetDummy', NULL), 109 (15, 'EventTypeWithoutFeature', NULL), 110 (16, 'EventTypeWithoutFeature2', NULL); 111 112 -- -------------------------------------------------------- 113 114 -- 115 -- Table structure for table `eventtype_features` 116 -- 117 118 CREATE TABLE IF NOT EXISTS `eventtype_features` ( 119 `features` int(11) NOT NULL, 120 `EventType` int(11) NOT NULL, 121 PRIMARY KEY (`features`,`EventType`), 122 KEY `EventType` (`EventType`) 123 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 124 125 -- 126 -- Dumping data for table `eventtype_features` 127 -- 128 129 INSERT INTO `eventtype_features` (`features`, `EventType`) VALUES 130 (9, 1), 131 (10, 1), 132 (14, 2), 133 (16, 2), 134 (19, 3), 135 (19, 4), 136 (27, 5), 137 (27, 6), 138 (27, 7), 139 (23, 8), 140 (23, 9), 141 (25, 10), 142 (25, 11), 143 (27, 12), 144 (27, 15), 145 (27, 16); 146 147 -- -------------------------------------------------------- 148 149 -- 150 -- Table structure for table `feature` 151 -- 152 153 CREATE TABLE IF NOT EXISTS `feature` ( 154 `unit` int(11) NOT NULL, 155 `id` int(11) NOT NULL, 156 PRIMARY KEY (`id`), 157 KEY `unit` (`unit`) 158 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 159 160 -- 161 -- Dumping data for table `feature` 162 -- 163 164 INSERT INTO `feature` (`unit`, `id`) VALUES 165 (7, 9), 166 (7, 10), 167 (13, 14), 168 (15, 16), 169 (18, 19), 170 (21, 23), 171 (24, 25), 172 (26, 27); 173 174 -- -------------------------------------------------------- 175 176 -- 177 -- Table structure for table `molgenisentitymetadata` 178 -- 179 180 CREATE TABLE IF NOT EXISTS `molgenisentitymetadata` ( 181 `id` int(11) NOT NULL AUTO_INCREMENT, 182 `name` varchar(255) NOT NULL, 183 `className` varchar(255) NOT NULL, 184 PRIMARY KEY (`id`), 185 UNIQUE KEY `name` (`name`) 186 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 187 188 -- 189 -- Dumping data for table `molgenisentitymetadata` 190 -- 191 192 193 -- -------------------------------------------------------- 194 195 -- 196 -- Table structure for table `molgenisuser` 197 -- 198 199 CREATE TABLE IF NOT EXISTS `molgenisuser` ( 200 `id` int(11) NOT NULL AUTO_INCREMENT, 201 `name` varchar(255) NOT NULL, 202 `password` varchar(255) NOT NULL, 203 `emailaddress` varchar(255) NOT NULL, 204 `activationCode` varchar(255) NOT NULL, 205 `active` tinyint(1) NOT NULL DEFAULT '0', 206 PRIMARY KEY (`id`), 207 UNIQUE KEY `name` (`name`), 208 UNIQUE KEY `emailaddress` (`emailaddress`) 209 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 210 211 -- 212 -- Dumping data for table `molgenisuser` 213 -- 214 215 216 -- -------------------------------------------------------- 217 218 -- 219 -- Table structure for table `molgenisusergroup` 220 -- 221 222 CREATE TABLE IF NOT EXISTS `molgenisusergroup` ( 223 `id` int(11) NOT NULL AUTO_INCREMENT, 224 `name` varchar(255) NOT NULL, 225 `superuser` tinyint(1) NOT NULL DEFAULT '0', 226 PRIMARY KEY (`id`), 227 UNIQUE KEY `name` (`name`) 228 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 229 230 -- 231 -- Dumping data for table `molgenisusergroup` 232 -- 233 234 235 -- -------------------------------------------------------- 236 237 -- 238 -- Table structure for table `molgenisusergroup_canread` 239 -- 240 241 CREATE TABLE IF NOT EXISTS `molgenisusergroup_canread` ( 242 `canRead` int(11) NOT NULL, 243 `MolgenisUserGroup` int(11) NOT NULL, 244 PRIMARY KEY (`canRead`,`MolgenisUserGroup`), 245 KEY `MolgenisUserGroup` (`MolgenisUserGroup`) 246 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 247 248 -- 249 -- Dumping data for table `molgenisusergroup_canread` 250 -- 251 252 253 -- -------------------------------------------------------- 254 255 -- 256 -- Table structure for table `molgenisusergroup_canwrite` 257 -- 258 259 CREATE TABLE IF NOT EXISTS `molgenisusergroup_canwrite` ( 260 `canWrite` int(11) NOT NULL, 261 `MolgenisUserGroup` int(11) NOT NULL, 262 PRIMARY KEY (`canWrite`,`MolgenisUserGroup`), 263 KEY `MolgenisUserGroup` (`MolgenisUserGroup`) 264 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 265 266 -- 267 -- Dumping data for table `molgenisusergroup_canwrite` 268 -- 269 270 271 -- -------------------------------------------------------- 272 273 -- 274 -- Table structure for table `molgenisusergroup_members` 275 -- 276 277 CREATE TABLE IF NOT EXISTS `molgenisusergroup_members` ( 278 `members` int(11) NOT NULL, 279 `MolgenisUserGroup` int(11) NOT NULL, 280 PRIMARY KEY (`members`,`MolgenisUserGroup`), 281 KEY `MolgenisUserGroup` (`MolgenisUserGroup`) 282 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 283 284 -- 285 -- Dumping data for table `molgenisusergroup_members` 286 -- 287 288 289 -- -------------------------------------------------------- 290 291 -- 292 -- Table structure for table `ontology` 293 -- 294 295 CREATE TABLE IF NOT EXISTS `ontology` ( 296 `type` enum('Ontology','Feature') NOT NULL, 297 `id` int(11) NOT NULL AUTO_INCREMENT, 298 `name` varchar(255) NOT NULL, 299 `termtype` varchar(255) NOT NULL, 300 `definition` text, 301 `path` text, 302 `accession` varchar(255) DEFAULT NULL, 303 PRIMARY KEY (`id`), 304 UNIQUE KEY `name` (`name`), 305 UNIQUE KEY `accession` (`accession`) 306 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=28 ; 307 308 -- 309 -- Dumping data for table `ontology` 310 -- 311 312 INSERT INTO `ontology` (`type`, `id`, `name`, `termtype`, `definition`, `path`, `accession`) VALUES 313 ('Ontology', 1, 'Animal', 'meta', NULL, NULL, NULL), 314 ('Ontology', 2, 'Unit', 'meta', NULL, NULL, NULL), 315 ('Ontology', 3, 'Role', 'meta', NULL, NULL, NULL), 316 ('Ontology', 4, 'Location', 'meta', NULL, NULL, NULL), 317 ('Ontology', 5, 'Hamster', 'Animal', NULL, NULL, NULL), 318 ('Ontology', 6, 'Fish', 'Animal', NULL, NULL, NULL), 319 ('Ontology', 7, 'DegreesCelsius', 'Unit', NULL, NULL, NULL), 320 ('Ontology', 8, 'Researcher', 'Role', NULL, NULL, NULL), 321 ('Feature', 9, 'CranialTemperature', 'Feature', NULL, NULL, NULL), 322 ('Feature', 10, 'RectalTemperature', 'Feature', NULL, NULL, NULL), 323 ('Ontology', 11, 'Experiment', 'meta', NULL, NULL, NULL), 324 ('Ontology', 12, 'Student', 'Role', NULL, NULL, NULL), 325 ('Ontology', 13, 'Streetname', 'Unit', NULL, NULL, NULL), 326 ('Feature', 14, 'Street', 'Feature', NULL, NULL, NULL), 327 ('Ontology', 15, 'Cityname', 'Unit', NULL, NULL, NULL), 328 ('Feature', 16, 'City', 'Feature', NULL, NULL, NULL), 329 ('Ontology', 17, 'Number', 'Unit', NULL, NULL, NULL), 330 ('Ontology', 18, 'Description', 'Unit', NULL, NULL, NULL), 331 ('Feature', 19, 'CauseOfDeath', 'Feature', NULL, NULL, NULL), 332 ('Ontology', 20, 'DatabaseLink', 'meta', NULL, NULL, NULL), 333 ('Ontology', 21, 'ExperimentLink', 'DatabaseLink', NULL, NULL, NULL), 334 ('Feature', 23, 'CorrespondingExperiment', 'Feature', NULL, NULL, NULL), 335 ('Ontology', 24, 'LocationLink', 'DatabaseLink', NULL, NULL, NULL), 336 ('Feature', 25, 'CorrespondingLocation', 'Feature', NULL, NULL, NULL), 337 ('Ontology', 26, 'DummyUnit', 'Unit', NULL, NULL, NULL), 338 ('Feature', 27, 'Dummy', 'Feature', NULL, NULL, NULL); 339 340 -- -------------------------------------------------------- 341 342 -- 343 -- Table structure for table `target` 344 -- 345 346 CREATE TABLE IF NOT EXISTS `target` ( 347 `id` int(11) NOT NULL AUTO_INCREMENT, 348 `name` varchar(255) NOT NULL, 349 `comment` varchar(255) DEFAULT NULL, 350 `targettype` int(11) DEFAULT NULL, 351 PRIMARY KEY (`id`), 352 UNIQUE KEY `name` (`name`), 353 UNIQUE KEY `id` (`id`), 354 KEY `targettype` (`targettype`) 355 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; 356 357 -- 358 -- Dumping data for table `target` 359 -- 360 361 INSERT INTO `target` (`id`, `name`, `comment`, `targettype`) VALUES 362 (1, 'Ate', NULL, 8), 363 (2, 'Hamster001', NULL, 5), 364 (3, 'Nemo', NULL, 6), 365 (4, 'AtesExperiment', NULL, 11), 366 (5, 'Room D228', NULL, 4), 367 (6, 'Henkie', NULL, 5), 368 (7, 'Frits', NULL, 5), 369 (8, 'CDL', NULL, 4), 370 (9, 'Blub', NULL, 6); 371 372 -- -------------------------------------------------------- 265 266 -- -------------------------------------------------------- 267 373 268 374 269 -- … … 424 319 (25, 'value0Thu Feb 25 14:13:43 CET 2010', NULL, '2010-02-25 14:13:41', 30, 23, 7, 'string', '4'); 425 320 321 322 323 324 325 326 -- 327 -- Table structure for table `molgenisentitymetadata` 328 -- 329 330 CREATE TABLE IF NOT EXISTS `molgenisentitymetadata` ( 331 `id` int(11) NOT NULL AUTO_INCREMENT, 332 `name` varchar(255) NOT NULL, 333 `className` varchar(255) NOT NULL, 334 PRIMARY KEY (`id`), 335 UNIQUE KEY `name` (`name`) 336 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 337 338 -- 339 -- Dumping data for table `molgenisentitymetadata` 340 -- 341 342 343 -- -------------------------------------------------------- 344 345 -- 346 -- Table structure for table `molgenisuser` 347 -- 348 349 CREATE TABLE IF NOT EXISTS `molgenisuser` ( 350 `id` int(11) NOT NULL AUTO_INCREMENT, 351 `name` varchar(255) NOT NULL, 352 `password` varchar(255) NOT NULL, 353 `emailaddress` varchar(255) NOT NULL, 354 `activationCode` varchar(255) NOT NULL, 355 `active` tinyint(1) NOT NULL DEFAULT '0', 356 PRIMARY KEY (`id`), 357 UNIQUE KEY `name` (`name`), 358 UNIQUE KEY `emailaddress` (`emailaddress`) 359 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 360 361 -- 362 -- Dumping data for table `molgenisuser` 363 -- 364 365 366 -- -------------------------------------------------------- 367 368 -- 369 -- Table structure for table `molgenisusergroup` 370 -- 371 372 CREATE TABLE IF NOT EXISTS `molgenisusergroup` ( 373 `id` int(11) NOT NULL AUTO_INCREMENT, 374 `name` varchar(255) NOT NULL, 375 `superuser` tinyint(1) NOT NULL DEFAULT '0', 376 PRIMARY KEY (`id`), 377 UNIQUE KEY `name` (`name`) 378 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 379 380 -- 381 -- Dumping data for table `molgenisusergroup` 382 -- 383 384 385 -- -------------------------------------------------------- 386 387 -- 388 -- Table structure for table `molgenisusergroup_canread` 389 -- 390 391 CREATE TABLE IF NOT EXISTS `molgenisusergroup_canread` ( 392 `canRead` int(11) NOT NULL, 393 `MolgenisUserGroup` int(11) NOT NULL, 394 PRIMARY KEY (`canRead`,`MolgenisUserGroup`), 395 KEY `MolgenisUserGroup` (`MolgenisUserGroup`) 396 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 397 398 -- 399 -- Dumping data for table `molgenisusergroup_canread` 400 -- 401 402 403 -- -------------------------------------------------------- 404 405 -- 406 -- Table structure for table `molgenisusergroup_canwrite` 407 -- 408 409 CREATE TABLE IF NOT EXISTS `molgenisusergroup_canwrite` ( 410 `canWrite` int(11) NOT NULL, 411 `MolgenisUserGroup` int(11) NOT NULL, 412 PRIMARY KEY (`canWrite`,`MolgenisUserGroup`), 413 KEY `MolgenisUserGroup` (`MolgenisUserGroup`) 414 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 415 416 -- 417 -- Dumping data for table `molgenisusergroup_canwrite` 418 -- 419 420 421 -- -------------------------------------------------------- 422 423 -- 424 -- Table structure for table `molgenisusergroup_members` 425 -- 426 427 CREATE TABLE IF NOT EXISTS `molgenisusergroup_members` ( 428 `members` int(11) NOT NULL, 429 `MolgenisUserGroup` int(11) NOT NULL, 430 PRIMARY KEY (`members`,`MolgenisUserGroup`), 431 KEY `MolgenisUserGroup` (`MolgenisUserGroup`) 432 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 433 434 -- 435 -- Dumping data for table `molgenisusergroup_members` 436 -- 437 438 439 426 440 -- 427 441 -- Constraints for dumped tables
Note: See TracChangeset
for help on using the changeset viewer.