From 80b9878de3b9e4fc87897da17d4bdb6069564c24 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Thu, 27 Apr 2023 10:48:45 +0000 Subject: [PATCH] Bug 34587: SQL structure and atomic update file Sponsored-by: PTFS Europe Ltd Sponsored-by: Bywater Solutions Signed-off-by: Jessica Zairo Signed-off-by: Michaela Sieber Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi --- .../erm_usage_statistics_tables.pl | 215 ++++++++++++++++++ installer/data/mysql/kohastructure.sql | 131 +++++++++++ 2 files changed, 346 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/erm_usage_statistics_tables.pl diff --git a/installer/data/mysql/atomicupdate/erm_usage_statistics_tables.pl b/installer/data/mysql/atomicupdate/erm_usage_statistics_tables.pl new file mode 100644 index 0000000000..c317fe781c --- /dev/null +++ b/installer/data/mysql/atomicupdate/erm_usage_statistics_tables.pl @@ -0,0 +1,215 @@ +use Modern::Perl; + +return { + bug_number => "XXXX", + description => "Creating the tables for ERM Usage Statistics", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + + unless( TableExists( 'erm_usage_data_providers')) { + $dbh->do( + q{ + CREATE TABLE `erm_usage_data_providers` ( + `erm_usage_data_provider_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `name` varchar(80) NOT NULL COMMENT 'name of the data provider', + `description` longtext DEFAULT NULL COMMENT 'description of the data provider', + `active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'current status of the harvester - active/inactive', + `method` varchar(80) DEFAULT NULL COMMENT 'method of the harvester', + `aggregator` varchar(80) DEFAULT NULL COMMENT 'aggregator of the harvester', + `service_type` varchar(80) DEFAULT NULL COMMENT 'service_type of the harvester', + `service_url` varchar(80) DEFAULT NULL COMMENT 'service_url of the harvester', + `report_release` varchar(80) DEFAULT NULL COMMENT 'report_release of the harvester', + `begin_date` date DEFAULT NULL COMMENT 'start date of the harvester', + `end_date` date DEFAULT NULL COMMENT 'end date of the harvester', + `customer_id` varchar(50) DEFAULT NULL COMMENT 'sushi customer id', + `requestor_id` varchar(50) DEFAULT NULL COMMENT 'sushi requestor id', + `api_key` varchar(80) DEFAULT NULL COMMENT 'sushi api key', + `requestor_name` varchar(80) DEFAULT NULL COMMENT 'requestor name', + `requestor_email` varchar(80) DEFAULT NULL COMMENT 'requestor email', + `report_types` varchar(255) DEFAULT NULL COMMENT 'report types provided by the harvester', + PRIMARY KEY (`erm_usage_data_provider_id`) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + } + ); + + say $out "Added new table erm_usage_data_providers"; + } else { + say $out "erm_usage_data_providers table already exists - skipping to next table"; + } + + unless( TableExists( 'erm_counter_files')) { + $dbh->do( + q{ + CREATE TABLE `erm_counter_files` ( + `erm_counter_files_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `usage_data_provider_id` int(11) DEFAULT NULL COMMENT 'foreign key to erm_usage_data_providers', + `type` varchar(80) DEFAULT NULL COMMENT 'type of counter file', + `filename` varchar(80) DEFAULT NULL COMMENT 'name of the counter file', + `file_content` longblob DEFAULT NULL COMMENT 'content of the counter file', + `date_uploaded` timestamp DEFAULT NULL DEFAULT current_timestamp() COMMENT 'counter file upload date', + PRIMARY KEY (`erm_counter_files_id`), + CONSTRAINT `erm_counter_files_ibfk_1` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + } + ); + + say $out "Added new table erm_counter_files"; + } else { + say $out "erm_counter_files table already exists - skipping to next table"; + } + + unless( TableExists( 'erm_counter_logs')) { + $dbh->do( + q{ + CREATE TABLE `erm_counter_logs` ( + `erm_counter_log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `borrowernumber` int(11) DEFAULT NULL COMMENT 'foreign key to borrowers', + `counter_files_id` int(11) DEFAULT NULL COMMENT 'foreign key to erm_counter_files', + `importdate` timestamp DEFAULT NULL DEFAULT current_timestamp() COMMENT 'counter file import date', + `filename` varchar(80) DEFAULT NULL COMMENT 'name of the counter file', + `logdetails` longtext DEFAULT NULL COMMENT 'details from the counter log', + PRIMARY KEY (`erm_counter_log_id`), + CONSTRAINT `erm_counter_log_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `erm_counter_log_ibfk_2` FOREIGN KEY (`counter_files_id`) REFERENCES `erm_counter_files` (`erm_counter_files_id`) ON DELETE CASCADE ON UPDATE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + } + ); + + say $out "Added new table erm_counter_logs"; + } else { + say $out "erm_counter_logs table already exists - skipping to next table"; + } + + unless( TableExists( 'erm_usage_titles')) { + $dbh->do( + q{ + CREATE TABLE `erm_usage_titles` ( + `title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title` varchar(255) DEFAULT NULL COMMENT 'item title', + `usage_data_provider_id` int(11) NOT NULL COMMENT 'platform the title is harvested by', + `title_doi` varchar(24) DEFAULT NULL COMMENT 'DOI number for the title', + `print_issn` varchar(24) DEFAULT NULL COMMENT 'Print ISSN number for the title', + `online_issn` varchar(24) DEFAULT NULL COMMENT 'Online ISSN number for the title', + `title_uri` varchar(24) DEFAULT NULL COMMENT 'URI number for the title', + PRIMARY KEY (`title_id`), + CONSTRAINT `erm_usage_titles_ibfk_1` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + } + ); + + say $out "Added new table erm_usage_titles"; + } else { + say $out "erm_usage_titles table already exists - skipping to next table"; + } + + unless( TableExists( 'erm_usage_mus')) { + $dbh->do( + q{ + CREATE TABLE `erm_usage_mus` ( + `monthly_usage_summary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `usage_data_provider_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `year` int(4) DEFAULT NULL COMMENT 'year of usage statistics', + `month` int(2) DEFAULT NULL COMMENT 'month of usage statistics', + `usage_count` int(11) DEFAULT NULL COMMENT 'usage count for the title', + `metric_type` varchar(50) DEFAULT NULL COMMENT 'metric type for the usage statistic', + `report_type` varchar(50) DEFAULT NULL COMMENT 'report type for the usage statistic', + PRIMARY KEY (`monthly_usage_summary_id`), + CONSTRAINT `erm_usage_mus_ibfk_1` FOREIGN KEY (`title_id`) REFERENCES `erm_usage_titles` (`title_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `erm_usage_mus_ibfk_2` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + } + ); + + say $out "Added new table erm_usage_mus"; + } else { + say $out "erm_usage_mus table already exists - skipping to next table"; + } + + unless( TableExists( 'erm_usage_yus')) { + $dbh->do( + q{ + CREATE TABLE `erm_usage_yus` ( + `yearly_usage_summary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `usage_data_provider_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `year` int(4) DEFAULT NULL COMMENT 'year of usage statistics', + `totalcount` int(11) DEFAULT NULL COMMENT 'usage count for the title', + `metric_type` varchar(50) DEFAULT NULL COMMENT 'metric type for the usage statistic', + `report_type` varchar(50) DEFAULT NULL COMMENT 'report type for the usage statistic', + PRIMARY KEY (`yearly_usage_summary_id`), + CONSTRAINT `erm_usage_yus_ibfk_1` FOREIGN KEY (`title_id`) REFERENCES `erm_usage_titles` (`title_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `erm_usage_yus_ibfk_2` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + } + ); + + say $out "Added new table erm_usage_yus"; + } else { + say $out "erm_usage_yus table already exists - skipping to next table"; + } + + $dbh->do(q{ + INSERT IGNORE INTO authorised_value_categories (category_name, is_system) + VALUES + ('ERM_REPORT_TYPES', 1), + ('ERM_PLATFORM_REPORTS_METRICS', 1), + ('ERM_DATABASE_REPORTS_METRICS', 1), + ('ERM_TITLE_REPORTS_METRICS', 1), + ('ERM_ITEM_REPORTS_METRICS', 1); + }); + $dbh->do(q{ + INSERT IGNORE INTO authorised_values (category, authorised_value, lib) + VALUES + ('ERM_REPORT_TYPES', 'PR', 'PR - Platform master report'), + ('ERM_REPORT_TYPES', 'PR_P1', 'PR_P1 - Platform usage'), + ('ERM_REPORT_TYPES', 'DR', 'DR - Database master report'), + ('ERM_REPORT_TYPES', 'DR_D1', 'DR_D1 - Database search and item usage'), + ('ERM_REPORT_TYPES', 'DR_D2', 'DR_D2 - Database access denied'), + ('ERM_REPORT_TYPES', 'TR', 'TR - Title master report'), + ('ERM_REPORT_TYPES', 'TR_B1', 'TR_B1 - Book requests (excluding OA_Gold)'), + ('ERM_REPORT_TYPES', 'TR_B2', 'TR_B2 - Book access denied'), + ('ERM_REPORT_TYPES', 'TR_B3', 'TR_B3 - Book usage by access type'), + ('ERM_REPORT_TYPES', 'TR_J1', 'TR_J1 - Journal requests (excluding OA_Gold)'), + ('ERM_REPORT_TYPES', 'TR_J2', 'TR_J2 - Journal access denied'), + ('ERM_REPORT_TYPES', 'TR_J3', 'TR_J3 - Journal usage by access type'), + ('ERM_REPORT_TYPES', 'TR_J4', 'TR_J4 - Journal requests by YOP(excluding OA_Gold)'), + ('ERM_REPORT_TYPES', 'IR', 'IR - Item master report'), + ('ERM_REPORT_TYPES', 'IR_A1', 'IR_A1 - Journal article requests'), + ('ERM_REPORT_TYPES', 'IR_M1', 'IR_M1 - Multimedia item requests'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Searches_Platform', 'Searches platform'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Total_Item_Investigations', 'Total item investigations'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Total_Item_Requests', 'Total item requests'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Unique_Item_Investigations', 'Unique item investigations'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Unique_Item_Requests', 'Unique item requests'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Unique_Title_Investigations', 'Unique title investigations'), + ('ERM_PLATFORM_REPORTS_METRICS', 'Unique_Title_Requests', 'Unique title requests'), + ('ERM_DATABASE_REPORTS_METRICS', 'Searches_Automated', 'Searches automated'), + ('ERM_DATABASE_REPORTS_METRICS', 'Searches_Federated', 'Searches federated'), + ('ERM_DATABASE_REPORTS_METRICS', 'Searches_Regular', 'Searches regular'), + ('ERM_DATABASE_REPORTS_METRICS', 'Total_Item_Investigations', 'Total item investigations'), + ('ERM_DATABASE_REPORTS_METRICS', 'Total_Item_Requests', 'Total item requests'), + ('ERM_DATABASE_REPORTS_METRICS', 'Unique_Item_Investigations', 'Unique item investigations'), + ('ERM_DATABASE_REPORTS_METRICS', 'Unique_Item_Requests', 'Unique item requests'), + ('ERM_DATABASE_REPORTS_METRICS', 'Unique_Title_Investigations', 'Unique title investigations'), + ('ERM_DATABASE_REPORTS_METRICS', 'Unique_Title_Requests', 'Unique title requests'), + ('ERM_DATABASE_REPORTS_METRICS', 'Limit_Exceeded', 'Limit exceeded'), + ('ERM_DATABASE_REPORTS_METRICS', 'No_License', 'No license'), + ('ERM_TITLE_REPORTS_METRICS', 'Total_Item_Investigations', 'Total item investigations'), + ('ERM_TITLE_REPORTS_METRICS', 'Total_Item_Requests', 'Total item requests'), + ('ERM_TITLE_REPORTS_METRICS', 'Unique_Item_Investigations', 'Unique item investigations'), + ('ERM_TITLE_REPORTS_METRICS', 'Unique_Item_Requests', 'Unique item requests'), + ('ERM_TITLE_REPORTS_METRICS', 'Unique_Title_Investigations', 'Unique title investigations'), + ('ERM_TITLE_REPORTS_METRICS', 'Unique_Title_Requests', 'Unique title requests'), + ('ERM_TITLE_REPORTS_METRICS', 'Limit_Exceeded', 'Limit exceeded'), + ('ERM_TITLE_REPORTS_METRICS', 'No_License', 'No license'), + ('ERM_ITEM_REPORTS_METRICS', 'Total_Item_Investigations', 'Total item investigations'), + ('ERM_ITEM_REPORTS_METRICS', 'Total_Item_Requests', 'Total item requests'), + ('ERM_ITEM_REPORTS_METRICS', 'Unique_Item_Investigations', 'Unique item investigations'), + ('ERM_ITEM_REPORTS_METRICS', 'Unique_Item_Requests', 'Unique item requests'), + ('ERM_ITEM_REPORTS_METRICS', 'Limit_Exceeded', 'Limit exceeded'), + ('ERM_ITEM_REPORTS_METRICS', 'No_License', 'No license'); + }); + }, +}; diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 0e907eff38..c74fe9f20b 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -2929,6 +2929,45 @@ CREATE TABLE `erm_agreements` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `erm_counter_files` +-- + +DROP TABLE IF EXISTS `erm_counter_files`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `erm_counter_files` ( + `erm_counter_files_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `usage_data_provider_id` int(11) DEFAULT NULL COMMENT 'foreign key to erm_usage_data_providers', + `type` varchar(80) DEFAULT NULL COMMENT 'type of counter file', + `filename` varchar(80) DEFAULT NULL COMMENT 'name of the counter file', + `file_content` longblob DEFAULT NULL COMMENT 'content of the counter file', + `date_uploaded` timestamp DEFAULT NULL DEFAULT current_timestamp() COMMENT 'counter file upload date', + PRIMARY KEY (`erm_counter_files_id`), + CONSTRAINT `erm_counter_files_ibfk_1` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `erm_counter_logs` +-- + +DROP TABLE IF EXISTS `erm_counter_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `erm_counter_logs` ( + `erm_counter_log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `borrowernumber` int(11) DEFAULT NULL COMMENT 'foreign key to borrowers', + `counter_files_id` int(11) DEFAULT NULL COMMENT 'foreign key to erm_counter_files', + `importdate` timestamp DEFAULT NULL DEFAULT current_timestamp() COMMENT 'counter file import date', + `filename` varchar(80) DEFAULT NULL COMMENT 'name of the counter file', + `logdetails` longtext DEFAULT NULL COMMENT 'details from the counter log', + PRIMARY KEY (`erm_counter_log_id`), + CONSTRAINT `erm_counter_log_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `erm_counter_log_ibfk_2` FOREIGN KEY (`counter_files_id`) REFERENCES `erm_counter_files` (`erm_counter_files_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `erm_documents` -- @@ -3084,6 +3123,98 @@ CREATE TABLE `erm_licenses` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `erm_usage_data_providers` +-- + +DROP TABLE IF EXISTS `erm_usage_data_providers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `erm_usage_data_providers` ( + `erm_usage_data_provider_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `name` varchar(80) NOT NULL COMMENT 'name of the data provider', + `description` longtext DEFAULT NULL COMMENT 'description of the data provider', + `active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'current status of the harvester - active/inactive', + `method` varchar(80) DEFAULT NULL COMMENT 'method of the harvester', + `aggregator` varchar(80) DEFAULT NULL COMMENT 'aggregator of the harvester', + `service_type` varchar(80) DEFAULT NULL COMMENT 'service_type of the harvester', + `service_url` varchar(80) DEFAULT NULL COMMENT 'service_url of the harvester', + `report_release` varchar(80) DEFAULT NULL COMMENT 'report_release of the harvester', + `begin_date` date DEFAULT NULL COMMENT 'start date of the harvester', + `end_date` date DEFAULT NULL COMMENT 'end date of the harvester', + `customer_id` varchar(50) DEFAULT NULL COMMENT 'sushi customer id', + `requestor_id` varchar(50) DEFAULT NULL COMMENT 'sushi requestor id', + `api_key` varchar(80) DEFAULT NULL COMMENT 'sushi api key', + `requestor_name` varchar(80) DEFAULT NULL COMMENT 'requestor name', + `requestor_email` varchar(80) DEFAULT NULL COMMENT 'requestor email', + `report_types` varchar(255) DEFAULT NULL COMMENT 'report types provided by the harvester', + PRIMARY KEY (`erm_usage_data_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `erm_usage_mus` +-- + +DROP TABLE IF EXISTS `erm_usage_mus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `erm_usage_mus` ( + `monthly_usage_summary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `usage_data_provider_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `year` int(4) DEFAULT NULL COMMENT 'year of usage statistics', + `month` int(2) DEFAULT NULL COMMENT 'month of usage statistics', + `usage_count` int(11) DEFAULT NULL COMMENT 'usage count for the title', + `metric_type` varchar(50) DEFAULT NULL COMMENT 'metric type for the usage statistic', + `report_type` varchar(50) DEFAULT NULL COMMENT 'report type for the usage statistic', + PRIMARY KEY (`monthly_usage_summary_id`), + CONSTRAINT `erm_usage_mus_ibfk_1` FOREIGN KEY (`title_id`) REFERENCES `erm_usage_titles` (`title_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `erm_usage_mus_ibfk_2` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `erm_usage_titles` +-- + +DROP TABLE IF EXISTS `erm_usage_titles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `erm_usage_titles` ( + `title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title` varchar(255) DEFAULT NULL COMMENT 'item title', + `usage_data_provider_id` int(11) NOT NULL COMMENT 'platform the title is harvested by', + `title_doi` varchar(24) DEFAULT NULL COMMENT 'DOI number for the title', + `print_issn` varchar(24) DEFAULT NULL COMMENT 'Print ISSN number for the title', + `online_issn` varchar(24) DEFAULT NULL COMMENT 'Online ISSN number for the title', + `title_uri` varchar(24) DEFAULT NULL COMMENT 'URI number for the title', + PRIMARY KEY (`title_id`), + CONSTRAINT `erm_usage_titles_ibfk_1` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `erm_usage_yus` +-- + +DROP TABLE IF EXISTS `erm_usage_yus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `erm_usage_yus` ( + `yearly_usage_summary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `usage_data_provider_id` int(11) DEFAULT NULL COMMENT 'item title id number', + `year` int(4) DEFAULT NULL COMMENT 'year of usage statistics', + `totalcount` int(11) DEFAULT NULL COMMENT 'usage count for the title', + `metric_type` varchar(50) DEFAULT NULL COMMENT 'metric type for the usage statistic', + `report_type` varchar(50) DEFAULT NULL COMMENT 'report type for the usage statistic', + PRIMARY KEY (`yearly_usage_summary_id`), + CONSTRAINT `erm_usage_yus_ibfk_1` FOREIGN KEY (`title_id`) REFERENCES `erm_usage_titles` (`title_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `erm_usage_yus_ibfk_2` FOREIGN KEY (`usage_data_provider_id`) REFERENCES `erm_usage_data_providers` (`erm_usage_data_provider_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `erm_user_roles` -- -- 2.20.1