Changeset 40055 for trunk/ippMonitor/czartool/czarDbSchema.sql
- Timestamp:
- May 24, 2017, 2:55:55 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/ippMonitor/czartool/czarDbSchema.sql (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/czartool/czarDbSchema.sql
r38261 r40055 520 520 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 521 521 SET character_set_client = @saved_cs_client; 522 523 524 -- 525 -- Table structure for table `summitExp` 526 -- 527 528 DROP TABLE IF EXISTS `summitExp`; 529 SET @saved_cs_client = @@character_set_client; 530 SET character_set_client = utf8; 531 CREATE TABLE `summitExp` ( 532 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 533 `label` varchar(128) default 'NONE', 534 `dbname` varchar(128) default 'NONE', 535 `pending` bigint(20) NOT NULL, 536 `faults` bigint(20) NOT NULL, 537 `processed` bigint(20) NOT NULL default '0', 538 KEY `summitExpIndex` (`timestamp`,`label`, `dbname`) 539 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 540 SET character_set_client = @saved_cs_client; 541 542 -- 543 -- Table structure for table `downloadExp` 544 -- 545 546 DROP TABLE IF EXISTS `downloadExp`; 547 SET @saved_cs_client = @@character_set_client; 548 SET character_set_client = utf8; 549 CREATE TABLE `downloadExp` ( 550 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 551 `label` varchar(128) default 'NONE', 552 `dbname` varchar(128) default 'NONE', 553 `pending` bigint(20) NOT NULL, 554 `faults` bigint(20) NOT NULL, 555 `processed` bigint(20) NOT NULL default '0', 556 KEY `downloadExpIndex` (`timestamp`,`label`, `dbname`) 557 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 558 SET character_set_client = @saved_cs_client; 559 560 -- 561 -- Table structure for table `newExp` 562 -- 563 564 DROP TABLE IF EXISTS `newExp`; 565 SET @saved_cs_client = @@character_set_client; 566 SET character_set_client = utf8; 567 CREATE TABLE `newExp` ( 568 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 569 `label` varchar(128) default 'NONE', 570 `dbname` varchar(128) default 'NONE', 571 `pending` bigint(20) NOT NULL, 572 `faults` bigint(20) NOT NULL, 573 `processed` bigint(20) NOT NULL default '0', 574 KEY `newExpIndex` (`timestamp`,`label`, `dbname`) 575 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 576 SET character_set_client = @saved_cs_client; 577 578 -- 579 -- Table structure for table `rawExp` 580 -- 581 582 DROP TABLE IF EXISTS `rawExp`; 583 SET @saved_cs_client = @@character_set_client; 584 SET character_set_client = utf8; 585 CREATE TABLE `rawExp` ( 586 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, 587 `label` varchar(128) default 'NONE', 588 `dbname` varchar(128) default 'NONE', 589 `pending` bigint(20) NOT NULL, 590 `faults` bigint(20) NOT NULL, 591 `processed` bigint(20) NOT NULL default '0', 592 KEY `rawExpIndex` (`timestamp`,`label`, `dbname`) 593 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 594 SET character_set_client = @saved_cs_client; 595 596 597 522 598 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 523 599 … … 529 605 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 530 606 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; 607
Note:
See TracChangeset
for help on using the changeset viewer.
