One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
var
/
www
/
Edit File:
mfat-empty.sql
-- MySQL dump 10.19 Distrib 10.3.39-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: ojs_mfat -- ------------------------------------------------------ -- Server version 10.3.39-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `access_keys` -- DROP TABLE IF EXISTS `access_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `access_keys` ( `access_key_id` bigint(20) NOT NULL AUTO_INCREMENT, `context` varchar(40) NOT NULL, `key_hash` varchar(40) NOT NULL, `user_id` bigint(20) NOT NULL, `assoc_id` bigint(20) DEFAULT NULL, `expiry_date` datetime NOT NULL, PRIMARY KEY (`access_key_id`), KEY `access_keys_user_id` (`user_id`), KEY `access_keys_hash` (`key_hash`,`user_id`,`context`), CONSTRAINT `access_keys_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Access keys are used to provide pseudo-login functionality for security-minimal tasks. Passkeys can be emailed directly to users, who can use them for a limited time in lieu of standard username and password.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `access_keys` -- LOCK TABLES `access_keys` WRITE; /*!40000 ALTER TABLE `access_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `access_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement_settings` -- DROP TABLE IF EXISTS `announcement_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcement_settings` ( `announcement_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `announcement_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`announcement_setting_id`), UNIQUE KEY `announcement_settings_unique` (`announcement_id`,`locale`,`setting_name`), KEY `announcement_settings_announcement_id` (`announcement_id`), CONSTRAINT `announcement_settings_announcement_id_foreign` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`announcement_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about announcements, including localized properties like names and contents.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement_settings` -- LOCK TABLES `announcement_settings` WRITE; /*!40000 ALTER TABLE `announcement_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement_type_settings` -- DROP TABLE IF EXISTS `announcement_type_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcement_type_settings` ( `announcement_type_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`announcement_type_setting_id`), UNIQUE KEY `announcement_type_settings_unique` (`type_id`,`locale`,`setting_name`), KEY `announcement_type_settings_type_id` (`type_id`), CONSTRAINT `announcement_type_settings_type_id_foreign` FOREIGN KEY (`type_id`) REFERENCES `announcement_types` (`type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about announcement types, including localized properties like their names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement_type_settings` -- LOCK TABLES `announcement_type_settings` WRITE; /*!40000 ALTER TABLE `announcement_type_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement_type_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement_types` -- DROP TABLE IF EXISTS `announcement_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcement_types` ( `type_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, PRIMARY KEY (`type_id`), KEY `announcement_types_context_id` (`context_id`), CONSTRAINT `announcement_types_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Announcement types allow for announcements to optionally be categorized.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement_types` -- LOCK TABLES `announcement_types` WRITE; /*!40000 ALTER TABLE `announcement_types` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcements` -- DROP TABLE IF EXISTS `announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcements` ( `announcement_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` smallint(6) DEFAULT NULL, `assoc_id` bigint(20) NOT NULL, `type_id` bigint(20) DEFAULT NULL, `date_expire` date DEFAULT NULL, `date_posted` datetime NOT NULL, PRIMARY KEY (`announcement_id`), KEY `announcements_type_id` (`type_id`), KEY `announcements_assoc` (`assoc_type`,`assoc_id`), CONSTRAINT `announcements_type_id_foreign` FOREIGN KEY (`type_id`) REFERENCES `announcement_types` (`type_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Announcements are messages that can be presented to users e.g. on the homepage.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcements` -- LOCK TABLES `announcements` WRITE; /*!40000 ALTER TABLE `announcements` DISABLE KEYS */; /*!40000 ALTER TABLE `announcements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `author_settings` -- DROP TABLE IF EXISTS `author_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `author_settings` ( `author_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `author_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`author_setting_id`), UNIQUE KEY `author_settings_unique` (`author_id`,`locale`,`setting_name`), KEY `author_settings_author_id` (`author_id`), CONSTRAINT `author_settings_author_id` FOREIGN KEY (`author_id`) REFERENCES `authors` (`author_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about authors, including localized properties such as their name and affiliation.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `author_settings` -- LOCK TABLES `author_settings` WRITE; /*!40000 ALTER TABLE `author_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `author_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `authors` -- DROP TABLE IF EXISTS `authors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `authors` ( `author_id` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(90) NOT NULL, `include_in_browse` smallint(6) NOT NULL DEFAULT 1, `publication_id` bigint(20) NOT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, `user_group_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`author_id`), KEY `authors_user_group_id` (`user_group_id`), KEY `authors_publication_id` (`publication_id`), CONSTRAINT `authors_publication_id_foreign` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE, CONSTRAINT `authors_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='The authors of a publication.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `authors` -- LOCK TABLES `authors` WRITE; /*!40000 ALTER TABLE `authors` DISABLE KEYS */; /*!40000 ALTER TABLE `authors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categories` ( `category_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `parent_id` bigint(20) DEFAULT NULL, `seq` bigint(20) DEFAULT NULL, `path` varchar(255) NOT NULL, `image` text DEFAULT NULL, PRIMARY KEY (`category_id`), UNIQUE KEY `category_path` (`context_id`,`path`), KEY `category_context_id` (`context_id`), KEY `category_context_parent_id` (`context_id`,`parent_id`), KEY `category_parent_id` (`parent_id`), CONSTRAINT `categories_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `categories_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `categories` (`category_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Categories permit the organization of submissions into a heirarchical structure.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category_settings` -- DROP TABLE IF EXISTS `category_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `category_settings` ( `category_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`category_setting_id`), UNIQUE KEY `category_settings_unique` (`category_id`,`locale`,`setting_name`), KEY `category_settings_category_id` (`category_id`), CONSTRAINT `category_settings_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`category_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about categories, including localized properties such as names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category_settings` -- LOCK TABLES `category_settings` WRITE; /*!40000 ALTER TABLE `category_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `category_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `citation_settings` -- DROP TABLE IF EXISTS `citation_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `citation_settings` ( `citation_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `citation_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`citation_setting_id`), UNIQUE KEY `citation_settings_unique` (`citation_id`,`locale`,`setting_name`), KEY `citation_settings_citation_id` (`citation_id`), CONSTRAINT `citation_settings_citation_id` FOREIGN KEY (`citation_id`) REFERENCES `citations` (`citation_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Additional data about citations, including localized content.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `citation_settings` -- LOCK TABLES `citation_settings` WRITE; /*!40000 ALTER TABLE `citation_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `citation_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `citations` -- DROP TABLE IF EXISTS `citations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `citations` ( `citation_id` bigint(20) NOT NULL AUTO_INCREMENT, `publication_id` bigint(20) NOT NULL, `raw_citation` text NOT NULL, `seq` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`citation_id`), UNIQUE KEY `citations_publication_seq` (`publication_id`,`seq`), KEY `citations_publication` (`publication_id`), CONSTRAINT `citations_publication` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A citation made by an associated publication.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `citations` -- LOCK TABLES `citations` WRITE; /*!40000 ALTER TABLE `citations` DISABLE KEYS */; /*!40000 ALTER TABLE `citations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `completed_payments` -- DROP TABLE IF EXISTS `completed_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `completed_payments` ( `completed_payment_id` bigint(20) NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `payment_type` bigint(20) NOT NULL, `context_id` bigint(20) NOT NULL, `user_id` bigint(20) DEFAULT NULL, `assoc_id` bigint(20) DEFAULT NULL, `amount` double(8,2) NOT NULL, `currency_code_alpha` varchar(3) DEFAULT NULL, `payment_method_plugin_name` varchar(80) DEFAULT NULL, PRIMARY KEY (`completed_payment_id`), KEY `completed_payments_context_id` (`context_id`), KEY `completed_payments_user_id` (`user_id`), CONSTRAINT `completed_payments_context_id` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `completed_payments_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of completed (fulfilled) payments relating to a payment type such as a subscription payment.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `completed_payments` -- LOCK TABLES `completed_payments` WRITE; /*!40000 ALTER TABLE `completed_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `completed_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `controlled_vocab_entries` -- DROP TABLE IF EXISTS `controlled_vocab_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `controlled_vocab_entries` ( `controlled_vocab_entry_id` bigint(20) NOT NULL AUTO_INCREMENT, `controlled_vocab_id` bigint(20) NOT NULL, `seq` double(8,2) DEFAULT NULL, PRIMARY KEY (`controlled_vocab_entry_id`), KEY `controlled_vocab_entries_controlled_vocab_id` (`controlled_vocab_id`), KEY `controlled_vocab_entries_cv_id` (`controlled_vocab_id`,`seq`), CONSTRAINT `controlled_vocab_entries_controlled_vocab_id_foreign` FOREIGN KEY (`controlled_vocab_id`) REFERENCES `controlled_vocabs` (`controlled_vocab_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='The order that a word or phrase used in a controlled vocabulary should appear. For example, the order of keywords in a publication.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `controlled_vocab_entries` -- LOCK TABLES `controlled_vocab_entries` WRITE; /*!40000 ALTER TABLE `controlled_vocab_entries` DISABLE KEYS */; /*!40000 ALTER TABLE `controlled_vocab_entries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `controlled_vocab_entry_settings` -- DROP TABLE IF EXISTS `controlled_vocab_entry_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `controlled_vocab_entry_settings` ( `controlled_vocab_entry_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `controlled_vocab_entry_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`controlled_vocab_entry_setting_id`), UNIQUE KEY `c_v_e_s_pkey` (`controlled_vocab_entry_id`,`locale`,`setting_name`), KEY `c_v_e_s_entry_id` (`controlled_vocab_entry_id`), CONSTRAINT `c_v_e_s_entry_id` FOREIGN KEY (`controlled_vocab_entry_id`) REFERENCES `controlled_vocab_entries` (`controlled_vocab_entry_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about a controlled vocabulary entry, including localized properties such as the actual word or phrase.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `controlled_vocab_entry_settings` -- LOCK TABLES `controlled_vocab_entry_settings` WRITE; /*!40000 ALTER TABLE `controlled_vocab_entry_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `controlled_vocab_entry_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `controlled_vocabs` -- DROP TABLE IF EXISTS `controlled_vocabs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `controlled_vocabs` ( `controlled_vocab_id` bigint(20) NOT NULL AUTO_INCREMENT, `symbolic` varchar(64) NOT NULL, `assoc_type` bigint(20) NOT NULL DEFAULT 0, `assoc_id` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`controlled_vocab_id`), UNIQUE KEY `controlled_vocab_symbolic` (`symbolic`,`assoc_type`,`assoc_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Every word or phrase used in a controlled vocabulary. Controlled vocabularies are used for submission metadata like keywords and subjects, reviewer interests, and wherever a similar dictionary of words or phrases is required. Each entry corresponds to a word or phrase like "cellular reproduction" and a type like "submissionKeyword".'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `controlled_vocabs` -- LOCK TABLES `controlled_vocabs` WRITE; /*!40000 ALTER TABLE `controlled_vocabs` DISABLE KEYS */; INSERT INTO `controlled_vocabs` VALUES (1,'interest',0,0); /*!40000 ALTER TABLE `controlled_vocabs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_issue_orders` -- DROP TABLE IF EXISTS `custom_issue_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `custom_issue_orders` ( `custom_issue_order_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `issue_id` bigint(20) NOT NULL, `journal_id` bigint(20) NOT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, PRIMARY KEY (`custom_issue_order_id`), UNIQUE KEY `custom_issue_orders_unique` (`issue_id`), KEY `custom_issue_orders_issue_id` (`issue_id`), KEY `custom_issue_orders_journal_id` (`journal_id`), CONSTRAINT `custom_issue_orders_issue_id` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE, CONSTRAINT `custom_issue_orders_journal_id` FOREIGN KEY (`journal_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Ordering information for the issue list, when custom issue ordering is specified.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_issue_orders` -- LOCK TABLES `custom_issue_orders` WRITE; /*!40000 ALTER TABLE `custom_issue_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `custom_issue_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_section_orders` -- DROP TABLE IF EXISTS `custom_section_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `custom_section_orders` ( `custom_section_order_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `issue_id` bigint(20) NOT NULL, `section_id` bigint(20) NOT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, PRIMARY KEY (`custom_section_order_id`), UNIQUE KEY `custom_section_orders_unique` (`issue_id`,`section_id`), KEY `custom_section_orders_issue_id` (`issue_id`), KEY `custom_section_orders_section_id` (`section_id`), CONSTRAINT `custom_section_orders_issue_id` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE, CONSTRAINT `custom_section_orders_section_id` FOREIGN KEY (`section_id`) REFERENCES `sections` (`section_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Ordering information for sections within issues, when issue-specific section ordering is specified.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_section_orders` -- LOCK TABLES `custom_section_orders` WRITE; /*!40000 ALTER TABLE `custom_section_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `custom_section_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `data_object_tombstone_oai_set_objects` -- DROP TABLE IF EXISTS `data_object_tombstone_oai_set_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `data_object_tombstone_oai_set_objects` ( `object_id` bigint(20) NOT NULL AUTO_INCREMENT, `tombstone_id` bigint(20) NOT NULL, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, PRIMARY KEY (`object_id`), KEY `data_object_tombstone_oai_set_objects_tombstone_id` (`tombstone_id`), CONSTRAINT `data_object_tombstone_oai_set_objects_tombstone_id` FOREIGN KEY (`tombstone_id`) REFERENCES `data_object_tombstones` (`tombstone_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Relationships between tombstones and other data that can be collected in OAI sets, e.g. sections.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `data_object_tombstone_oai_set_objects` -- LOCK TABLES `data_object_tombstone_oai_set_objects` WRITE; /*!40000 ALTER TABLE `data_object_tombstone_oai_set_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `data_object_tombstone_oai_set_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `data_object_tombstone_settings` -- DROP TABLE IF EXISTS `data_object_tombstone_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `data_object_tombstone_settings` ( `tombstone_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tombstone_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`tombstone_setting_id`), UNIQUE KEY `data_object_tombstone_settings_unique` (`tombstone_id`,`locale`,`setting_name`), KEY `data_object_tombstone_settings_tombstone_id` (`tombstone_id`), CONSTRAINT `data_object_tombstone_settings_tombstone_id` FOREIGN KEY (`tombstone_id`) REFERENCES `data_object_tombstones` (`tombstone_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about data object tombstones, including localized content.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `data_object_tombstone_settings` -- LOCK TABLES `data_object_tombstone_settings` WRITE; /*!40000 ALTER TABLE `data_object_tombstone_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `data_object_tombstone_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `data_object_tombstones` -- DROP TABLE IF EXISTS `data_object_tombstones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `data_object_tombstones` ( `tombstone_id` bigint(20) NOT NULL AUTO_INCREMENT, `data_object_id` bigint(20) NOT NULL, `date_deleted` datetime NOT NULL, `set_spec` varchar(255) NOT NULL, `set_name` varchar(255) NOT NULL, `oai_identifier` varchar(255) NOT NULL, PRIMARY KEY (`tombstone_id`), KEY `data_object_tombstones_data_object_id` (`data_object_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Entries for published data that has been removed. Usually used in the OAI endpoint.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `data_object_tombstones` -- LOCK TABLES `data_object_tombstones` WRITE; /*!40000 ALTER TABLE `data_object_tombstones` DISABLE KEYS */; /*!40000 ALTER TABLE `data_object_tombstones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `doi_settings` -- DROP TABLE IF EXISTS `doi_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `doi_settings` ( `doi_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `doi_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`doi_setting_id`), UNIQUE KEY `doi_settings_unique` (`doi_id`,`locale`,`setting_name`), KEY `doi_settings_doi_id` (`doi_id`), CONSTRAINT `doi_settings_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about DOIs, including the registration agency.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `doi_settings` -- LOCK TABLES `doi_settings` WRITE; /*!40000 ALTER TABLE `doi_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `doi_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dois` -- DROP TABLE IF EXISTS `dois`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dois` ( `doi_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `doi` varchar(255) NOT NULL, `status` smallint(6) NOT NULL DEFAULT 1, PRIMARY KEY (`doi_id`), KEY `dois_context_id` (`context_id`), CONSTRAINT `dois_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Stores all DOIs used in the system.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dois` -- LOCK TABLES `dois` WRITE; /*!40000 ALTER TABLE `dois` DISABLE KEYS */; /*!40000 ALTER TABLE `dois` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `edit_decisions` -- DROP TABLE IF EXISTS `edit_decisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `edit_decisions` ( `edit_decision_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `review_round_id` bigint(20) DEFAULT NULL, `stage_id` bigint(20) DEFAULT NULL, `round` smallint(6) DEFAULT NULL, `editor_id` bigint(20) NOT NULL, `decision` smallint(6) NOT NULL COMMENT 'A numeric constant indicating the decision that was taken. Possible values are listed in the Decision class.', `date_decided` datetime NOT NULL, PRIMARY KEY (`edit_decision_id`), KEY `edit_decisions_submission_id` (`submission_id`), KEY `edit_decisions_editor_id` (`editor_id`), KEY `edit_decisions_review_round_id` (`review_round_id`), CONSTRAINT `edit_decisions_editor_id` FOREIGN KEY (`editor_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE, CONSTRAINT `edit_decisions_review_round_id_foreign` FOREIGN KEY (`review_round_id`) REFERENCES `review_rounds` (`review_round_id`) ON DELETE CASCADE, CONSTRAINT `edit_decisions_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Editorial decisions recorded on a submission, such as decisions to accept or decline the submission, as well as decisions to send for review, send to copyediting, request revisions, and more.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `edit_decisions` -- LOCK TABLES `edit_decisions` WRITE; /*!40000 ALTER TABLE `edit_decisions` DISABLE KEYS */; /*!40000 ALTER TABLE `edit_decisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_log` -- DROP TABLE IF EXISTS `email_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `email_log` ( `log_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `sender_id` bigint(20) NOT NULL, `date_sent` datetime NOT NULL, `event_type` bigint(20) DEFAULT NULL, `from_address` varchar(255) DEFAULT NULL, `recipients` text DEFAULT NULL, `cc_recipients` text DEFAULT NULL, `bcc_recipients` text DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `body` text DEFAULT NULL, PRIMARY KEY (`log_id`), KEY `email_log_assoc` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A record of email messages that are sent in relation to an associated entity, such as a submission.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_log` -- LOCK TABLES `email_log` WRITE; /*!40000 ALTER TABLE `email_log` DISABLE KEYS */; /*!40000 ALTER TABLE `email_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_log_users` -- DROP TABLE IF EXISTS `email_log_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `email_log_users` ( `email_log_user_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email_log_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`email_log_user_id`), UNIQUE KEY `email_log_user_id` (`email_log_id`,`user_id`), KEY `email_log_users_email_log_id` (`email_log_id`), KEY `email_log_users_user_id` (`user_id`), CONSTRAINT `email_log_users_email_log_id_foreign` FOREIGN KEY (`email_log_id`) REFERENCES `email_log` (`log_id`) ON DELETE CASCADE, CONSTRAINT `email_log_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A record of users associated with an email log entry.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_log_users` -- LOCK TABLES `email_log_users` WRITE; /*!40000 ALTER TABLE `email_log_users` DISABLE KEYS */; /*!40000 ALTER TABLE `email_log_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_templates` -- DROP TABLE IF EXISTS `email_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `email_templates` ( `email_id` bigint(20) NOT NULL AUTO_INCREMENT, `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.', `context_id` bigint(20) NOT NULL, `alternate_to` varchar(255) DEFAULT NULL, PRIMARY KEY (`email_id`), UNIQUE KEY `email_templates_email_key` (`email_key`,`context_id`), KEY `email_templates_context_id` (`context_id`), KEY `email_templates_alternate_to` (`alternate_to`), CONSTRAINT `email_templates_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Custom email templates created by each context, and overrides of the default templates.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_templates` -- LOCK TABLES `email_templates` WRITE; /*!40000 ALTER TABLE `email_templates` DISABLE KEYS */; INSERT INTO `email_templates` VALUES (1,'COPYEDIT_REQUEST',1,'DISCUSSION_NOTIFICATION_COPYEDITING'),(2,'EDITOR_ASSIGN_SUBMISSION',1,'DISCUSSION_NOTIFICATION_SUBMISSION'),(3,'EDITOR_ASSIGN_REVIEW',1,'DISCUSSION_NOTIFICATION_REVIEW'),(4,'EDITOR_ASSIGN_PRODUCTION',1,'DISCUSSION_NOTIFICATION_PRODUCTION'),(5,'LAYOUT_REQUEST',1,'DISCUSSION_NOTIFICATION_PRODUCTION'),(6,'LAYOUT_COMPLETE',1,'DISCUSSION_NOTIFICATION_PRODUCTION'); /*!40000 ALTER TABLE `email_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_templates_default_data` -- DROP TABLE IF EXISTS `email_templates_default_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `email_templates_default_data` ( `email_templates_default_data_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.', `locale` varchar(14) NOT NULL DEFAULT 'en', `name` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `body` text DEFAULT NULL, PRIMARY KEY (`email_templates_default_data_id`), UNIQUE KEY `email_templates_default_data_unique` (`email_key`,`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Default email templates created for every installed locale.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_templates_default_data` -- LOCK TABLES `email_templates_default_data` WRITE; /*!40000 ALTER TABLE `email_templates_default_data` DISABLE KEYS */; INSERT INTO `email_templates_default_data` VALUES (1,'PASSWORD_RESET_CONFIRM','en','Password Reset Confirm','Password Reset Confirmation','We have received a request to reset your password for the {$siteTitle} web site.<br />\n<br />\nIf you did not make this request, please ignore this email and your password will not be changed. If you wish to reset your password, click on the below URL.<br />\n<br />\nReset my password: {$passwordResetUrl}<br />\n<br />\n{$siteContactName}'),(2,'USER_REGISTER','en','User Created','Journal Registration','{$recipientName}<br />\n<br />\nYou have now been registered as a user with {$journalName}. We have included your username and password in this email, which are needed for all work with this journal through its website. At any point, you can ask to be removed from the journal\'s list of users by contacting me.<br />\n<br />\nUsername: {$recipientUsername}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$signature}'),(3,'USER_VALIDATE_CONTEXT','en','Validate Email (Journal Registration)','Validate Your Account','{$recipientName}<br />\n<br />\nYou have created an account with {$journalName}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$journalSignature}'),(4,'USER_VALIDATE_SITE','en','Validate Email (Site)','Validate Your Account','{$recipientName}<br />\n<br />\nYou have created an account with {$siteTitle}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$siteSignature}'),(5,'REVIEWER_REGISTER','en','Reviewer Register','Registration as Reviewer with {$journalName}','<p>Dear {$recipientName},</p><p>In light of your expertise, we have registered your name in the reviewer database for {$journalName}. This does not entail any form of commitment on your part, but simply enables us to approach you with a submission to possibly review. On being invited to review, you will have an opportunity to see the title and abstract of the paper in question, and you\'ll always be in a position to accept or decline the invitation. You can also ask at any point to have your name removed from this reviewer list.</p><p>We are providing you with a username and password, which is used in all interactions with the journal through its website. You may wish, for example, to update your profile, including your reviewing interests.</p><p>Username: {$recipientUsername}<br />Password: {$password}</p><p>Thank you,</p>{$signature}'),(6,'ISSUE_PUBLISH_NOTIFY','en','Issue Published Notify','Just published: {$issueIdentification} of {$journalName}','<p>Dear {$recipientName},</p><p>We are pleased to announce the publication of <a href=\"{$issueUrl}\">{$issueIdentification}</a> of {$journalName}. We invite you to read and share this work with your scholarly community.</p><p>Many thanks to our authors, reviewers, and editors for their valuable contributions, and to our readers for your continued interest.</p><p>Thank you,</p>{$signature}'),(7,'SUBMISSION_ACK','en','Submission Confirmation','Thank you for your submission to {$journalName}','<p>Dear {$recipientName},</p><p>Thank you for your submission to {$journalName}. We have received your submission, {$submissionTitle}, and a member of our editorial team will see it soon. You will be sent an email when an initial decision is made, and we may contact you for further information.</p><p>You can view your submission and track its progress through the editorial process at the following location:</p><p>Submission URL: {$authorSubmissionUrl}</p><p>If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>Thank you for considering {$journalName} as a venue for your work.</p>{$journalSignature}'),(8,'SUBMISSION_ACK_NOT_USER','en','Submission Confirmation (Other Authors)','Submission confirmation','<p>Dear {$recipientName},</p><p>You have been named as a co-author on a submission to {$journalName}. The submitter, {$submitterName}, provided the following details:</p><p>{$submissionTitle}<br>{$authorsWithAffiliation}</p><p>If any of these details are incorrect, or you do not wish to be named on this submission, please contact me.</p><p>Thank you for considering {$journalName} as a venue for your work.</p><p>Kind regards,</p>{$journalSignature}'),(9,'EDITOR_ASSIGN','en','Editor Assigned','You have been assigned as an editor on a submission to {$journalName}','<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the editorial process.</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>If you find the submission to be relevant for {$journalName}, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".</p><p>If the submission is not appropriate for this journal, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$journalSignature}'),(10,'REVIEW_CANCEL','en','Reviewer Unassign','Request for Review Cancelled','<p>Dear {$recipientName},</p><p>Recently, we asked you to review a submission to {$journalName}. We have decided to cancel the request for you to reivew the submission, {$submissionTitle}.</p><p>We apologize any inconvenience this may cause you and hope that we will be able to call on you to assist with this journal\'s review process in the future.</p><p>If you have any questions, please contact me.</p>{$signature}'),(11,'REVIEW_REINSTATE','en','Reviewer Reinstate','Can you still review something for {$journalName}?','<p>Dear {$recipientName},</p><p>We recently cancelled our request for you to review a submission, {$submissionTitle}, for {$journalName}. We\'ve reversed that decision and we hope that you are still able to conduct the review.</p><p>If you are able to assist with this submission\'s review, you can <a href=\"{$reviewAssignmentUrl}\">login to the journal</a> to view the submission, upload review files, and submit your review request.</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p>{$signature}'),(12,'REVIEW_RESEND_REQUEST','en','Resend Review Request to Reviewer','Requesting your review again for {$journalName}','<p>Dear {$recipientName},</p><p>Recently, you declined our request to review a submission, {$submissionTitle}, for {$journalName}. I\'m writing to see if you are able to conduct the review after all.</p><p>We would be grateful if you\'re able to perform this review, but we understand if that is not possible at this time. Either way, please <a href=\"{$reviewAssignmentUrl}\">accept or decline the request</a> by {$responseDueDate}, so that we can find an alternate reviewer.</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p>{$signature}'),(13,'REVIEW_REQUEST','en','Review Request','Invitation to review','<p>Dear {$recipientName},</p><p>I believe that you would serve as an excellent reviewer for a submission to {$journalName}. The submission\'s title and abstract are below, and I hope that you will consider undertaking this important task for us.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can view the submission, upload review files, and submit your review by logging into the journal site and following the steps at the link below.</p><p><a href=\"{$reviewAssignmentUrl}\">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please <a href=\"{$reviewAssignmentUrl}\">accept or decline</a> the review by <b>{$responseDueDate}</b>.</p><p>You may contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$signature}'),(14,'REVIEW_REQUEST_SUBSEQUENT','en','Review Request Subsequent','Request to review a revised submission','<p>Dear {$recipientName},</p><p>Thank you for your review of <a href=\"{$reviewAssignmentUrl}\">{$submissionTitle}</a>. The authors have considered the reviewers\' feedback and have now submitted a revised version of their work. I\'m writing to ask if you would conduct a second round of peer review for this submission.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can <a href=\"{$reviewAssignmentUrl}\">follow the review steps</a> to view the submission, upload review files, and submit your review comments.<p><p><a href=\"{$reviewAssignmentUrl}\">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please <a href=\"{$reviewAssignmentUrl}\">accept or decline</a> the review by <b>{$responseDueDate}</b>.</p><p>Please feel free to contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$signature}'),(15,'REVIEW_RESPONSE_OVERDUE_AUTO','en','Review Response Overdue (Automated)','Will you be able to review this for us?','<p>Dear {$recipientName},</p><p>This email is an automated reminder from {$journalName} in regards to our request for your review of the submission, \"{$submissionTitle}.\"</p><p>You are receiving this email because we have not yet received a confirmation from you indicating whether or not you are able to undertake the review of this submission.</p><p>Please let us know whether or not you are able to undertake this review by using our submission management software to accept or decline this request.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can follow the review steps to view the submission, upload review files, and submit your review comments.</p><p><a href=\"{$reviewAssignmentUrl}\">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please feel free to contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$journalSignature}'),(16,'REVIEW_CONFIRM','en','Review Confirm','Review accepted: {$reviewerName} accepted review assignment for #{$submissionId} {$authorsShort} — {$submissionTitle}','<p>Dear {$recipientName},</p><p>{$reviewerName} has accepted the following review:</p><p><a href=\"{$submissionUrl}\">#{$submissionId} {$authorsShort} — {$submissionTitle}</a><br /><b>Type:</b> {$reviewMethod}</p><p><b>Review Due:</b> {$reviewDueDate}</p><p>Login to <a href=\"{$submissionUrl}\">view all reviewer assignments</a> for this submission.</p><br><br>—<br>This is an automated message from <a href=\"{$journalUrl}\">{$journalName}</a>.'),(17,'REVIEW_DECLINE','en','Review Decline','Unable to Review','Editors:<br />\n<br />\nI am afraid that at this time I am unable to review the submission, "{$submissionTitle}," for {$journalName}. Thank you for thinking of me, and another time feel free to call on me.<br />\n<br />\n{$senderName}'),(18,'REVIEW_ACK','en','Review Acknowledgement','Thank you for your review','<p>Dear {$recipientName},</p>\n<p>Thank you for completing your review of the submission, {$submissionTitle}, for {$journalName}. We appreciate your time and expertise in contributing to the quality of the work that we publish.</p>\n<p>It has been a pleasure to work with you as a reviewer for {$journalName}, and we hope to have the opportunity to work with you again in the future.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>'),(19,'REVIEW_REMIND','en','Review Reminder','A reminder to please complete your review','<p>Dear {$recipientName},</p><p>Just a gentle reminder of our request for your review of the submission, \"{$submissionTitle},\" for {$journalName}. We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are able to prepare it.</p><p>You can <a href=\"{$reviewAssignmentUrl}\">login to the journal</a> and follow the review steps to view the submission, upload review files, and submit your review comments.</p><p>If you need an extension of the deadline, please contact me. I look forward to hearing from you.</p><p>Thank you in advance and kind regards,</p>{$signature}'),(20,'REVIEW_REMIND_AUTO','en','Review Reminder (Automated)','A reminder to please complete your review','<p>Dear {$recipientName}:</p><p>This email is an automated reminder from {$journalName} in regards to our request for your review of the submission, \"{$submissionTitle}.\"</p><p>We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are able to prepare it.</p><p>Please <a href=\"{$reviewAssignmentUrl}\">login to the journal</a> and follow the review steps to view the submission, upload review files, and submit your review comments.</p><p>If you need an extension of the deadline, please contact me. I look forward to hearing from you.</p><p>Thank you in advance and kind regards,</p>{$journalSignature}'),(21,'REVIEW_COMPLETE','en','Review Completed','Review complete: {$reviewerName} recommends {$reviewRecommendation} for #{$submissionId} {$authorsShort} — {$submissionTitle}','<p>Dear {$recipientName},</p><p>{$reviewerName} completed the following review:</p><p><a href=\"{$submissionUrl}\">#{$submissionId} {$authorsShort} — {$submissionTitle}</a><br /><b>Recommendation:</b> {$reviewRecommendation}<br /><b>Type:</b> {$reviewMethod}</p><p>Login to <a href=\"{$submissionUrl}\">view all files and comments</a> provided by this reviewer.</p>'),(22,'REVIEW_EDIT','en','Review Edited','Your review assignment has been changed for {$journalName}','<p>Dear {$recipientName},</p><p>An editor has made changes to your review assignment for {$journalName}. Please review the details below and let us know if you have any questions.</p><p><a href=\"{$reviewAssignmentUrl}\">{$submissionTitle}</a><br /><b>Type:</b> {$reviewMethod}<br /><b>Accept or Decline By:</b> {$responseDueDate}<br /><b>Submit Review By:</b> {$reviewDueDate}</p><p>You can login to <a href=\"{$reviewAssignmentUrl}\">complete this review</a> at any time.</p>'),(23,'EDITOR_DECISION_ACCEPT','en','Submission Accepted','Your submission has been accepted to {$journalName}','<p>Dear {$recipientName},</p><p>I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, {$submissionTitle}, to meet or exceed our expectations. We are excited to publish your piece in {$journalName} and we thank you for choosing our journal as a venue for your work.</p><p>Your submission is now forthcoming in a future issue of {$journalName} and you are welcome to include it in your list of publications. We recognize the hard work that goes into every successful submission and we want to congratulate you on reaching this stage.</p><p>Your submission will now undergo copy editing and formatting to prepare it for publication.</p><p>You will shortly receive further instructions.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'),(24,'EDITOR_DECISION_SEND_TO_EXTERNAL','en','Sent to Review','Your submission has been sent for review','<p>Dear {$recipientName},</p><p>I am pleased to inform you that an editor has reviewed your submission, {$submissionTitle}, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.</p><p>{$reviewTypeDescription} You will hear from us with feedback from the reviewers and information about the next steps.</p><p>Please note that sending the submission to peer review does not guarantee that it will be published. We will consider the reviewers\' recommendations before deciding to accept the submission for publication. You may be asked to make revisions and respond to the reviewers\' comments before a final decision is made.</p><p>If you have any questions, please contact me from your submission dashboard.</p><p>{$signature}</p>'),(25,'EDITOR_DECISION_SEND_TO_PRODUCTION','en','Sent to Production','Next steps for publishing your submission','<p>Dear {$recipientName},</p><p>I am writing from {$journalName} to let you know that the editing of your submission, {$submissionTitle}, is complete. Your submission will now advance to the production stage, where the final galleys will be prepared for publication. We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'),(26,'EDITOR_DECISION_REVISIONS','en','Revisions Requested','Your submission has been reviewed and we encourage you to submit revisions','<p>Dear {$recipientName},</p><p>Your submission {$submissionTitle} has been reviewed and we would like to encourage you to submit revisions that address the reviewers\' comments. An editor will review these revisions and if they address the concerns adequately, your submission may be accepted for publication.</p><p>The reviewers\' comments are included at the bottom of this email. Please respond to each point in the reviewers\' comments and identify what changes you have made. If you find any of the reviewer\'s comments to be unjustified or inappropriate, please explain your perspective.</p><p>When you have completed your revisions, you can upload revised documents along with your response to the reviewers\' comments at your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>. If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>We look forward to receiving your revised submission.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),(27,'EDITOR_DECISION_RESUBMIT','en','Resubmit for Review','Your submission has been reviewed - please revise and resubmit','<p>Dear {$recipientName},</p><p>After reviewing your submission, {$submissionTitle}, the reviewers have recommended that your submission cannot be accepted for publication in its current form. However, we would like to encourage you to submit a revised version that addresses the reviewers\' comments. Your revisions will be reviewed by an editor and may be sent out for another round of peer review.</p><p>Please note that resubmitting your work does not guarantee that it will be accepted.</p><p>The reviewers\' comments are included at the bottom of this email. Please respond to each point and identify what changes you have made. If you find any of the reviewer\'s comments inappropriate, please explain your perspective. If you have questions about the recommendations in your review, please include these in your response.</p><p>When you have completed your revisions, you can upload revised documents along with your response to the reviewers\' comments <a href=\"{$authorSubmissionUrl}\">at your submission dashboard</a>. If you have been logged out, you can login again with the username {$recipientUsername}.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>We look forward to receiving your revised submission.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),(28,'EDITOR_DECISION_DECLINE','en','Submission Declined','Your submission has been declined','<p>Dear {$recipientName},</p><p>While we appreciate receiving your submission, we are unable to accept {$submissionTitle} for publication on the basis of the comments from reviewers.</p><p>The reviewers\' comments are included at the bottom of this email.</p><p>Thank you for submitting to {$journalName}. Although it is disappointing to have a submission declined, I hope you find the reviewers\' comments to be constructive and helpful.</p><p>You are now free to submit the work elsewhere if you choose to do so.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),(29,'EDITOR_DECISION_INITIAL_DECLINE','en','Submission Declined (Pre-Review)','Your submission has been declined','<p>Dear {$recipientName},</p><p>I’m sorry to inform you that, after reviewing your submission, {$submissionTitle}, the editor has found that it does not meet our requirements for publication in {$journalName}.</p><p>I wish you success if you consider submitting your work elsewhere.</p><p>Kind regards,</p>{$signature}'),(30,'EDITOR_RECOMMENDATION','en','Recommendation Made','Editor Recommendation','<p>Dear {$recipientName},</p><p>After considering the reviewers\' feedback, I would like to make the following recommendation regarding the submission {$submissionTitle}.</p><p>My recommendation is: {$recommendation}.</p><p>Please visit the submission\'s <a href=\"{$submissionUrl}\">editorial workflow</a> to act on this recommendation.</p><p>Please feel free to contact me with any questions.</p><p>Kind regards,</p><p>{$senderName}</p>'),(31,'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS','en','Notify Other Authors','An update regarding your submission','<p>The following email was sent to {$submittingAuthorName} from {$journalName} regarding {$submissionTitle}.</p>\n<p>You are receiving a copy of this notification because you are identified as an author of the submission. Any instructions in the message below are intended for the submitting author, {$submittingAuthorName}, and no action is required of you at this time.</p>\n\n{$messageToSubmittingAuthor}'),(32,'EDITOR_DECISION_NOTIFY_REVIEWERS','en','Notify Reviewers of Decision','Thank you for your review','<p>Dear {$recipientName},</p>\n<p>Thank you for completing your review of the submission, {$submissionTitle}, for {$journalName}. We appreciate your time and expertise in contributing to the quality of the work that we publish. We have shared your comments with the authors, along with our other reviewers\' comments and the editor\'s decision.</p>\n<p>Based on the feedback we received, we have notified the authors of the following:</p>\n<p>{$decisionDescription}</p>\n<p>Your recommendation was considered alongside the recommendations of other reviewers before coming to a decision. Occasionally the editor\'s decision may differ from the recommendation made by one or more reviewers. The editor considers many factors, and does not take these decisions lightly. We are grateful for our reviewers\' expertise and suggestions.</p>\n<p>It has been a pleasure to work with you as a reviewer for {$journalName}, and we hope to have the opportunity to work with you again in the future.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>'),(33,'EDITOR_DECISION_NEW_ROUND','en','New Review Round Initiated','Your submission has been sent for another round of review','<p>Dear {$recipientName},</p>\n<p>Your revised submission, {$submissionTitle}, has been sent for a new round of peer review. \nYou will hear from us with feedback from the reviewers and information about the next steps.</p>\n<p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),(34,'EDITOR_DECISION_REVERT_DECLINE','en','Reinstate Declined Submission','We have reversed the decision to decline your submission','<p>Dear {$recipientName},</p>\n<p>The decision to decline your submission, {$submissionTitle}, has been reversed. \nAn editor will complete the round of review and you will be notified when a \ndecision is made.</p>\n<p>Occasionally, a decision to decline a submission will be recorded accidentally in \nour system and must be reverted. I apologize for any confusion this may have caused.</p>\n<p>We will contact you if we need any further assistance.</p>\n<p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),(35,'EDITOR_DECISION_REVERT_INITIAL_DECLINE','en','Reinstate Submission Declined Without Review','We have reversed the decision to decline your submission','<p>Dear {$recipientName},</p>\n<p>The decision to decline your submission, {$submissionTitle}, has been reversed. \nAn editor will look further at your submission before deciding whether to decline \nthe submission or send it for review.</p>\n<p>Occasionally, a decision to decline a submission will be recorded accidentally in \nour system and must be reverted. I apologize for any confusion this may have caused.</p>\n<p>We will contact you if we need any further assistance.</p>\n<p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),(36,'EDITOR_DECISION_SKIP_REVIEW','en','Submission Accepted (Without Review)','Your submission has been sent for copyediting','<p>Dear {$recipientName},</p>\n<p>I am pleased to inform you that we have decided to accept your submission without peer review. We found your submission, {$submissionTitle}, to meet our expectations, and we do not require that work of this type undergo peer review. We are excited to publish your piece in {$journalName} and we thank you for choosing our journal as a venue for your work.</p>\nYour submission is now forthcoming in a future issue of {$journalName} and you are welcome to include it in your list of publications. We recognize the hard work that goes into every successful submission and we want to congratulate you on your efforts.</p>\n<p>Your submission will now undergo copy editing and formatting to prepare it for publication. </p>\n<p>You will shortly receive further instructions.</p>\n<p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>\n'),(37,'EDITOR_DECISION_BACK_FROM_PRODUCTION','en','Submission Sent Back to Copyediting','Your submission has been sent back to copyediting','<p>Dear {$recipientName},</p><p>Your submission, {$submissionTitle}, has been sent back to the copyediting stage, where it will undergo further copyediting and formatting to prepare it for publication.</p><p>Occasionally, a submission is sent to the production stage before it is ready for the final galleys to be prepared for publication. Your submission is still forthcoming. I apologize for any confusion.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>We will contact you if we need any further assistance.</p><p>Kind regards,</p><p>{$signature}</p>'),(38,'EDITOR_DECISION_BACK_FROM_COPYEDITING','en','Submission Sent Back from Copyediting','Your submission has been sent back to review','<p>Dear {$recipientName},</p><p>Your submission, {$submissionTitle}, has been sent back to the review stage. It will undergo further review before it can be accepted for publication.</p><p>Occasionally, a decision to accept a submission will be recorded accidentally in our system and we must send it back to review. I apologize for any confusion this has caused. We will work to complete any further review quickly so that you have a final decision as soon as possible.</p><p>We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>Kind regards,</p><p>{$signature}</p>'),(39,'EDITOR_DECISION_CANCEL_REVIEW_ROUND','en','Review Round Cancelled','A review round for your submission has been cancelled','<p>Dear {$recipientName},</p><p>We recently opened a new review round for your submission, {$submissionTitle}. We are closing this review round now.</p><p>Occasionally, a decision to open a round of review will be recorded accidentally in our system and we must cancel this review round. I apologize for any confusion this may have caused.</p><p>We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href=\"{$authorSubmissionUrl}\">submission dashboard</a>.</p><p>Kind regards,</p><p>{$signature}</p>'),(40,'SUBSCRIPTION_NOTIFY','en','Subscription Notify','Subscription Notification','{$recipientName}:<br />\n<br />\nYou have now been registered as a subscriber in our online journal management system for {$journalName}, with the following subscription:<br />\n<br />\n{$subscriptionType}<br />\n<br />\nTo access content that is available only to subscribers, simply log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nOnce you have logged in to the system you can change your profile details and password at any point.<br />\n<br />\nPlease note that if you have an institutional subscription, there is no need for users at your institution to log in, since requests for subscription content will be automatically authenticated by the system.<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),(41,'OPEN_ACCESS_NOTIFY','en','Open Access Notify','Free to read: {$issueIdentification} of {$journalName} is now open access','<p>Dear {$recipientName},</p><p>We are pleased to inform you that <a href=\"{$issueUrl}\">{$issueIdentification}</a> of {$journalName} is now available under open access. A subscription is no longer required to read this issue.</p><p>Thank you for your continuing interest in our work.</p>{$journalSignature}'),(42,'SUBSCRIPTION_BEFORE_EXPIRY','en','Subscription Expires Soon','Notice of Subscription Expiry','{$recipientName}:<br />\n<br />\nYour {$journalName} subscription is about to expire.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo ensure the continuity of your access to this journal, please go to the journal website and renew your subscription. You are able to log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),(43,'SUBSCRIPTION_AFTER_EXPIRY','en','Subscription Expired','Subscription Expired','{$recipientName}:<br />\n<br />\nYour {$journalName} subscription has expired.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo renew your subscription, please go to the journal website. You are able to log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),(44,'SUBSCRIPTION_AFTER_EXPIRY_LAST','en','Subscription Expired Last','Subscription Expired - Final Reminder','{$recipientName}:<br />\n<br />\nYour {$journalName} subscription has expired.<br />\nPlease note that this is the final reminder that will be emailed to you.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo renew your subscription, please go to the journal website. You are able to log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),(45,'SUBSCRIPTION_PURCHASE_INDL','en','Purchase Individual Subscription','Subscription Purchase: Individual','An individual subscription has been purchased online for {$journalName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nUser:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),(46,'SUBSCRIPTION_PURCHASE_INSTL','en','Purchase Institutional Subscription','Subscription Purchase: Institutional','An institutional subscription has been purchased online for {$journalName} with the following details. To activate this subscription, please use the provided Subscription URL and set the subscription status to \'Active\'.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nInstitution:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (if provided):<br />\n{$domain}<br />\n<br />\nIP Ranges (if provided):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),(47,'SUBSCRIPTION_RENEW_INDL','en','Renew Individual Subscription','Subscription Renewal: Individual','An individual subscription has been renewed online for {$journalName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nUser:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),(48,'SUBSCRIPTION_RENEW_INSTL','en','Renew Institutional Subscription','Subscription Renewal: Institutional','An institutional subscription has been renewed online for {$journalName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nInstitution:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (if provided):<br />\n{$domain}<br />\n<br />\nIP Ranges (if provided):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),(49,'REVISED_VERSION_NOTIFY','en','Revised Version Notification','Revised Version Uploaded','<p>Dear {$recipientName},</p><p>The author has uploaded revisions for the submission, <b>{$authorsShort} — {$submissionTitle}</b>. <p>As an assigned editor, we ask that you login and <a href=\"{$submissionUrl}\">view the revisions</a> and make a decision to accept, decline or send the submission for further review.</p><br><br>—<br>This is an automated message from <a href=\"{$journalUrl}\">{$journalName}</a>.'),(50,'STATISTICS_REPORT_NOTIFICATION','en','Statistics Report Notification','Editorial activity for {$month}, {$year}','\n{$recipientName}, <br />\n<br />\nYour journal health report for {$month}, {$year} is now available. Your key stats for this month are below.<br />\n<ul>\n <li>New submissions this month: {$newSubmissions}</li>\n <li>Declined submissions this month: {$declinedSubmissions}</li>\n <li>Accepted submissions this month: {$acceptedSubmissions}</li>\n <li>Total submissions in the system: {$totalSubmissions}</li>\n</ul>\nLogin to the journal to view more detailed <a href=\"{$editorialStatsLink}\">editorial trends</a> and <a href=\"{$publicationStatsLink}\">published article stats</a>. A full copy of this month\'s editorial trends is attached.<br />\n<br />\nSincerely,<br />\n{$journalSignature}'),(51,'ANNOUNCEMENT','en','New Announcement','{$announcementTitle}','<b>{$announcementTitle}</b><br />\n<br />\n{$announcementSummary}<br />\n<br />\nVisit our website to read the <a href=\"{$announcementUrl}\">full announcement</a>.'),(52,'DISCUSSION_NOTIFICATION_SUBMISSION','en','Discussion (Submission)','A message regarding {$journalName}','Please enter your message.'),(53,'DISCUSSION_NOTIFICATION_REVIEW','en','Discussion (Review)','A message regarding {$journalName}','Please enter your message.'),(54,'DISCUSSION_NOTIFICATION_COPYEDITING','en','Discussion (Copyediting)','A message regarding {$journalName}','Please enter your message.'),(55,'DISCUSSION_NOTIFICATION_PRODUCTION','en','Discussion (Production)','A message regarding {$journalName}','Please enter your message.'),(56,'COPYEDIT_REQUEST','en','Request Copyedit','Submission {$submissionId} is ready to be copyedited for {$contextAcronym}','<p>Dear {$recipientName},</p><p>A new submission is ready to be copyedited:</p><p><a href\"{$submissionUrl}\">{$submissionId} — {$submissionTitle}</a><br />{$journalName}</p><p>Please follow these steps to complete this task:</p><ol><li>Click on the Submission URL below.</li><li>Open any files available under Draft Files and edit the files. Use the Copyediting Discussions area if you need to contact the editor(s) or author(s).</li><li>Save the copyedited file(s) and upload them to the Copyedited panel.</li><li>Use the Copyediting Discussions to notify the editor(s) that all files have been prepared, and that the Production process may begin.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to {$journalName}.</p><p>Kind regards,</p>{$signature}'),(57,'EDITOR_ASSIGN_SUBMISSION','en','Assign Editor','You have been assigned as an editor on a submission to {$journalName}','<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the editorial process.</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>If you find the submission to be relevant for {$journalName}, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".</p><p>If the submission is not appropriate for this journal, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$journalSignature}'),(58,'EDITOR_ASSIGN_REVIEW','en','Assign Editor','You have been assigned as an editor on a submission to {$journalName}','<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the peer review process.</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please login to <a href=\"{$submissionUrl}\">view the submission</a> and assign qualified reviewers. You can assign a reviewer by clicking \"Add Reviewer\".</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),(59,'EDITOR_ASSIGN_PRODUCTION','en','Assign Editor','You have been assigned as an editor on a submission to {$journalName}','<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the production stage.</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please login to <a href=\"{$submissionUrl}\">view the submission</a>. Once production-ready files are available, upload them under the <strong>Publication > Galleys</strong> section. Then schedule the work for publication by clicking the <strong>Schedule for Publication</strong> button.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),(60,'LAYOUT_REQUEST','en','Ready for Production','Submission {$submissionId} is ready for production at {$contextAcronym}','<p>Dear {$recipientName},</p><p>A new submission is ready for layout editing:</p><p><a href=\"{$submissionUrl}\">{$submissionId} — {$submissionTitle}</a><br />{$journalName}</p><ol><li>Click on the Submission URL above.</li><li>Download the Production Ready files and use them to create the galleys according to the journal\'s standards.</li><li>Upload the galleys to the Publication section of the submission.</li><li>Use the Production Discussions to notify the editor that the galleys are ready.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this journal.</p><p>Kind regards,</p>{$signature}'),(61,'LAYOUT_COMPLETE','en','Galleys Complete','Galleys Complete','<p>Dear {$recipientName},</p><p>Galleys have now been prepared for the following submission and are ready for final review.</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a><br />{$journalName}</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p><p>{$signature}</p>'),(62,'VERSION_CREATED','en','Version Created','A new version was created for {$submissionTitle}','<p>Dear {$recipientName}, </p><p>This is an automated message to inform you that a new version of your submission, {$submissionTitle}, was created. You can view this version from your submission dashboard at the following link:</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a></p><hr><p>This is an automatic email sent from <a href=\"{$journalUrl}\">{$journalName}</a>.</p>'),(63,'EDITORIAL_REMINDER','en','Editorial Reminder','Outstanding editorial tasks for {$journalName}','<p>Dear {$recipientName},</p><p>You are currently assigned to {$numberOfSubmissions} submissions in <a href=\"{$journalUrl}\">{$journalName}</a>. The following submissions are <b>waiting for your response</b>.</p>{$outstandingTasks}<p>View all of your assignments in your <a href=\"{$submissionsUrl}\">submission dashboard</a>.</p><p>If you have any questions about your assignments, please contact {$contactName} at {$contactEmail}.</p>'),(64,'SUBMISSION_SAVED_FOR_LATER','en','Submission Saved for Later','Resume your submission to {$journalName}','<p>Dear {$recipientName},</p><p>Your submission details have been saved in our system, but it has not yet been submitted for consideration. You can return to complete your submission at any time by following the link below.</p><p><a href=\"{$submissionWizardUrl}\">{$authorsShort} — {$submissionTitle}</a></p><hr><p>This is an automated email from <a href=\"{$journalUrl}\">{$journalName}</a>.</p>'),(65,'SUBMISSION_NEEDS_EDITOR','en','Submission Needs Editor','A new submission needs an editor to be assigned: {$submissionTitle}','<p>Dear {$recipientName},</p><p>The following submission has been submitted and there is no editor assigned.</p><p><a href=\"{$submissionUrl}\">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please assign an editor who will be responsible for the submission by clicking the title above and assigning an editor under the Participants section.</p><hr><p>This is an automated email from <a href=\"{$journalUrl}\">{$journalName}</a>.</p>'),(66,'PAYMENT_REQUEST_NOTIFICATION','en','Payment Request','Payment Request Notification','<p>Dear {$recipientName},</p><p>Congratulations on the acceptance of your submission, {$submissionTitle}, to {$journalName}. Now that your submission has been accepted, we would like to request payment of the publication fee.</p><p>This fee covers the production costs of bringing your submission to publication. To make the payment, please visit <a href=\"{$queuedPaymentUrl}\">{$queuedPaymentUrl}</a>.</p><p>If you have any questions, please see our <a href=\"{$submissionGuidelinesUrl}\">Submission Guidelines</a></p>'),(67,'ORCID_COLLECT_AUTHOR_ID','en','orcidCollectAuthorId','Submission ORCID','Dear {$recipientName},<br/>\n<br/>\nYou have been listed as an author on a manuscript submission to {$journalName}.<br/>\nTo confirm your authorship, please add your ORCID id to this submission by visiting the link provided below.<br/>\n<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Register or connect your ORCID iD</a><br/>\n<br/>\n<br>\n<a href=\"{$orcidAboutUrl}\">More information about ORCID at {$journalName}</a><br/>\n<br/>\nIf you have any questions, please contact me.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'),(68,'ORCID_REQUEST_AUTHOR_AUTHORIZATION','en','orcidRequestAuthorAuthorization','Requesting ORCID record access','Dear {$recipientName},<br>\n<br>\nYou have been listed as an author on the manuscript submission \"{$submissionTitle}\" to {$journalName}.\n<br>\n<br>\nPlease allow us to add your ORCID id to this submission and also to add the submission to your ORCID profile on publication.<br>\nVisit the link to the official ORCID website, login with your profile and authorize the access by following the instructions.<br>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://info.orcid.org/wp-content/uploads/2020/12/ORCIDiD_icon16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Register or Connect your ORCID iD</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">More about ORCID at {$journalName}</a><br/>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'),(69,'MANUAL_PAYMENT_NOTIFICATION','en','Manual Payment Notify','Manual Payment Notification','A manual payment needs to be processed for the journal {$journalName} and the user {senderName} (username "{$senderUsername}").<br />\n<br />\nThe item being paid for is "{$paymentName}".<br />\nThe cost is {$paymentAmount} ({$paymentCurrencyCode}).<br />\n<br />\nThis email was generated by Open Journal Systems\' Manual Payment plugin.'); /*!40000 ALTER TABLE `email_templates_default_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_templates_settings` -- DROP TABLE IF EXISTS `email_templates_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `email_templates_settings` ( `email_template_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`email_template_setting_id`), UNIQUE KEY `email_templates_settings_unique` (`email_id`,`locale`,`setting_name`), KEY `email_templates_settings_email_id` (`email_id`), CONSTRAINT `email_templates_settings_email_id` FOREIGN KEY (`email_id`) REFERENCES `email_templates` (`email_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about custom email templates, including localized properties such as the subject and body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_templates_settings` -- LOCK TABLES `email_templates_settings` WRITE; /*!40000 ALTER TABLE `email_templates_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `email_templates_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_log` -- DROP TABLE IF EXISTS `event_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `event_log` ( `log_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `user_id` bigint(20) DEFAULT NULL COMMENT 'NULL if it''s system or automated event', `date_logged` datetime NOT NULL, `event_type` bigint(20) DEFAULT NULL, `message` text DEFAULT NULL, `is_translated` tinyint(1) DEFAULT NULL, PRIMARY KEY (`log_id`), KEY `event_log_user_id` (`user_id`), KEY `event_log_assoc` (`assoc_type`,`assoc_id`), CONSTRAINT `event_log_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A log of all events related to an object like a submission.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_log` -- LOCK TABLES `event_log` WRITE; /*!40000 ALTER TABLE `event_log` DISABLE KEYS */; /*!40000 ALTER TABLE `event_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_log_settings` -- DROP TABLE IF EXISTS `event_log_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `event_log_settings` ( `event_log_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `log_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`event_log_setting_id`), UNIQUE KEY `event_log_settings_unique` (`log_id`,`setting_name`,`locale`), KEY `event_log_settings_log_id` (`log_id`), KEY `event_log_settings_name_value` (`setting_name`(50),`setting_value`(150)), CONSTRAINT `event_log_settings_log_id` FOREIGN KEY (`log_id`) REFERENCES `event_log` (`log_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Data about an event log entry. This data is commonly used to display information about an event to a user.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_log_settings` -- LOCK TABLES `event_log_settings` WRITE; /*!40000 ALTER TABLE `event_log_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `event_log_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `failed_jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A log of all failed jobs.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `files` -- DROP TABLE IF EXISTS `files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `files` ( `file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `path` varchar(255) NOT NULL, `mimetype` varchar(255) NOT NULL, PRIMARY KEY (`file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Records information in the database about files tracked by the system, linking them to the local filesystem.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `files` -- LOCK TABLES `files` WRITE; /*!40000 ALTER TABLE `files` DISABLE KEYS */; /*!40000 ALTER TABLE `files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filter_groups` -- DROP TABLE IF EXISTS `filter_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filter_groups` ( `filter_group_id` bigint(20) NOT NULL AUTO_INCREMENT, `symbolic` varchar(255) DEFAULT NULL, `display_name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `input_type` varchar(255) DEFAULT NULL, `output_type` varchar(255) DEFAULT NULL, PRIMARY KEY (`filter_group_id`), UNIQUE KEY `filter_groups_symbolic` (`symbolic`) ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Filter groups are used to organized filters into named sets, which can be retrieved by the application for invocation.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `filter_groups` -- LOCK TABLES `filter_groups` WRITE; /*!40000 ALTER TABLE `filter_groups` DISABLE KEYS */; INSERT INTO `filter_groups` VALUES (1,'issue=>crossref-xml','plugins.importexport.crossref.displayName','plugins.importexport.crossref.description','class::classes.issue.Issue[]','xml::schema(https://www.crossref.org/schemas/crossref5.3.1.xsd)'),(2,'article=>crossref-xml','plugins.importexport.crossref.displayName','plugins.importexport.crossref.description','class::classes.submission.Submission[]','xml::schema(https://www.crossref.org/schemas/crossref5.3.1.xsd)'),(3,'issue=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::classes.issue.Issue','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(4,'article=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::classes.submission.Submission','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(5,'galley=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::lib.pkp.classes.galley.Galley','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(6,'article=>dc11','plugins.metadata.dc11.articleAdapter.displayName','plugins.metadata.dc11.articleAdapter.description','class::classes.submission.Submission','metadata::APP\\plugins\\metadata\\dc11\\schema\\Dc11Schema(ARTICLE)'),(7,'article=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.submission.Submission[]','xml::schema(plugins/importexport/native/native.xsd)'),(8,'native-xml=>article','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.submission.Submission[]'),(9,'issue=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.issue.Issue[]','xml::schema(plugins/importexport/native/native.xsd)'),(10,'native-xml=>issue','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.issue.Issue[]'),(11,'issuegalley=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.issue.IssueGalley[]','xml::schema(plugins/importexport/native/native.xsd)'),(12,'native-xml=>issuegalley','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.issue.IssueGalley[]'),(13,'author=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.author.Author[]','xml::schema(plugins/importexport/native/native.xsd)'),(14,'native-xml=>author','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.author.Author[]'),(15,'SubmissionFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submissionFile.SubmissionFile','xml::schema(plugins/importexport/native/native.xsd)'),(16,'native-xml=>SubmissionFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submissionFile.SubmissionFile[]'),(17,'article-galley=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.galley.Galley','xml::schema(plugins/importexport/native/native.xsd)'),(18,'native-xml=>ArticleGalley','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.galley.Galley[]'),(19,'publication=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.publication.Publication','xml::schema(plugins/importexport/native/native.xsd)'),(20,'native-xml=>Publication','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.publication.Publication[]'),(21,'article=>doaj-xml','plugins.importexport.doaj.displayName','plugins.importexport.doaj.description','class::classes.submission.Submission[]','xml::schema(plugins/importexport/doaj/doajArticles.xsd)'),(22,'article=>doaj-json','plugins.importexport.doaj.displayName','plugins.importexport.doaj.description','class::classes.submission.Submission','primitive::string'),(23,'user=>user-xml','plugins.importexport.users.displayName','plugins.importexport.users.description','class::lib.pkp.classes.user.User[]','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),(24,'user-xml=>user','plugins.importexport.users.displayName','plugins.importexport.users.description','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)','class::classes.users.User[]'),(25,'usergroup=>user-xml','plugins.importexport.users.displayName','plugins.importexport.users.description','class::lib.pkp.classes.security.UserGroup[]','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),(26,'user-xml=>usergroup','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)','class::lib.pkp.classes.security.UserGroup[]'),(27,'article=>pubmed-xml','plugins.importexport.pubmed.displayName','plugins.importexport.pubmed.description','class::classes.submission.Submission[]','xml::dtd'); /*!40000 ALTER TABLE `filter_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filter_settings` -- DROP TABLE IF EXISTS `filter_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filter_settings` ( `filter_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `filter_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`filter_setting_id`), UNIQUE KEY `filter_settings_unique` (`filter_id`,`locale`,`setting_name`), KEY `filter_settings_id` (`filter_id`), CONSTRAINT `filter_settings_filter_id_foreign` FOREIGN KEY (`filter_id`) REFERENCES `filters` (`filter_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about filters, including localized content.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `filter_settings` -- LOCK TABLES `filter_settings` WRITE; /*!40000 ALTER TABLE `filter_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `filter_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filters` -- DROP TABLE IF EXISTS `filters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filters` ( `filter_id` bigint(20) NOT NULL AUTO_INCREMENT, `filter_group_id` bigint(20) NOT NULL DEFAULT 0, `context_id` bigint(20) NOT NULL DEFAULT 0, `display_name` varchar(255) DEFAULT NULL, `class_name` varchar(255) DEFAULT NULL, `is_template` smallint(6) NOT NULL DEFAULT 0, `parent_filter_id` bigint(20) NOT NULL DEFAULT 0, `seq` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`filter_id`), KEY `filters_filter_group_id` (`filter_group_id`), CONSTRAINT `filters_filter_group_id_foreign` FOREIGN KEY (`filter_group_id`) REFERENCES `filter_groups` (`filter_group_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Filters represent a transformation of a supported piece of data from one form to another, such as a PHP object into an XML document.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `filters` -- LOCK TABLES `filters` WRITE; /*!40000 ALTER TABLE `filters` DISABLE KEYS */; INSERT INTO `filters` VALUES (1,1,0,'Crossref XML issue export','APP\\plugins\\generic\\crossref\\filter\\IssueCrossrefXmlFilter',0,0,0),(2,2,0,'Crossref XML article export','APP\\plugins\\generic\\crossref\\filter\\ArticleCrossrefXmlFilter',0,0,0),(3,3,0,'DataCite XML export','APP\\plugins\\generic\\datacite\\filter\\DataciteXmlFilter',0,0,0),(4,4,0,'DataCite XML export','APP\\plugins\\generic\\datacite\\filter\\DataciteXmlFilter',0,0,0),(5,5,0,'DataCite XML export','APP\\plugins\\generic\\datacite\\filter\\DataciteXmlFilter',0,0,0),(6,6,0,'Extract metadata from a(n) Submission','APP\\plugins\\metadata\\dc11\\filter\\Dc11SchemaArticleAdapter',0,0,0),(7,7,0,'Native XML submission export','APP\\plugins\\importexport\\native\\filter\\ArticleNativeXmlFilter',0,0,0),(8,8,0,'Native XML submission import','APP\\plugins\\importexport\\native\\filter\\NativeXmlArticleFilter',0,0,0),(9,9,0,'Native XML issue export','APP\\plugins\\importexport\\native\\filter\\IssueNativeXmlFilter',0,0,0),(10,10,0,'Native XML issue import','APP\\plugins\\importexport\\native\\filter\\NativeXmlIssueFilter',0,0,0),(11,11,0,'Native XML issue galley export','APP\\plugins\\importexport\\native\\filter\\IssueGalleyNativeXmlFilter',0,0,0),(12,12,0,'Native XML issue galley import','APP\\plugins\\importexport\\native\\filter\\NativeXmlIssueGalleyFilter',0,0,0),(13,13,0,'Native XML author export','APP\\plugins\\importexport\\native\\filter\\AuthorNativeXmlFilter',0,0,0),(14,14,0,'Native XML author import','APP\\plugins\\importexport\\native\\filter\\NativeXmlAuthorFilter',0,0,0),(15,16,0,'Native XML submission file import','APP\\plugins\\importexport\\native\\filter\\NativeXmlArticleFileFilter',0,0,0),(16,15,0,'Native XML submission file export','PKP\\plugins\\importexport\\native\\filter\\SubmissionFileNativeXmlFilter',0,0,0),(17,17,0,'Native XML representation export','APP\\plugins\\importexport\\native\\filter\\ArticleGalleyNativeXmlFilter',0,0,0),(18,18,0,'Native XML representation import','APP\\plugins\\importexport\\native\\filter\\NativeXmlArticleGalleyFilter',0,0,0),(19,19,0,'Native XML Publication export','APP\\plugins\\importexport\\native\\filter\\PublicationNativeXmlFilter',0,0,0),(20,20,0,'Native XML publication import','APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFilter',0,0,0),(21,21,0,'DOAJ XML export','APP\\plugins\\importexport\\doaj\\filter\\DOAJXmlFilter',0,0,0),(22,22,0,'DOAJ JSON export','APP\\plugins\\importexport\\doaj\\filter\\DOAJJsonFilter',0,0,0),(23,23,0,'User XML user export','PKP\\plugins\\importexport\\users\\filter\\PKPUserUserXmlFilter',0,0,0),(24,24,0,'User XML user import','PKP\\plugins\\importexport\\users\\filter\\UserXmlPKPUserFilter',0,0,0),(25,25,0,'Native XML user group export','PKP\\plugins\\importexport\\users\\filter\\UserGroupNativeXmlFilter',0,0,0),(26,26,0,'Native XML user group import','PKP\\plugins\\importexport\\users\\filter\\NativeXmlUserGroupFilter',0,0,0),(27,27,0,'APP\\plugins\\importexport\\pubmed\\filter\\ArticlePubMedXmlFilter','APP\\plugins\\importexport\\pubmed\\filter\\ArticlePubMedXmlFilter',0,0,0); /*!40000 ALTER TABLE `filters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `genre_settings` -- DROP TABLE IF EXISTS `genre_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `genre_settings` ( `genre_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `genre_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`genre_setting_id`), UNIQUE KEY `genre_settings_unique` (`genre_id`,`locale`,`setting_name`), KEY `genre_settings_genre_id` (`genre_id`), CONSTRAINT `genre_settings_genre_id_foreign` FOREIGN KEY (`genre_id`) REFERENCES `genres` (`genre_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about file genres, including localized properties such as the genre name.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `genre_settings` -- LOCK TABLES `genre_settings` WRITE; /*!40000 ALTER TABLE `genre_settings` DISABLE KEYS */; INSERT INTO `genre_settings` VALUES (1,1,'en','name','Article Text','string'),(2,2,'en','name','Research Instrument','string'),(3,3,'en','name','Research Materials','string'),(4,4,'en','name','Research Results','string'),(5,5,'en','name','Transcripts','string'),(6,6,'en','name','Data Analysis','string'),(7,7,'en','name','Data Set','string'),(8,8,'en','name','Source Texts','string'),(9,9,'en','name','Multimedia','string'),(10,10,'en','name','Image','string'),(11,11,'en','name','HTML Stylesheet','string'),(12,12,'en','name','Other','string'); /*!40000 ALTER TABLE `genre_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `genres` -- DROP TABLE IF EXISTS `genres`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `genres` ( `genre_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `seq` bigint(20) NOT NULL, `enabled` smallint(6) NOT NULL DEFAULT 1, `category` bigint(20) NOT NULL DEFAULT 1, `dependent` smallint(6) NOT NULL DEFAULT 0, `supplementary` smallint(6) NOT NULL DEFAULT 0, `required` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Whether or not at least one file of this genre is required for a new submission.', `entry_key` varchar(30) DEFAULT NULL, PRIMARY KEY (`genre_id`), KEY `genres_context_id` (`context_id`), CONSTRAINT `genres_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='The types of submission files configured for each context, such as Article Text, Data Set, Transcript, etc.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `genres` -- LOCK TABLES `genres` WRITE; /*!40000 ALTER TABLE `genres` DISABLE KEYS */; INSERT INTO `genres` VALUES (1,1,0,1,1,0,0,1,'SUBMISSION'),(2,1,1,1,3,0,1,0,'RESEARCHINSTRUMENT'),(3,1,2,1,3,0,1,0,'RESEARCHMATERIALS'),(4,1,3,1,3,0,1,0,'RESEARCHRESULTS'),(5,1,4,1,3,0,1,0,'TRANSCRIPTS'),(6,1,5,1,3,0,1,0,'DATAANALYSIS'),(7,1,6,1,3,0,1,0,'DATASET'),(8,1,7,1,3,0,1,0,'SOURCETEXTS'),(9,1,8,1,1,1,1,0,'MULTIMEDIA'),(10,1,9,1,2,1,0,0,'IMAGE'),(11,1,10,1,1,1,0,0,'STYLE'),(12,1,11,1,3,0,1,0,'OTHER'); /*!40000 ALTER TABLE `genres` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `institution_ip` -- DROP TABLE IF EXISTS `institution_ip`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institution_ip` ( `institution_ip_id` bigint(20) NOT NULL AUTO_INCREMENT, `institution_id` bigint(20) NOT NULL, `ip_string` varchar(40) NOT NULL, `ip_start` bigint(20) NOT NULL, `ip_end` bigint(20) DEFAULT NULL, PRIMARY KEY (`institution_ip_id`), KEY `institution_ip_institution_id` (`institution_id`), KEY `institution_ip_start` (`ip_start`), KEY `institution_ip_end` (`ip_end`), CONSTRAINT `institution_ip_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Records IP address ranges and associates them with institutions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `institution_ip` -- LOCK TABLES `institution_ip` WRITE; /*!40000 ALTER TABLE `institution_ip` DISABLE KEYS */; /*!40000 ALTER TABLE `institution_ip` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `institution_settings` -- DROP TABLE IF EXISTS `institution_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institution_settings` ( `institution_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `institution_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`institution_setting_id`), UNIQUE KEY `institution_settings_unique` (`institution_id`,`locale`,`setting_name`), KEY `institution_settings_institution_id` (`institution_id`), CONSTRAINT `institution_settings_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about institutions, including localized properties like names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `institution_settings` -- LOCK TABLES `institution_settings` WRITE; /*!40000 ALTER TABLE `institution_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `institution_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `institutional_subscriptions` -- DROP TABLE IF EXISTS `institutional_subscriptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institutional_subscriptions` ( `institutional_subscription_id` bigint(20) NOT NULL AUTO_INCREMENT, `subscription_id` bigint(20) NOT NULL, `institution_id` bigint(20) NOT NULL, `mailing_address` varchar(255) DEFAULT NULL, `domain` varchar(255) DEFAULT NULL, PRIMARY KEY (`institutional_subscription_id`), KEY `institutional_subscriptions_subscription_id` (`subscription_id`), KEY `institutional_subscriptions_institution_id` (`institution_id`), KEY `institutional_subscriptions_domain` (`domain`), CONSTRAINT `institutional_subscriptions_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE, CONSTRAINT `institutional_subscriptions_subscription_id` FOREIGN KEY (`subscription_id`) REFERENCES `subscriptions` (`subscription_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of institutional subscriptions, linking a subscription with an institution.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `institutional_subscriptions` -- LOCK TABLES `institutional_subscriptions` WRITE; /*!40000 ALTER TABLE `institutional_subscriptions` DISABLE KEYS */; /*!40000 ALTER TABLE `institutional_subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `institutions` -- DROP TABLE IF EXISTS `institutions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institutions` ( `institution_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `ror` varchar(255) DEFAULT NULL COMMENT 'ROR (Research Organization Registry) ID', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`institution_id`), KEY `institutions_context_id` (`context_id`), CONSTRAINT `institutions_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Institutions for statistics and subscriptions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `institutions` -- LOCK TABLES `institutions` WRITE; /*!40000 ALTER TABLE `institutions` DISABLE KEYS */; /*!40000 ALTER TABLE `institutions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `issue_files` -- DROP TABLE IF EXISTS `issue_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `issue_files` ( `file_id` bigint(20) NOT NULL AUTO_INCREMENT, `issue_id` bigint(20) NOT NULL, `file_name` varchar(90) NOT NULL, `file_type` varchar(255) NOT NULL, `file_size` bigint(20) NOT NULL, `content_type` bigint(20) NOT NULL, `original_file_name` varchar(127) DEFAULT NULL, `date_uploaded` datetime NOT NULL, `date_modified` datetime NOT NULL, PRIMARY KEY (`file_id`), KEY `issue_files_issue_id` (`issue_id`), CONSTRAINT `issue_files_issue_id` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Relationships between issues and issue files, such as cover images.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `issue_files` -- LOCK TABLES `issue_files` WRITE; /*!40000 ALTER TABLE `issue_files` DISABLE KEYS */; /*!40000 ALTER TABLE `issue_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `issue_galley_settings` -- DROP TABLE IF EXISTS `issue_galley_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `issue_galley_settings` ( `issue_galley_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `galley_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`issue_galley_setting_id`), UNIQUE KEY `issue_galley_settings_unique` (`galley_id`,`locale`,`setting_name`), KEY `issue_galley_settings_galley_id` (`galley_id`), CONSTRAINT `issue_galleys_settings_galley_id` FOREIGN KEY (`galley_id`) REFERENCES `issue_galleys` (`galley_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about issue galleys, including localized content such as labels.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `issue_galley_settings` -- LOCK TABLES `issue_galley_settings` WRITE; /*!40000 ALTER TABLE `issue_galley_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `issue_galley_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `issue_galleys` -- DROP TABLE IF EXISTS `issue_galleys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `issue_galleys` ( `galley_id` bigint(20) NOT NULL AUTO_INCREMENT, `locale` varchar(14) DEFAULT NULL, `issue_id` bigint(20) NOT NULL, `file_id` bigint(20) NOT NULL, `label` varchar(255) DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, `url_path` varchar(64) DEFAULT NULL, PRIMARY KEY (`galley_id`), KEY `issue_galleys_issue_id` (`issue_id`), KEY `issue_galleys_file_id` (`file_id`), KEY `issue_galleys_url_path` (`url_path`), CONSTRAINT `issue_galleys_file_id` FOREIGN KEY (`file_id`) REFERENCES `issue_files` (`file_id`) ON DELETE CASCADE, CONSTRAINT `issue_galleys_issue_id` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Issue galleys are representations of the entire issue in a single file, such as a complete issue PDF.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `issue_galleys` -- LOCK TABLES `issue_galleys` WRITE; /*!40000 ALTER TABLE `issue_galleys` DISABLE KEYS */; /*!40000 ALTER TABLE `issue_galleys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `issue_settings` -- DROP TABLE IF EXISTS `issue_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `issue_settings` ( `issue_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `issue_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`issue_setting_id`), UNIQUE KEY `issue_settings_unique` (`issue_id`,`locale`,`setting_name`), KEY `issue_settings_issue_id` (`issue_id`), KEY `issue_settings_name_value` (`setting_name`(50),`setting_value`(150)), CONSTRAINT `issue_settings_issue_id` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about issues, including localized properties such as issue titles.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `issue_settings` -- LOCK TABLES `issue_settings` WRITE; /*!40000 ALTER TABLE `issue_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `issue_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `issues` -- DROP TABLE IF EXISTS `issues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `issues` ( `issue_id` bigint(20) NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `volume` smallint(6) DEFAULT NULL, `number` varchar(40) DEFAULT NULL, `year` smallint(6) DEFAULT NULL, `published` smallint(6) NOT NULL DEFAULT 0, `date_published` datetime DEFAULT NULL, `date_notified` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `access_status` smallint(6) NOT NULL DEFAULT 1, `open_access_date` datetime DEFAULT NULL, `show_volume` smallint(6) NOT NULL DEFAULT 0, `show_number` smallint(6) NOT NULL DEFAULT 0, `show_year` smallint(6) NOT NULL DEFAULT 0, `show_title` smallint(6) NOT NULL DEFAULT 0, `style_file_name` varchar(90) DEFAULT NULL, `original_style_file_name` varchar(255) DEFAULT NULL, `url_path` varchar(64) DEFAULT NULL, `doi_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`issue_id`), KEY `issues_journal_id` (`journal_id`), KEY `issues_doi_id` (`doi_id`), KEY `issues_url_path` (`url_path`), CONSTRAINT `issues_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL, CONSTRAINT `issues_journal_id` FOREIGN KEY (`journal_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of all journal issues, with identifying information like year, number, volume, etc.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `issues` -- LOCK TABLES `issues` WRITE; /*!40000 ALTER TABLE `issues` DISABLE KEYS */; /*!40000 ALTER TABLE `issues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job_batches` -- DROP TABLE IF EXISTS `job_batches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `job_batches` ( `id` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `total_jobs` int(11) NOT NULL, `pending_jobs` int(11) NOT NULL, `failed_jobs` int(11) NOT NULL, `failed_job_ids` text NOT NULL, `options` mediumtext DEFAULT NULL, `cancelled_at` int(11) DEFAULT NULL, `created_at` int(11) NOT NULL, `finished_at` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Job batches allow jobs to be collected into groups for managed processing.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job_batches` -- LOCK TABLES `job_batches` WRITE; /*!40000 ALTER TABLE `job_batches` DISABLE KEYS */; INSERT INTO `job_batches` VALUES ('9e703a5d-c1a9-46d0-b040-9c8cad099f69','',0,0,0,'[]','a:0:{}',NULL,1742048527,NULL); /*!40000 ALTER TABLE `job_batches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jobs` -- DROP TABLE IF EXISTS `jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(255) NOT NULL, `payload` longtext NOT NULL, `attempts` tinyint(3) unsigned NOT NULL, `reserved_at` int(10) unsigned DEFAULT NULL, `available_at` int(10) unsigned NOT NULL, `created_at` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='All pending or in-progress jobs.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jobs` -- LOCK TABLES `jobs` WRITE; /*!40000 ALTER TABLE `jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `journal_settings` -- DROP TABLE IF EXISTS `journal_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `journal_settings` ( `journal_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`journal_setting_id`), UNIQUE KEY `journal_settings_unique` (`journal_id`,`locale`,`setting_name`), KEY `journal_settings_journal_id` (`journal_id`), CONSTRAINT `journal_settings_journal_id` FOREIGN KEY (`journal_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about journals, including localized properties like policies.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `journal_settings` -- LOCK TABLES `journal_settings` WRITE; /*!40000 ALTER TABLE `journal_settings` DISABLE KEYS */; INSERT INTO `journal_settings` VALUES (1,1,'en','acronym','MFAT'),(2,1,'en','authorGuidelines','<p>Authors are invited to make a submission to this journal. All submissions will be assessed by an editor to determine whether they meet the aims and scope of this journal. Those considered to be a good fit will be sent for peer review before determining whether they will be accepted or rejected.</p><p>Before making a submission, authors are responsible for obtaining permission to publish any material included with the submission, such as photos, documents and datasets. All authors identified on the submission must consent to be identified as an author. Where appropriate, research should be approved by an appropriate ethics committee in accordance with the legal requirements of the study\'s country.</p><p>An editor may desk reject a submission if it does not meet minimum standards of quality. Before submitting, please ensure that the study design and research argument are structured and articulated properly. The title should be concise and the abstract should be able to stand on its own. This will increase the likelihood of reviewers agreeing to review the paper. When you\'re satisfied that your submission meets this standard, please follow the checklist below to prepare your submission.</p>'),(3,1,'en','authorInformation','Interested in submitting to this journal? We recommend that you review the <a href=\"https://zen.imath.kiev.ua/index.php/mfat/about\">About the Journal</a> page for the journal\'s section policies, as well as the <a href=\"https://zen.imath.kiev.ua/index.php/mfat/about/submissions#authorGuidelines\">Author Guidelines</a>. Authors need to <a href=\"https://zen.imath.kiev.ua/index.php/mfat/user/register\">register</a> with the journal prior to submitting or, if already registered, can simply <a href=\"https://zen.imath.kiev.ua/index.php/index/login\">log in</a> and begin the five-step process.'),(4,1,'en','beginSubmissionHelp','<p>Thank you for submitting to the Methods of Functional Analysis and Topology. You will be asked to upload files, identify co-authors, and provide information such as the title and abstract.<p><p>Please read our <a href=\"https://zen.imath.kiev.ua/index.php/mfat/about/submissions\" target=\"_blank\">Submission Guidelines</a> if you have not done so already. When filling out the forms, provide as many details as possible in order to help our editors evaluate your work.</p><p>Once you begin, you can save your submission and come back to it later. You will be able to review and correct any information before you submit.</p>'),(5,1,'','contactEmail','vasyl.ostrovskyi@gmail.com'),(6,1,'','contactName','Vasyl Ostrovskyi'),(7,1,'en','contributorsHelp','<p>Add details for all of the contributors to this submission. Contributors added here will be sent an email confirmation of the submission, as well as a copy of all editorial decisions recorded against this submission.</p><p>If a contributor can not be contacted by email, because they must remain anonymous or do not have an email account, please do not enter a fake email address. You can add information about this contributor in a message to the editor at a later step in the submission process.</p>'),(8,1,'','country','UA'),(9,1,'','defaultReviewMode','2'),(11,1,'en','detailsHelp','<p>Please provide the following details to help us manage your submission in our system.</p>'),(12,1,'','copySubmissionAckPrimaryContact','0'),(13,1,'','copySubmissionAckAddress',''),(14,1,'','emailSignature','<br><br>—<br><p>This is an automated message from <a href=\"https://zen.imath.kiev.ua/index.php/mfat\">Methods of Functional Analysis and Topology</a>.</p>'),(15,1,'','enableDois','1'),(16,1,'','doiSuffixType','default'),(17,1,'','registrationAgency',''),(18,1,'','disableSubmissions','0'),(19,1,'','editorialStatsEmail','1'),(20,1,'en','forTheEditorsHelp','<p>Please provide the following details in order to help our editorial team manage your submission.</p><p>When entering metadata, provide entries that you think would be most helpful to the person managing your submission. This information can be changed before publication.</p>'),(21,1,'','itemsPerPage','25'),(22,1,'','keywords','request'),(23,1,'en','librarianInformation','We encourage research librarians to list this journal among their library\'s electronic journal holdings. As well, it may be worth noting that this journal\'s open source publishing system is suitable for libraries to host for their faculty members to use with journals they are involved in editing (see <a href=\"https://pkp.sfu.ca/ojs\">Open Journal Systems</a>).'),(24,1,'en','name','Methods of Functional Analysis and Topology'),(25,1,'','notifyAllAuthors','1'),(26,1,'','numPageLinks','10'),(27,1,'','numWeeksPerResponse','4'),(28,1,'','numWeeksPerReview','4'),(29,1,'en','openAccessPolicy','This journal provides immediate open access to its content on the principle that making research freely available to the public supports a greater global exchange of knowledge.'),(30,1,'en','privacyStatement','<p>The names and email addresses entered in this journal site will be used exclusively for the stated purposes of this journal and will not be made available for any other purpose or to any other party.</p>'),(31,1,'en','readerInformation','We encourage readers to sign up for the publishing notification service for this journal. Use the <a href=\"https://zen.imath.kiev.ua/index.php/mfat/user/register\">Register</a> link at the top of the home page for the journal. This registration will result in the reader receiving the Table of Contents by email for each new issue of the journal. This list also allows the journal to claim a certain level of support or readership. See the journal\'s <a href=\"https://zen.imath.kiev.ua/index.php/mfat/about/submissions#privacyStatement\">Privacy Statement</a>, which assures readers that their name and email address will not be used for other purposes.'),(32,1,'en','reviewHelp','<p>Review the information you have entered before you complete your submission. You can change any of the details displayed here by clicking the edit button at the top of each section.</p><p>Once you complete your submission, a member of our editorial team will be assigned to review it. Please ensure the details you have entered here are as accurate as possible.</p>'),(33,1,'','submissionAcknowledgement','allAuthors'),(34,1,'en','submissionChecklist','<p>All submissions must meet the following requirements.</p><ul><li>This submission meets the requirements outlined in the <a href=\"https://zen.imath.kiev.ua/index.php/mfat/about/submissions\">Author Guidelines</a>.</li><li>This submission has not been previously published, nor is it before another journal for consideration.</li><li>All references have been checked for accuracy and completeness.</li><li>All tables and figures have been numbered and labeled.</li><li>Permission has been obtained to publish all photos, datasets and other material provided with this submission.</li></ul>'),(35,1,'','submitWithCategories','0'),(36,1,'','supportedFormLocales','[\"en\"]'),(37,1,'','supportedLocales','[\"en\"]'),(38,1,'','supportedSubmissionLocales','[\"en\"]'),(39,1,'','themePluginPath','default'),(40,1,'en','uploadFilesHelp','<p>Provide any files our editorial team may need to evaluate your submission. In addition to the main work, you may wish to submit data sets, conflict of interest statements, or other supplementary files if these will be helpful for our editors.</p>'),(41,1,'','enableGeoUsageStats','disabled'),(42,1,'','enableInstitutionUsageStats','0'),(43,1,'','isSushiApiPublic','1'),(44,1,'en','abbreviation','MFAT'),(45,1,'en','clockssLicense','This journal utilizes the CLOCKSS system to create a distributed archiving system among participating libraries and permits those libraries to create permanent archives of the journal for purposes of preservation and restoration. <a href=\"https://clockss.org\">More...</a>'),(46,1,'','copyrightYearBasis','issue'),(47,1,'','enabledDoiTypes','[\"publication\"]'),(48,1,'','doiCreationTime','copyEditCreationTime'),(49,1,'','enableOai','1'),(50,1,'en','lockssLicense','This journal utilizes the LOCKSS system to create a distributed archiving system among participating libraries and permits those libraries to create permanent archives of the journal for purposes of preservation and restoration. <a href=\"https://www.lockss.org\">More...</a>'),(51,1,'','membershipFee','0'),(52,1,'','publicationFee','0'),(53,1,'','purchaseArticleFee','0'),(54,1,'','doiVersioning','0'),(55,1,'','supportEmail','vasyl.ostrovskyi@gmail.com'),(56,1,'','supportName','Vasyl Ostrovskyi'),(58,1,'en','pageHeaderLogoImage','{\"name\":\"Ostrovskyi.jpg\",\"uploadName\":\"pageHeaderLogoImage_en.jpg\",\"width\":1218,\"height\":1491,\"dateUploaded\":\"2025-03-15 16:32:13\",\"altText\":\"Methods of Functional Analysis and Topology\"}'),(59,1,'','sidebar','[\"makesubmissionblockplugin\",\"browseblockplugin\",\"informationblockplugin\"]'); /*!40000 ALTER TABLE `journal_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `journals` -- DROP TABLE IF EXISTS `journals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `journals` ( `journal_id` bigint(20) NOT NULL AUTO_INCREMENT, `path` varchar(32) NOT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00 COMMENT 'Used to order lists of journals', `primary_locale` varchar(14) NOT NULL, `enabled` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Controls whether or not the journal is considered "live" and will appear on the website. (Note that disabled journals may still be accessible, but only if the user knows the URL.)', `current_issue_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`journal_id`), UNIQUE KEY `journals_path` (`path`), KEY `journals_issue_id` (`current_issue_id`), CONSTRAINT `journals_current_issue_id_foreign` FOREIGN KEY (`current_issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of all journals in the installation of OJS.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `journals` -- LOCK TABLES `journals` WRITE; /*!40000 ALTER TABLE `journals` DISABLE KEYS */; INSERT INTO `journals` VALUES (1,'mfat',1.00,'en',1,NULL); /*!40000 ALTER TABLE `journals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `library_file_settings` -- DROP TABLE IF EXISTS `library_file_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `library_file_settings` ( `library_file_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `file_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object|date)', PRIMARY KEY (`library_file_setting_id`), UNIQUE KEY `library_file_settings_unique` (`file_id`,`locale`,`setting_name`), KEY `library_file_settings_file_id` (`file_id`), CONSTRAINT `library_file_settings_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `library_files` (`file_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about library files, including localized content such as names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `library_file_settings` -- LOCK TABLES `library_file_settings` WRITE; /*!40000 ALTER TABLE `library_file_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `library_file_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `library_files` -- DROP TABLE IF EXISTS `library_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `library_files` ( `file_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `file_name` varchar(255) NOT NULL, `original_file_name` varchar(255) NOT NULL, `file_type` varchar(255) NOT NULL, `file_size` bigint(20) NOT NULL, `type` smallint(6) NOT NULL, `date_uploaded` datetime NOT NULL, `date_modified` datetime NOT NULL, `submission_id` bigint(20) DEFAULT NULL, `public_access` smallint(6) DEFAULT 0, PRIMARY KEY (`file_id`), KEY `library_files_context_id` (`context_id`), KEY `library_files_submission_id` (`submission_id`), CONSTRAINT `library_files_context_id` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `library_files_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Library files can be associated with the context (press/server/journal) or with individual submissions, and are typically forms, agreements, and other administrative documents that are not part of the scholarly content.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `library_files` -- LOCK TABLES `library_files` WRITE; /*!40000 ALTER TABLE `library_files` DISABLE KEYS */; /*!40000 ALTER TABLE `library_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_context` -- DROP TABLE IF EXISTS `metrics_context`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_context` ( `metrics_context_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `date` date NOT NULL, `metric` int(11) NOT NULL, PRIMARY KEY (`metrics_context_id`), KEY `metrics_context_load_id` (`load_id`), KEY `metrics_context_context_id` (`context_id`), CONSTRAINT `metrics_context_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Daily statistics for views of the homepage.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_context` -- LOCK TABLES `metrics_context` WRITE; /*!40000 ALTER TABLE `metrics_context` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_context` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_counter_submission_daily` -- DROP TABLE IF EXISTS `metrics_counter_submission_daily`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_counter_submission_daily` ( `metrics_counter_submission_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `date` date NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_daily_id`), UNIQUE KEY `msd_uc_load_id_context_id_submission_id_date` (`load_id`,`context_id`,`submission_id`,`date`), KEY `msd_load_id` (`load_id`), KEY `metrics_counter_submission_daily_context_id` (`context_id`), KEY `metrics_counter_submission_daily_submission_id` (`submission_id`), KEY `msd_context_id_submission_id` (`context_id`,`submission_id`), CONSTRAINT `msd_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `msd_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Daily statistics matching the COUNTER R5 protocol for views and downloads of published submissions and galleys.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_counter_submission_daily` -- LOCK TABLES `metrics_counter_submission_daily` WRITE; /*!40000 ALTER TABLE `metrics_counter_submission_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_counter_submission_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_counter_submission_institution_daily` -- DROP TABLE IF EXISTS `metrics_counter_submission_institution_daily`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_counter_submission_institution_daily` ( `metrics_counter_submission_institution_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `institution_id` bigint(20) NOT NULL, `date` date NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_institution_daily_id`), UNIQUE KEY `msid_uc_load_id_context_id_submission_id_institution_id_date` (`load_id`,`context_id`,`submission_id`,`institution_id`,`date`), KEY `msid_load_id` (`load_id`), KEY `metrics_counter_submission_institution_daily_context_id` (`context_id`), KEY `metrics_counter_submission_institution_daily_submission_id` (`submission_id`), KEY `metrics_counter_submission_institution_daily_institution_id` (`institution_id`), KEY `msid_context_id_submission_id` (`context_id`,`submission_id`), CONSTRAINT `msid_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `msid_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE, CONSTRAINT `msid_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Daily statistics matching the COUNTER R5 protocol for views and downloads from institutions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_counter_submission_institution_daily` -- LOCK TABLES `metrics_counter_submission_institution_daily` WRITE; /*!40000 ALTER TABLE `metrics_counter_submission_institution_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_counter_submission_institution_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_counter_submission_institution_monthly` -- DROP TABLE IF EXISTS `metrics_counter_submission_institution_monthly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_counter_submission_institution_monthly` ( `metrics_counter_submission_institution_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `institution_id` bigint(20) NOT NULL, `month` int(11) NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_institution_monthly_id`), UNIQUE KEY `msim_uc_context_id_submission_id_institution_id_month` (`context_id`,`submission_id`,`institution_id`,`month`), KEY `metrics_counter_submission_institution_monthly_context_id` (`context_id`), KEY `metrics_counter_submission_institution_monthly_submission_id` (`submission_id`), KEY `metrics_counter_submission_institution_monthly_institution_id` (`institution_id`), KEY `msim_context_id_submission_id` (`context_id`,`submission_id`), CONSTRAINT `msim_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `msim_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE, CONSTRAINT `msim_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Monthly statistics matching the COUNTER R5 protocol for views and downloads from institutions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_counter_submission_institution_monthly` -- LOCK TABLES `metrics_counter_submission_institution_monthly` WRITE; /*!40000 ALTER TABLE `metrics_counter_submission_institution_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_counter_submission_institution_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_counter_submission_monthly` -- DROP TABLE IF EXISTS `metrics_counter_submission_monthly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_counter_submission_monthly` ( `metrics_counter_submission_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `month` int(11) NOT NULL, `metric_investigations` int(11) NOT NULL, `metric_investigations_unique` int(11) NOT NULL, `metric_requests` int(11) NOT NULL, `metric_requests_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_counter_submission_monthly_id`), UNIQUE KEY `msm_uc_context_id_submission_id_month` (`context_id`,`submission_id`,`month`), KEY `metrics_counter_submission_monthly_context_id` (`context_id`), KEY `metrics_counter_submission_monthly_submission_id` (`submission_id`), KEY `msm_context_id_submission_id` (`context_id`,`submission_id`), CONSTRAINT `msm_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `msm_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Monthly statistics matching the COUNTER R5 protocol for views and downloads of published submissions and galleys.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_counter_submission_monthly` -- LOCK TABLES `metrics_counter_submission_monthly` WRITE; /*!40000 ALTER TABLE `metrics_counter_submission_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_counter_submission_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_issue` -- DROP TABLE IF EXISTS `metrics_issue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_issue` ( `metrics_issue_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `issue_id` bigint(20) NOT NULL, `issue_galley_id` bigint(20) DEFAULT NULL, `date` date NOT NULL, `metric` int(11) NOT NULL, PRIMARY KEY (`metrics_issue_id`), KEY `metrics_issue_load_id` (`load_id`), KEY `metrics_issue_context_id` (`context_id`), KEY `metrics_issue_issue_id` (`issue_id`), KEY `metrics_issue_issue_galley_id` (`issue_galley_id`), KEY `metrics_issue_context_id_issue_id` (`context_id`,`issue_id`), CONSTRAINT `metrics_issue_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `metrics_issue_issue_galley_id_foreign` FOREIGN KEY (`issue_galley_id`) REFERENCES `issue_galleys` (`galley_id`) ON DELETE CASCADE, CONSTRAINT `metrics_issue_issue_id_foreign` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Daily statistics for views and downloads of published issues.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_issue` -- LOCK TABLES `metrics_issue` WRITE; /*!40000 ALTER TABLE `metrics_issue` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_issue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_submission` -- DROP TABLE IF EXISTS `metrics_submission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_submission` ( `metrics_submission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `representation_id` bigint(20) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `file_type` bigint(20) DEFAULT NULL, `assoc_type` bigint(20) NOT NULL, `date` date NOT NULL, `metric` int(11) NOT NULL, PRIMARY KEY (`metrics_submission_id`), KEY `ms_load_id` (`load_id`), KEY `metrics_submission_context_id` (`context_id`), KEY `metrics_submission_submission_id` (`submission_id`), KEY `metrics_submission_representation_id` (`representation_id`), KEY `metrics_submission_submission_file_id` (`submission_file_id`), KEY `ms_context_id_submission_id_assoc_type_file_type` (`context_id`,`submission_id`,`assoc_type`,`file_type`), CONSTRAINT `metrics_submission_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `metrics_submission_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_galleys` (`galley_id`) ON DELETE CASCADE, CONSTRAINT `metrics_submission_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE, CONSTRAINT `metrics_submission_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Daily statistics for views and downloads of published submissions and galleys.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_submission` -- LOCK TABLES `metrics_submission` WRITE; /*!40000 ALTER TABLE `metrics_submission` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_submission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_submission_geo_daily` -- DROP TABLE IF EXISTS `metrics_submission_geo_daily`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_submission_geo_daily` ( `metrics_submission_geo_daily_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `date` date NOT NULL, `metric` int(11) NOT NULL, `metric_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_submission_geo_daily_id`), UNIQUE KEY `msgd_uc_load_context_submission_c_r_c_date` (`load_id`,`context_id`,`submission_id`,`country`,`region`,`city`(80),`date`), KEY `msgd_load_id` (`load_id`), KEY `metrics_submission_geo_daily_context_id` (`context_id`), KEY `metrics_submission_geo_daily_submission_id` (`submission_id`), KEY `msgd_context_id_submission_id` (`context_id`,`submission_id`), CONSTRAINT `msgd_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `msgd_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Daily statistics by country, region and city for views and downloads of published submissions and galleys.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_submission_geo_daily` -- LOCK TABLES `metrics_submission_geo_daily` WRITE; /*!40000 ALTER TABLE `metrics_submission_geo_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_submission_geo_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics_submission_geo_monthly` -- DROP TABLE IF EXISTS `metrics_submission_geo_monthly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `metrics_submission_geo_monthly` ( `metrics_submission_geo_monthly_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `month` int(11) NOT NULL, `metric` int(11) NOT NULL, `metric_unique` int(11) NOT NULL, PRIMARY KEY (`metrics_submission_geo_monthly_id`), UNIQUE KEY `msgm_uc_context_submission_c_r_c_month` (`context_id`,`submission_id`,`country`,`region`,`city`(80),`month`), KEY `metrics_submission_geo_monthly_context_id` (`context_id`), KEY `metrics_submission_geo_monthly_submission_id` (`submission_id`), KEY `msgm_context_id_submission_id` (`context_id`,`submission_id`), CONSTRAINT `msgm_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `msgm_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Monthly statistics by country, region and city for views and downloads of published submissions and galleys.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics_submission_geo_monthly` -- LOCK TABLES `metrics_submission_geo_monthly` WRITE; /*!40000 ALTER TABLE `metrics_submission_geo_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics_submission_geo_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `navigation_menu_item_assignment_settings` -- DROP TABLE IF EXISTS `navigation_menu_item_assignment_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `navigation_menu_item_assignment_settings` ( `navigation_menu_item_assignment_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `navigation_menu_item_assignment_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`navigation_menu_item_assignment_setting_id`), UNIQUE KEY `navigation_menu_item_assignment_settings_unique` (`navigation_menu_item_assignment_id`,`locale`,`setting_name`), KEY `navigation_menu_item_assignment_settings_n_m_i_a_id` (`navigation_menu_item_assignment_id`), CONSTRAINT `assignment_settings_navigation_menu_item_assignment_id` FOREIGN KEY (`navigation_menu_item_assignment_id`) REFERENCES `navigation_menu_item_assignments` (`navigation_menu_item_assignment_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about navigation menu item assignments to navigation menus, including localized content.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `navigation_menu_item_assignment_settings` -- LOCK TABLES `navigation_menu_item_assignment_settings` WRITE; /*!40000 ALTER TABLE `navigation_menu_item_assignment_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `navigation_menu_item_assignment_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `navigation_menu_item_assignments` -- DROP TABLE IF EXISTS `navigation_menu_item_assignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `navigation_menu_item_assignments` ( `navigation_menu_item_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT, `navigation_menu_id` bigint(20) NOT NULL, `navigation_menu_item_id` bigint(20) NOT NULL, `parent_id` bigint(20) DEFAULT NULL, `seq` bigint(20) DEFAULT 0, PRIMARY KEY (`navigation_menu_item_assignment_id`), KEY `navigation_menu_item_assignments_navigation_menu_id` (`navigation_menu_id`), KEY `navigation_menu_item_assignments_navigation_menu_item_id` (`navigation_menu_item_id`), CONSTRAINT `navigation_menu_item_assignments_navigation_menu_id_foreign` FOREIGN KEY (`navigation_menu_id`) REFERENCES `navigation_menus` (`navigation_menu_id`) ON DELETE CASCADE, CONSTRAINT `navigation_menu_item_assignments_navigation_menu_item_id_foreign` FOREIGN KEY (`navigation_menu_item_id`) REFERENCES `navigation_menu_items` (`navigation_menu_item_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Links navigation menu items to navigation menus.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `navigation_menu_item_assignments` -- LOCK TABLES `navigation_menu_item_assignments` WRITE; /*!40000 ALTER TABLE `navigation_menu_item_assignments` DISABLE KEYS */; INSERT INTO `navigation_menu_item_assignments` VALUES (1,1,1,0,0),(2,1,2,0,1),(3,1,3,0,2),(4,1,4,3,0),(5,1,5,3,1),(6,1,6,3,2),(7,1,7,3,3),(8,2,8,0,0),(9,2,9,0,1),(10,2,10,0,2),(11,2,11,10,0),(12,2,12,10,1),(13,2,13,10,2),(14,2,14,10,3),(15,3,15,0,0),(16,3,16,0,1),(17,3,17,0,2),(18,3,18,0,3),(19,3,19,18,0),(20,3,20,18,1),(21,3,21,18,2),(22,3,22,18,3),(23,3,23,18,4); /*!40000 ALTER TABLE `navigation_menu_item_assignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `navigation_menu_item_settings` -- DROP TABLE IF EXISTS `navigation_menu_item_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `navigation_menu_item_settings` ( `navigation_menu_item_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `navigation_menu_item_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` longtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`navigation_menu_item_setting_id`), UNIQUE KEY `navigation_menu_item_settings_unique` (`navigation_menu_item_id`,`locale`,`setting_name`), KEY `navigation_menu_item_settings_navigation_menu_item_id` (`navigation_menu_item_id`), CONSTRAINT `navigation_menu_item_settings_navigation_menu_id` FOREIGN KEY (`navigation_menu_item_id`) REFERENCES `navigation_menu_items` (`navigation_menu_item_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about navigation menu items, including localized content such as names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `navigation_menu_item_settings` -- LOCK TABLES `navigation_menu_item_settings` WRITE; /*!40000 ALTER TABLE `navigation_menu_item_settings` DISABLE KEYS */; INSERT INTO `navigation_menu_item_settings` VALUES (1,1,'','titleLocaleKey','navigation.register','string'),(2,2,'','titleLocaleKey','navigation.login','string'),(3,3,'','titleLocaleKey','{$loggedInUsername}','string'),(4,4,'','titleLocaleKey','navigation.dashboard','string'),(5,5,'','titleLocaleKey','common.viewProfile','string'),(6,6,'','titleLocaleKey','navigation.admin','string'),(7,7,'','titleLocaleKey','user.logOut','string'),(8,8,'','titleLocaleKey','navigation.register','string'),(9,9,'','titleLocaleKey','navigation.login','string'),(10,10,'','titleLocaleKey','{$loggedInUsername}','string'),(11,11,'','titleLocaleKey','navigation.dashboard','string'),(12,12,'','titleLocaleKey','common.viewProfile','string'),(13,13,'','titleLocaleKey','navigation.admin','string'),(14,14,'','titleLocaleKey','user.logOut','string'),(15,15,'','titleLocaleKey','navigation.current','string'),(16,16,'','titleLocaleKey','navigation.archives','string'),(17,17,'','titleLocaleKey','manager.announcements','string'),(18,18,'','titleLocaleKey','navigation.about','string'),(19,19,'','titleLocaleKey','about.aboutContext','string'),(20,20,'','titleLocaleKey','about.submissions','string'),(21,21,'','titleLocaleKey','about.editorialTeam','string'),(22,22,'','titleLocaleKey','manager.setup.privacyStatement','string'),(23,23,'','titleLocaleKey','about.contact','string'),(24,24,'','titleLocaleKey','common.search','string'); /*!40000 ALTER TABLE `navigation_menu_item_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `navigation_menu_items` -- DROP TABLE IF EXISTS `navigation_menu_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `navigation_menu_items` ( `navigation_menu_item_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `path` varchar(255) DEFAULT '', `type` varchar(255) DEFAULT '', PRIMARY KEY (`navigation_menu_item_id`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Navigation menu items are single elements within a navigation menu.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `navigation_menu_items` -- LOCK TABLES `navigation_menu_items` WRITE; /*!40000 ALTER TABLE `navigation_menu_items` DISABLE KEYS */; INSERT INTO `navigation_menu_items` VALUES (1,0,NULL,'NMI_TYPE_USER_REGISTER'),(2,0,NULL,'NMI_TYPE_USER_LOGIN'),(3,0,NULL,'NMI_TYPE_USER_DASHBOARD'),(4,0,NULL,'NMI_TYPE_USER_DASHBOARD'),(5,0,NULL,'NMI_TYPE_USER_PROFILE'),(6,0,NULL,'NMI_TYPE_ADMINISTRATION'),(7,0,NULL,'NMI_TYPE_USER_LOGOUT'),(8,1,NULL,'NMI_TYPE_USER_REGISTER'),(9,1,NULL,'NMI_TYPE_USER_LOGIN'),(10,1,NULL,'NMI_TYPE_USER_DASHBOARD'),(11,1,NULL,'NMI_TYPE_USER_DASHBOARD'),(12,1,NULL,'NMI_TYPE_USER_PROFILE'),(13,1,NULL,'NMI_TYPE_ADMINISTRATION'),(14,1,NULL,'NMI_TYPE_USER_LOGOUT'),(15,1,NULL,'NMI_TYPE_CURRENT'),(16,1,NULL,'NMI_TYPE_ARCHIVES'),(17,1,NULL,'NMI_TYPE_ANNOUNCEMENTS'),(18,1,NULL,'NMI_TYPE_ABOUT'),(19,1,NULL,'NMI_TYPE_ABOUT'),(20,1,NULL,'NMI_TYPE_SUBMISSIONS'),(21,1,NULL,'NMI_TYPE_EDITORIAL_TEAM'),(22,1,NULL,'NMI_TYPE_PRIVACY'),(23,1,NULL,'NMI_TYPE_CONTACT'),(24,1,NULL,'NMI_TYPE_SEARCH'); /*!40000 ALTER TABLE `navigation_menu_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `navigation_menus` -- DROP TABLE IF EXISTS `navigation_menus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `navigation_menus` ( `navigation_menu_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `area_name` varchar(255) DEFAULT '', `title` varchar(255) NOT NULL, PRIMARY KEY (`navigation_menu_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Navigation menus on the website are installed with the software as a default set, and can be customized.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `navigation_menus` -- LOCK TABLES `navigation_menus` WRITE; /*!40000 ALTER TABLE `navigation_menus` DISABLE KEYS */; INSERT INTO `navigation_menus` VALUES (1,0,'user','User Navigation Menu'),(2,1,'user','User Navigation Menu'),(3,1,'primary','Primary Navigation Menu'); /*!40000 ALTER TABLE `navigation_menus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notes` -- DROP TABLE IF EXISTS `notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `notes` ( `note_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `date_created` datetime NOT NULL, `date_modified` datetime DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `contents` text DEFAULT NULL, PRIMARY KEY (`note_id`), KEY `notes_user_id` (`user_id`), KEY `notes_assoc` (`assoc_type`,`assoc_id`), CONSTRAINT `notes_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Notes allow users to annotate associated entities, such as submissions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notes` -- LOCK TABLES `notes` WRITE; /*!40000 ALTER TABLE `notes` DISABLE KEYS */; /*!40000 ALTER TABLE `notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification_settings` -- DROP TABLE IF EXISTS `notification_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `notification_settings` ( `notification_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `notification_id` bigint(20) NOT NULL, `locale` varchar(14) DEFAULT NULL, `setting_name` varchar(64) NOT NULL, `setting_value` mediumtext NOT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`notification_setting_id`), UNIQUE KEY `notification_settings_unique` (`notification_id`,`locale`,`setting_name`), KEY `notification_settings_notification_id` (`notification_id`), CONSTRAINT `notification_settings_notification_id_foreign` FOREIGN KEY (`notification_id`) REFERENCES `notifications` (`notification_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about notifications, including localized properties.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification_settings` -- LOCK TABLES `notification_settings` WRITE; /*!40000 ALTER TABLE `notification_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `notification_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification_subscription_settings` -- DROP TABLE IF EXISTS `notification_subscription_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `notification_subscription_settings` ( `setting_id` bigint(20) NOT NULL AUTO_INCREMENT, `setting_name` varchar(64) NOT NULL, `setting_value` mediumtext NOT NULL, `user_id` bigint(20) NOT NULL, `context` bigint(20) DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`setting_id`), KEY `notification_subscription_settings_user_id` (`user_id`), KEY `notification_subscription_settings_context` (`context`), CONSTRAINT `notification_subscription_settings_context_foreign` FOREIGN KEY (`context`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `notification_subscription_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Which email notifications a user has chosen to unsubscribe from.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification_subscription_settings` -- LOCK TABLES `notification_subscription_settings` WRITE; /*!40000 ALTER TABLE `notification_subscription_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `notification_subscription_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notifications` -- DROP TABLE IF EXISTS `notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `notifications` ( `notification_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `level` bigint(20) NOT NULL, `type` bigint(20) NOT NULL, `date_created` datetime NOT NULL, `date_read` datetime DEFAULT NULL, `assoc_type` bigint(20) DEFAULT NULL, `assoc_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`notification_id`), KEY `notifications_context_id` (`context_id`), KEY `notifications_user_id` (`user_id`), KEY `notifications_context_id_user_id` (`context_id`,`user_id`,`level`), KEY `notifications_context_id_level` (`context_id`,`level`), KEY `notifications_assoc` (`assoc_type`,`assoc_id`), KEY `notifications_user_id_level` (`user_id`,`level`), CONSTRAINT `notifications_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='User notifications created during certain operations.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notifications` -- LOCK TABLES `notifications` WRITE; /*!40000 ALTER TABLE `notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oai_resumption_tokens` -- DROP TABLE IF EXISTS `oai_resumption_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `oai_resumption_tokens` ( `oai_resumption_token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `token` varchar(32) NOT NULL, `expire` bigint(20) NOT NULL, `record_offset` int(11) NOT NULL, `params` text DEFAULT NULL, PRIMARY KEY (`oai_resumption_token_id`), UNIQUE KEY `oai_resumption_tokens_unique` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='OAI resumption tokens are used to allow for pagination of large result sets into manageable pieces.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `oai_resumption_tokens` -- LOCK TABLES `oai_resumption_tokens` WRITE; /*!40000 ALTER TABLE `oai_resumption_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `oai_resumption_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pln_deposit_objects` -- DROP TABLE IF EXISTS `pln_deposit_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pln_deposit_objects` ( `deposit_object_id` bigint(20) NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `object_id` bigint(20) NOT NULL, `object_type` varchar(36) NOT NULL, `deposit_id` bigint(20) DEFAULT NULL, `date_created` datetime NOT NULL, `date_modified` datetime DEFAULT NULL, PRIMARY KEY (`deposit_object_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pln_deposit_objects` -- LOCK TABLES `pln_deposit_objects` WRITE; /*!40000 ALTER TABLE `pln_deposit_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `pln_deposit_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pln_deposits` -- DROP TABLE IF EXISTS `pln_deposits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pln_deposits` ( `deposit_id` bigint(20) NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `uuid` varchar(36) DEFAULT NULL, `status` bigint(20) DEFAULT 0, `staging_state` varchar(255) DEFAULT NULL, `lockss_state` varchar(255) DEFAULT NULL, `date_status` datetime DEFAULT NULL, `date_created` datetime NOT NULL, `date_modified` datetime DEFAULT NULL, `export_deposit_error` varchar(1000) DEFAULT NULL, `date_preserved` datetime DEFAULT NULL, PRIMARY KEY (`deposit_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pln_deposits` -- LOCK TABLES `pln_deposits` WRITE; /*!40000 ALTER TABLE `pln_deposits` DISABLE KEYS */; /*!40000 ALTER TABLE `pln_deposits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plugin_settings` -- DROP TABLE IF EXISTS `plugin_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plugin_settings` ( `plugin_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `plugin_name` varchar(80) NOT NULL, `context_id` bigint(20) NOT NULL, `setting_name` varchar(80) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`plugin_setting_id`), UNIQUE KEY `plugin_settings_unique` (`plugin_name`,`context_id`,`setting_name`), KEY `plugin_settings_plugin_name` (`plugin_name`) ) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about plugins, including localized properties. This table is frequently used to store plugin-specific configuration.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plugin_settings` -- LOCK TABLES `plugin_settings` WRITE; /*!40000 ALTER TABLE `plugin_settings` DISABLE KEYS */; INSERT INTO `plugin_settings` VALUES (1,'defaultthemeplugin',0,'enabled','1','bool'),(2,'usageeventplugin',0,'enabled','1','bool'),(3,'acronplugin',0,'enabled','1','bool'),(4,'acronplugin',0,'crontab','[{\"className\":\"APP\\\\plugins\\\\generic\\\\pln\\\\classes\\\\tasks\\\\Depositor\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"APP\\\\plugins\\\\importexport\\\\doaj\\\\DOAJInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"PKP\\\\task\\\\ReviewReminder\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"PKP\\\\task\\\\StatisticsReport\",\"frequency\":{\"day\":\"1\"},\"args\":[]},{\"className\":\"APP\\\\tasks\\\\SubscriptionExpiryReminder\",\"frequency\":{\"day\":\"1\"},\"args\":[]},{\"className\":\"PKP\\\\task\\\\DepositDois\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"PKP\\\\task\\\\RemoveUnvalidatedExpiredUsers\",\"frequency\":{\"day\":\"1\"},\"args\":[]},{\"className\":\"PKP\\\\task\\\\EditorialReminders\",\"frequency\":{\"day\":\"1\"},\"args\":[]},{\"className\":\"PKP\\\\task\\\\UpdateIPGeoDB\",\"frequency\":{\"day\":\"10\"},\"args\":[]},{\"className\":\"APP\\\\tasks\\\\UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"PKP\\\\task\\\\ProcessQueueJobs\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"PKP\\\\task\\\\RemoveFailedJobs\",\"frequency\":{\"day\":\"1\"},\"args\":[]},{\"className\":\"APP\\\\tasks\\\\OpenAccessNotification\",\"frequency\":{\"hour\":24},\"args\":[]}]','object'),(5,'tinymceplugin',0,'enabled','1','bool'),(6,'languagetoggleblockplugin',0,'enabled','1','bool'),(7,'languagetoggleblockplugin',0,'seq','4','int'),(8,'developedbyblockplugin',0,'enabled','0','bool'),(9,'developedbyblockplugin',0,'seq','0','int'),(10,'defaultthemeplugin',1,'enabled','1','bool'),(11,'tinymceplugin',1,'enabled','1','bool'),(12,'subscriptionblockplugin',1,'enabled','0','bool'),(13,'subscriptionblockplugin',1,'seq','2','int'),(14,'languagetoggleblockplugin',1,'enabled','0','bool'),(15,'languagetoggleblockplugin',1,'seq','4','int'),(16,'developedbyblockplugin',1,'enabled','0','bool'),(17,'developedbyblockplugin',1,'seq','0','int'),(18,'informationblockplugin',1,'enabled','1','bool'),(19,'informationblockplugin',1,'seq','7','int'),(20,'resolverplugin',1,'enabled','1','bool'),(21,'webfeedplugin',1,'enabled','0','bool'),(22,'webfeedplugin',1,'displayPage','homepage','string'),(23,'webfeedplugin',1,'displayItems','1','bool'),(24,'webfeedplugin',1,'recentItems','30','int'),(25,'webfeedplugin',1,'includeIdentifiers','0','bool'),(26,'lensgalleyplugin',1,'enabled','1','bool'),(27,'googlescholarplugin',1,'enabled','1','bool'),(28,'htmlarticlegalleyplugin',1,'enabled','1','bool'),(29,'pdfjsviewerplugin',1,'enabled','1','bool'),(30,'dublincoremetaplugin',1,'enabled','1','bool'),(31,'defaultthemeplugin',1,'typography','notoSans','string'),(32,'defaultthemeplugin',1,'baseColour','#1E6292','string'),(33,'defaultthemeplugin',1,'showDescriptionInJournalIndex','false','string'),(34,'defaultthemeplugin',1,'useHomepageImageAsHeader','true','string'),(35,'defaultthemeplugin',1,'displayStats','none','string'),(36,'materialthemeplugin',0,'enabled','1','bool'),(37,'browseblockplugin',1,'enabled','1','bool'),(38,'makesubmissionblockplugin',1,'enabled','1','bool'),(39,'authorshistoryplugin',1,'enabled','1','bool'),(40,'citationsplugin',1,'enabled','1','bool'),(41,'citationstylelanguageplugin',1,'enabled','1','bool'),(42,'citationstylelanguageplugin',1,'primaryCitationStyle','modern-language-association','string'),(43,'citationstylelanguageplugin',1,'enabledCitationStyles','[\"acm-sig-proceedings\",\"acs-nano\",\"apa\",\"associacao-brasileira-de-normas-tecnicas\",\"chicago-author-date\",\"harvard-cite-them-right\",\"ieee\",\"modern-language-association\",\"turabian-fullnote-bibliography\",\"vancouver\",\"ama\"]','object'),(44,'citationstylelanguageplugin',1,'enabledCitationDownloads','[\"bibtex\"]','object'),(45,'citationstylelanguageplugin',1,'publisherLocation','','string'),(46,'citationstylelanguageplugin',1,'groupAuthor',NULL,'string'),(47,'citationstylelanguageplugin',1,'groupTranslator',NULL,'string'),(48,'crossrefplugin',1,'enabled','1','bool'),(49,'crossrefreferencelinkingplugin',1,'enabled','1','bool'),(50,'customheaderplugin',1,'enabled','1','bool'),(51,'deleteincompletesubmissionsplugin',1,'enabled','1','bool'),(52,'orcidprofileplugin',1,'enabled','0','bool'),(53,'togglerequiredmetadataplugin',1,'enabled','1','bool'),(54,'bootstrapthreethemeplugin',1,'enabled','1','bool'),(55,'classicthemeplugin',1,'enabled','1','bool'),(56,'defaultmanuscriptchildthemeplugin',1,'enabled','1','bool'),(57,'healthsciencesthemeplugin',1,'enabled','1','bool'),(58,'materialthemeplugin',1,'enabled','1','bool'),(59,'pragmathemeplugin',1,'enabled','1','bool'),(60,'bootstrapthreethemeplugin',1,'bootstrapTheme','bootstrap3','string'),(61,'bootstrapthreethemeplugin',1,'displayStats','none','string'),(62,'classicthemeplugin',1,'primaryColor','#ffd120','string'),(63,'classicthemeplugin',1,'displayStats','none','string'),(64,'healthsciencesthemeplugin',1,'baseColour','#10BECA','string'),(65,'healthsciencesthemeplugin',1,'displayStats','none','string'),(66,'defaultmanuscriptchildthemeplugin',1,'accentColour','#F7BC4A','string'),(67,'materialthemeplugin',1,'showDescriptionInJournalIndex','false','string'),(68,'materialthemeplugin',1,'useHomepageImageAsHeader','false','string'),(69,'materialthemeplugin',1,'materialBaseColour','sky','string'),(70,'pragmathemeplugin',1,'baseColour','#A8DCDD','string'),(71,'pragmathemeplugin',1,'displayStats','none','string'); /*!40000 ALTER TABLE `plugin_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `publication_categories` -- DROP TABLE IF EXISTS `publication_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `publication_categories` ( `publication_category_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `publication_id` bigint(20) NOT NULL, `category_id` bigint(20) NOT NULL, PRIMARY KEY (`publication_category_id`), UNIQUE KEY `publication_categories_id` (`publication_id`,`category_id`), KEY `publication_categories_publication_id` (`publication_id`), KEY `publication_categories_category_id` (`category_id`), CONSTRAINT `publication_categories_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`category_id`) ON DELETE CASCADE, CONSTRAINT `publication_categories_publication_id_foreign` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Associates publications (and thus submissions) with categories.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `publication_categories` -- LOCK TABLES `publication_categories` WRITE; /*!40000 ALTER TABLE `publication_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `publication_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `publication_galley_settings` -- DROP TABLE IF EXISTS `publication_galley_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `publication_galley_settings` ( `publication_galley_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `galley_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`publication_galley_setting_id`), UNIQUE KEY `publication_galley_settings_unique` (`galley_id`,`locale`,`setting_name`), KEY `publication_galley_settings_galley_id` (`galley_id`), KEY `publication_galley_settings_name_value` (`setting_name`(50),`setting_value`(150)), CONSTRAINT `publication_galley_settings_galley_id` FOREIGN KEY (`galley_id`) REFERENCES `publication_galleys` (`galley_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about publication galleys, including localized content such as labels.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `publication_galley_settings` -- LOCK TABLES `publication_galley_settings` WRITE; /*!40000 ALTER TABLE `publication_galley_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `publication_galley_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `publication_galleys` -- DROP TABLE IF EXISTS `publication_galleys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `publication_galleys` ( `galley_id` bigint(20) NOT NULL AUTO_INCREMENT, `locale` varchar(14) DEFAULT NULL, `publication_id` bigint(20) NOT NULL, `label` varchar(255) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, `remote_url` varchar(2047) DEFAULT NULL, `is_approved` smallint(6) NOT NULL DEFAULT 0, `url_path` varchar(64) DEFAULT NULL, `doi_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`galley_id`), KEY `publication_galleys_publication_id` (`publication_id`), KEY `publication_galleys_submission_file_id` (`submission_file_id`), KEY `publication_galleys_doi_id` (`doi_id`), KEY `publication_galleys_url_path` (`url_path`), CONSTRAINT `publication_galleys_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL, CONSTRAINT `publication_galleys_publication_id` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE, CONSTRAINT `publication_galleys_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Publication galleys are representations of a publication in a specific format, e.g. a PDF.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `publication_galleys` -- LOCK TABLES `publication_galleys` WRITE; /*!40000 ALTER TABLE `publication_galleys` DISABLE KEYS */; /*!40000 ALTER TABLE `publication_galleys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `publication_settings` -- DROP TABLE IF EXISTS `publication_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `publication_settings` ( `publication_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `publication_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`publication_setting_id`), UNIQUE KEY `publication_settings_unique` (`publication_id`,`locale`,`setting_name`), KEY `publication_settings_name_value` (`setting_name`(50),`setting_value`(150)), KEY `publication_settings_publication_id` (`publication_id`), CONSTRAINT `publication_settings_publication_id` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about publications, including localized properties such as the title and abstract.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `publication_settings` -- LOCK TABLES `publication_settings` WRITE; /*!40000 ALTER TABLE `publication_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `publication_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `publications` -- DROP TABLE IF EXISTS `publications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `publications` ( `publication_id` bigint(20) NOT NULL AUTO_INCREMENT, `access_status` bigint(20) DEFAULT 0, `date_published` date DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `primary_contact_id` bigint(20) DEFAULT NULL, `section_id` bigint(20) DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, `submission_id` bigint(20) NOT NULL, `status` smallint(6) NOT NULL DEFAULT 1, `url_path` varchar(64) DEFAULT NULL, `version` bigint(20) DEFAULT NULL, `doi_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`publication_id`), KEY `publications_primary_contact_id` (`primary_contact_id`), KEY `publications_section_id` (`section_id`), KEY `publications_submission_id` (`submission_id`), KEY `publications_doi_id` (`doi_id`), KEY `publications_url_path` (`url_path`), CONSTRAINT `publications_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL, CONSTRAINT `publications_primary_contact_id` FOREIGN KEY (`primary_contact_id`) REFERENCES `authors` (`author_id`) ON DELETE SET NULL, CONSTRAINT `publications_section_id` FOREIGN KEY (`section_id`) REFERENCES `sections` (`section_id`) ON DELETE SET NULL, CONSTRAINT `publications_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Each publication is one version of a submission.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `publications` -- LOCK TABLES `publications` WRITE; /*!40000 ALTER TABLE `publications` DISABLE KEYS */; /*!40000 ALTER TABLE `publications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queries` -- DROP TABLE IF EXISTS `queries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `queries` ( `query_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `stage_id` smallint(6) NOT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, `date_posted` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `closed` smallint(6) NOT NULL DEFAULT 0, PRIMARY KEY (`query_id`), KEY `queries_assoc_id` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Discussions, usually related to a submission, created by editors, authors and other editorial staff.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queries` -- LOCK TABLES `queries` WRITE; /*!40000 ALTER TABLE `queries` DISABLE KEYS */; /*!40000 ALTER TABLE `queries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `query_participants` -- DROP TABLE IF EXISTS `query_participants`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `query_participants` ( `query_participant_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `query_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`query_participant_id`), UNIQUE KEY `query_participants_unique` (`query_id`,`user_id`), KEY `query_participants_query_id` (`query_id`), KEY `query_participants_user_id` (`user_id`), CONSTRAINT `query_participants_query_id_foreign` FOREIGN KEY (`query_id`) REFERENCES `queries` (`query_id`) ON DELETE CASCADE, CONSTRAINT `query_participants_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='The users assigned to a discussion.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `query_participants` -- LOCK TABLES `query_participants` WRITE; /*!40000 ALTER TABLE `query_participants` DISABLE KEYS */; /*!40000 ALTER TABLE `query_participants` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queued_payments` -- DROP TABLE IF EXISTS `queued_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `queued_payments` ( `queued_payment_id` bigint(20) NOT NULL AUTO_INCREMENT, `date_created` datetime NOT NULL, `date_modified` datetime NOT NULL, `expiry_date` date DEFAULT NULL, `payment_data` text DEFAULT NULL, PRIMARY KEY (`queued_payment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Unfulfilled (queued) payments, i.e. payments that have not yet been completed via an online payment system.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queued_payments` -- LOCK TABLES `queued_payments` WRITE; /*!40000 ALTER TABLE `queued_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `queued_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_assignments` -- DROP TABLE IF EXISTS `review_assignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_assignments` ( `review_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `reviewer_id` bigint(20) NOT NULL, `competing_interests` text DEFAULT NULL, `recommendation` smallint(6) DEFAULT NULL, `date_assigned` datetime DEFAULT NULL, `date_notified` datetime DEFAULT NULL, `date_confirmed` datetime DEFAULT NULL, `date_completed` datetime DEFAULT NULL, `date_acknowledged` datetime DEFAULT NULL, `date_due` datetime DEFAULT NULL, `date_response_due` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `reminder_was_automatic` smallint(6) NOT NULL DEFAULT 0, `declined` smallint(6) NOT NULL DEFAULT 0, `cancelled` smallint(6) NOT NULL DEFAULT 0, `date_rated` datetime DEFAULT NULL, `date_reminded` datetime DEFAULT NULL, `quality` smallint(6) DEFAULT NULL, `review_round_id` bigint(20) NOT NULL, `stage_id` smallint(6) NOT NULL, `review_method` smallint(6) NOT NULL DEFAULT 1, `round` smallint(6) NOT NULL DEFAULT 1, `step` smallint(6) NOT NULL DEFAULT 1, `review_form_id` bigint(20) DEFAULT NULL, `considered` smallint(6) DEFAULT NULL, `request_resent` smallint(6) NOT NULL DEFAULT 0, PRIMARY KEY (`review_id`), KEY `review_assignments_submission_id` (`submission_id`), KEY `review_assignments_reviewer_id` (`reviewer_id`), KEY `review_assignment_reviewer_round` (`review_round_id`,`reviewer_id`), KEY `review_assignments_form_id` (`review_form_id`), KEY `review_assignments_reviewer_review` (`reviewer_id`,`review_id`), CONSTRAINT `review_assignments_review_form_id_foreign` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`), CONSTRAINT `review_assignments_review_round_id_foreign` FOREIGN KEY (`review_round_id`) REFERENCES `review_rounds` (`review_round_id`), CONSTRAINT `review_assignments_reviewer_id_foreign` FOREIGN KEY (`reviewer_id`) REFERENCES `users` (`user_id`), CONSTRAINT `review_assignments_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Data about peer review assignments for all submissions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_assignments` -- LOCK TABLES `review_assignments` WRITE; /*!40000 ALTER TABLE `review_assignments` DISABLE KEYS */; /*!40000 ALTER TABLE `review_assignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_files` -- DROP TABLE IF EXISTS `review_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_files` ( `review_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_id` bigint(20) NOT NULL, `submission_file_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`review_file_id`), UNIQUE KEY `review_files_unique` (`review_id`,`submission_file_id`), KEY `review_files_review_id` (`review_id`), KEY `review_files_submission_file_id` (`submission_file_id`), CONSTRAINT `review_files_review_id_foreign` FOREIGN KEY (`review_id`) REFERENCES `review_assignments` (`review_id`) ON DELETE CASCADE, CONSTRAINT `review_files_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of the submission files made available to each assigned reviewer.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_files` -- LOCK TABLES `review_files` WRITE; /*!40000 ALTER TABLE `review_files` DISABLE KEYS */; /*!40000 ALTER TABLE `review_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_form_element_settings` -- DROP TABLE IF EXISTS `review_form_element_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_form_element_settings` ( `review_form_element_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_form_element_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`review_form_element_setting_id`), UNIQUE KEY `review_form_element_settings_unique` (`review_form_element_id`,`locale`,`setting_name`), KEY `review_form_element_settings_review_form_element_id` (`review_form_element_id`), CONSTRAINT `review_form_element_settings_review_form_element_id` FOREIGN KEY (`review_form_element_id`) REFERENCES `review_form_elements` (`review_form_element_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about review form elements, including localized content such as question text.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_form_element_settings` -- LOCK TABLES `review_form_element_settings` WRITE; /*!40000 ALTER TABLE `review_form_element_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `review_form_element_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_form_elements` -- DROP TABLE IF EXISTS `review_form_elements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_form_elements` ( `review_form_element_id` bigint(20) NOT NULL AUTO_INCREMENT, `review_form_id` bigint(20) NOT NULL, `seq` double(8,2) DEFAULT NULL, `element_type` bigint(20) DEFAULT NULL, `required` smallint(6) DEFAULT NULL, `included` smallint(6) DEFAULT NULL, PRIMARY KEY (`review_form_element_id`), KEY `review_form_elements_review_form_id` (`review_form_id`), CONSTRAINT `review_form_elements_review_form_id` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Each review form element represents a single question on a review form.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_form_elements` -- LOCK TABLES `review_form_elements` WRITE; /*!40000 ALTER TABLE `review_form_elements` DISABLE KEYS */; /*!40000 ALTER TABLE `review_form_elements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_form_responses` -- DROP TABLE IF EXISTS `review_form_responses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_form_responses` ( `review_form_response_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_form_element_id` bigint(20) NOT NULL, `review_id` bigint(20) NOT NULL, `response_type` varchar(6) DEFAULT NULL, `response_value` text DEFAULT NULL, PRIMARY KEY (`review_form_response_id`), KEY `review_form_responses_review_form_element_id` (`review_form_element_id`), KEY `review_form_responses_review_id` (`review_id`), KEY `review_form_responses_unique` (`review_form_element_id`,`review_id`), CONSTRAINT `review_form_responses_review_form_element_id_foreign` FOREIGN KEY (`review_form_element_id`) REFERENCES `review_form_elements` (`review_form_element_id`) ON DELETE CASCADE, CONSTRAINT `review_form_responses_review_id_foreign` FOREIGN KEY (`review_id`) REFERENCES `review_assignments` (`review_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Each review form response records a reviewer''s answer to a review form element associated with a peer review.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_form_responses` -- LOCK TABLES `review_form_responses` WRITE; /*!40000 ALTER TABLE `review_form_responses` DISABLE KEYS */; /*!40000 ALTER TABLE `review_form_responses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_form_settings` -- DROP TABLE IF EXISTS `review_form_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_form_settings` ( `review_form_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `review_form_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`review_form_setting_id`), UNIQUE KEY `review_form_settings_unique` (`review_form_id`,`locale`,`setting_name`), KEY `review_form_settings_review_form_id` (`review_form_id`), CONSTRAINT `review_form_settings_review_form_id` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about review forms, including localized content such as names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_form_settings` -- LOCK TABLES `review_form_settings` WRITE; /*!40000 ALTER TABLE `review_form_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `review_form_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_forms` -- DROP TABLE IF EXISTS `review_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_forms` ( `review_form_id` bigint(20) NOT NULL AUTO_INCREMENT, `assoc_type` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `seq` double(8,2) DEFAULT NULL, `is_active` smallint(6) DEFAULT NULL, PRIMARY KEY (`review_form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Review forms provide custom templates for peer reviews with several types of questions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_forms` -- LOCK TABLES `review_forms` WRITE; /*!40000 ALTER TABLE `review_forms` DISABLE KEYS */; /*!40000 ALTER TABLE `review_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_round_files` -- DROP TABLE IF EXISTS `review_round_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_round_files` ( `review_round_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `review_round_id` bigint(20) NOT NULL, `stage_id` smallint(6) NOT NULL, `submission_file_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`review_round_file_id`), UNIQUE KEY `review_round_files_unique` (`submission_id`,`review_round_id`,`submission_file_id`), KEY `review_round_files_submission_id` (`submission_id`), KEY `review_round_files_review_round_id` (`review_round_id`), KEY `review_round_files_submission_file_id` (`submission_file_id`), CONSTRAINT `review_round_files_review_round_id_foreign` FOREIGN KEY (`review_round_id`) REFERENCES `review_rounds` (`review_round_id`) ON DELETE CASCADE, CONSTRAINT `review_round_files_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE, CONSTRAINT `review_round_files_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Records the files made available to reviewers for a round of reviews. These can be further customized on a per review basis with review_files.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_round_files` -- LOCK TABLES `review_round_files` WRITE; /*!40000 ALTER TABLE `review_round_files` DISABLE KEYS */; /*!40000 ALTER TABLE `review_round_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_rounds` -- DROP TABLE IF EXISTS `review_rounds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_rounds` ( `review_round_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `stage_id` bigint(20) DEFAULT NULL, `round` smallint(6) NOT NULL, `review_revision` bigint(20) DEFAULT NULL, `status` bigint(20) DEFAULT NULL, PRIMARY KEY (`review_round_id`), UNIQUE KEY `review_rounds_submission_id_stage_id_round_pkey` (`submission_id`,`stage_id`,`round`), KEY `review_rounds_submission_id` (`submission_id`), CONSTRAINT `review_rounds_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Peer review assignments are organized into multiple rounds on a submission.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_rounds` -- LOCK TABLES `review_rounds` WRITE; /*!40000 ALTER TABLE `review_rounds` DISABLE KEYS */; /*!40000 ALTER TABLE `review_rounds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `scheduled_tasks` -- DROP TABLE IF EXISTS `scheduled_tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `scheduled_tasks` ( `scheduled_task_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `class_name` varchar(255) NOT NULL, `last_run` datetime DEFAULT NULL, PRIMARY KEY (`scheduled_task_id`), UNIQUE KEY `scheduled_tasks_unique` (`class_name`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='The last time each scheduled task was run.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `scheduled_tasks` -- LOCK TABLES `scheduled_tasks` WRITE; /*!40000 ALTER TABLE `scheduled_tasks` DISABLE KEYS */; INSERT INTO `scheduled_tasks` VALUES (1,'PKP\\task\\ReviewReminder','2025-03-15 16:22:07'),(2,'PKP\\task\\StatisticsReport','2025-03-15 16:22:07'),(3,'APP\\tasks\\SubscriptionExpiryReminder','2025-03-15 16:22:07'),(4,'PKP\\task\\DepositDois','2025-03-15 16:22:07'),(5,'PKP\\task\\RemoveUnvalidatedExpiredUsers','2025-03-15 16:22:07'),(6,'PKP\\task\\EditorialReminders','2025-03-15 16:22:07'),(7,'PKP\\task\\UpdateIPGeoDB','2025-03-15 16:22:07'),(8,'APP\\tasks\\UsageStatsLoader','2025-03-15 16:22:16'),(9,'PKP\\task\\ProcessQueueJobs','2025-03-15 16:22:16'),(10,'PKP\\task\\RemoveFailedJobs','2025-03-15 16:22:16'),(11,'APP\\tasks\\OpenAccessNotification','2025-03-15 16:22:16'),(12,'APP\\plugins\\importexport\\doaj\\DOAJInfoSender','2025-03-15 16:34:47'),(13,'APP\\plugins\\generic\\pln\\classes\\tasks\\Depositor','2025-03-15 16:38:22'); /*!40000 ALTER TABLE `scheduled_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `section_settings` -- DROP TABLE IF EXISTS `section_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `section_settings` ( `section_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `section_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`section_setting_id`), UNIQUE KEY `section_settings_unique` (`section_id`,`locale`,`setting_name`), KEY `section_settings_section_id` (`section_id`), CONSTRAINT `section_settings_section_id` FOREIGN KEY (`section_id`) REFERENCES `sections` (`section_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about sections, including localized properties like section titles.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `section_settings` -- LOCK TABLES `section_settings` WRITE; /*!40000 ALTER TABLE `section_settings` DISABLE KEYS */; INSERT INTO `section_settings` VALUES (1,1,'en','title','Articles'),(2,1,'en','abbrev','ART'),(3,1,'en','policy','Section default policy'); /*!40000 ALTER TABLE `section_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sections` -- DROP TABLE IF EXISTS `sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sections` ( `section_id` bigint(20) NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `review_form_id` bigint(20) DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT 0.00, `editor_restricted` smallint(6) NOT NULL DEFAULT 0, `meta_indexed` smallint(6) NOT NULL DEFAULT 0, `meta_reviewed` smallint(6) NOT NULL DEFAULT 1, `abstracts_not_required` smallint(6) NOT NULL DEFAULT 0, `hide_title` smallint(6) NOT NULL DEFAULT 0, `hide_author` smallint(6) NOT NULL DEFAULT 0, `is_inactive` smallint(6) NOT NULL DEFAULT 0, `abstract_word_count` bigint(20) DEFAULT NULL, PRIMARY KEY (`section_id`), KEY `sections_journal_id` (`journal_id`), KEY `sections_review_form_id` (`review_form_id`), CONSTRAINT `sections_journal_id` FOREIGN KEY (`journal_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `sections_review_form_id` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of all sections into which submissions can be organized, forming the table of contents.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sections` -- LOCK TABLES `sections` WRITE; /*!40000 ALTER TABLE `sections` DISABLE KEYS */; INSERT INTO `sections` VALUES (1,1,NULL,0.00,0,1,1,0,0,0,0,NULL); /*!40000 ALTER TABLE `sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sessions` ( `session_id` varchar(128) NOT NULL, `user_id` bigint(20) DEFAULT NULL, `ip_address` varchar(39) NOT NULL, `user_agent` varchar(255) DEFAULT NULL, `created` bigint(20) NOT NULL DEFAULT 0, `last_used` bigint(20) NOT NULL DEFAULT 0, `remember` smallint(6) NOT NULL DEFAULT 0, `data` text NOT NULL, `domain` varchar(255) DEFAULT NULL, UNIQUE KEY `sessions_pkey` (`session_id`), KEY `sessions_user_id` (`user_id`), CONSTRAINT `sessions_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Session data for logged-in users.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; INSERT INTO `sessions` VALUES ('06f93a241e3138ab3ecfc9be2600a532',NULL,'198.235.24.186','',1742065980,1742065980,0,'','zen.imath.kiev.ua'),('0bbebca109068b3a4b8d6e3f938184d8',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742104405,1742104405,0,'','zen.imath.kiev.ua'),('11782c823c6e9640e7ec66ad82c256fc',NULL,'45.156.129.120','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1742093744,1742093744,0,'','zen.imath.kiev.ua'),('1ccc7cbcb82ea1a33339e7c2e54c0942',NULL,'123.160.223.75','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',1742067316,1742067316,0,'','zen.imath.kiev.ua'),('27589718fcfcb0ddef75ec3b584c927f',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742080854,1742080854,0,'','zen.imath.kiev.ua'),('2c41043b242251afe3695b81202ae13e',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742104398,1742104398,0,'','zen.imath.kiev.ua'),('2cc1e8a8145763063334e81154765efb',NULL,'45.156.129.120','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1742093744,1742093744,0,'','zen.imath.kiev.ua'),('45a6612f57182e739bfb6bf3372ddebf',1,'176.98.30.31','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',1742048521,1742056381,1,'csrf|a:2:{s:9:\"timestamp\";i:1742056371;s:5:\"token\";s:32:\"fef0403a16298dd60ae3d0a5964f2717\";}userId|i:1;username|s:5:\"admin\";','zen.imath.kiev.ua'),('58f6e0b041826144d117e39f5e8df6bc',NULL,'205.210.31.55','',1742077527,1742077527,0,'','zen.imath.kiev.ua'),('646ab0e59ff76fa3d38abbf0a7c7a7ed',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742080854,1742080854,0,'','zen.imath.kiev.ua'),('6500face44d080a761c6680cc47619f7',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742104398,1742104398,0,'','zen.imath.kiev.ua'),('78061a745b773979888261d098202b1a',NULL,'198.235.24.186','',1742065980,1742065980,0,'','zen.imath.kiev.ua'),('97ab58cef76b4b0b5456281f9abda973',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742080847,1742080847,0,'','zen.imath.kiev.ua'),('a25eb922896b9b27b7028b08000acc6d',NULL,'145.220.91.19','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0',1742066320,1742066320,0,'','zen.imath.kiev.ua'),('c130445141be04c9a396c2069a38bf69',NULL,'205.210.31.55','',1742077527,1742077527,0,'','zen.imath.kiev.ua'),('c46867fb05c5fe298587f890ea0f3452',NULL,'123.160.223.75','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',1742067315,1742067315,0,'','zen.imath.kiev.ua'),('c8c2a782b1f86ba4c9b1018d6f3c662d',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742080847,1742080847,0,'','zen.imath.kiev.ua'),('cdff4c008332a8572d35ed6b9a4a4f63',NULL,'123.160.223.74','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1742067323,1742067325,0,'','zen.imath.kiev.ua'),('db5f43de90125ae47c45a3f542917f58',NULL,'145.220.91.19','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0',1742066320,1742066320,0,'','zen.imath.kiev.ua'),('ed6c29c984c02492056b5244ee6b3314',NULL,'104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1742104404,1742104404,0,'','zen.imath.kiev.ua'); /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site` -- DROP TABLE IF EXISTS `site`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site` ( `site_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `redirect` bigint(20) NOT NULL DEFAULT 0 COMMENT 'If not 0, redirect to the specified journal/conference/... site.', `primary_locale` varchar(14) NOT NULL COMMENT 'Primary locale for the site.', `min_password_length` smallint(6) NOT NULL DEFAULT 6, `installed_locales` varchar(1024) NOT NULL DEFAULT 'en' COMMENT 'Locales for which support has been installed.', `supported_locales` varchar(1024) DEFAULT NULL COMMENT 'Locales supported by the site (for hosted journals/conferences/...).', `original_style_file_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`site_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A singleton table describing basic information about the site.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site` -- LOCK TABLES `site` WRITE; /*!40000 ALTER TABLE `site` DISABLE KEYS */; INSERT INTO `site` VALUES (1,0,'en',6,'[\"en\"]','[\"en\"]',NULL); /*!40000 ALTER TABLE `site` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_settings` -- DROP TABLE IF EXISTS `site_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_settings` ( `site_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `setting_name` varchar(255) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`site_setting_id`), UNIQUE KEY `site_settings_unique` (`setting_name`,`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about the site, including localized properties such as its name.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_settings` -- LOCK TABLES `site_settings` WRITE; /*!40000 ALTER TABLE `site_settings` DISABLE KEYS */; INSERT INTO `site_settings` VALUES (1,'contactEmail','en','vasyl.ostrovskyi@gmail.com'),(2,'contactName','en','Open Journal Systems'),(3,'compressStatsLogs','','0'),(4,'enableGeoUsageStats','','disabled'),(5,'enableInstitutionUsageStats','','0'),(6,'keepDailyUsageStats','','0'),(7,'isSiteSushiPlatform','','0'),(8,'isSushiApiPublic','','1'),(9,'disableSharedReviewerStatistics','','0'),(10,'themePluginPath','','default'),(11,'uniqueSiteId','','7928686B-04E6-4D84-960D-3A047FBFFBC6'); /*!40000 ALTER TABLE `site_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stage_assignments` -- DROP TABLE IF EXISTS `stage_assignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `stage_assignments` ( `stage_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `user_group_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `date_assigned` datetime NOT NULL, `recommend_only` smallint(6) NOT NULL DEFAULT 0, `can_change_metadata` smallint(6) NOT NULL DEFAULT 0, PRIMARY KEY (`stage_assignment_id`), UNIQUE KEY `stage_assignment` (`submission_id`,`user_group_id`,`user_id`), KEY `stage_assignments_user_group_id` (`user_group_id`), KEY `stage_assignments_user_id` (`user_id`), KEY `stage_assignments_submission_id` (`submission_id`), CONSTRAINT `stage_assignments_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE, CONSTRAINT `stage_assignments_user_group_id` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE, CONSTRAINT `stage_assignments_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Who can access a submission while it is in the editorial workflow. Includes all editorial and author assignments. For reviewers, see review_assignments.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stage_assignments` -- LOCK TABLES `stage_assignments` WRITE; /*!40000 ALTER TABLE `stage_assignments` DISABLE KEYS */; /*!40000 ALTER TABLE `stage_assignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `static_page_settings` -- DROP TABLE IF EXISTS `static_page_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `static_page_settings` ( `static_page_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `static_page_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` longtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)', PRIMARY KEY (`static_page_setting_id`), KEY `static_page_settings_static_page_id` (`static_page_id`), CONSTRAINT `static_page_settings_static_page_id` FOREIGN KEY (`static_page_id`) REFERENCES `static_pages` (`static_page_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `static_page_settings` -- LOCK TABLES `static_page_settings` WRITE; /*!40000 ALTER TABLE `static_page_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `static_page_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `static_pages` -- DROP TABLE IF EXISTS `static_pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `static_pages` ( `static_page_id` bigint(20) NOT NULL AUTO_INCREMENT, `path` varchar(255) NOT NULL, `context_id` bigint(20) NOT NULL, PRIMARY KEY (`static_page_id`), KEY `static_pages_context_id` (`context_id`), CONSTRAINT `static_pages_context_id` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `static_pages` -- LOCK TABLES `static_pages` WRITE; /*!40000 ALTER TABLE `static_pages` DISABLE KEYS */; /*!40000 ALTER TABLE `static_pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subeditor_submission_group` -- DROP TABLE IF EXISTS `subeditor_submission_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `subeditor_submission_group` ( `subeditor_submission_group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `assoc_type` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_group_id` bigint(20) NOT NULL, PRIMARY KEY (`subeditor_submission_group_id`), UNIQUE KEY `section_editors_unique` (`context_id`,`assoc_id`,`assoc_type`,`user_id`,`user_group_id`), KEY `subeditor_submission_group_context_id` (`context_id`), KEY `subeditor_submission_group_user_id` (`user_id`), KEY `subeditor_submission_group_user_group_id` (`user_group_id`), KEY `subeditor_submission_group_assoc_id` (`assoc_id`,`assoc_type`), CONSTRAINT `section_editors_context_id` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `subeditor_submission_group_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE, CONSTRAINT `subeditor_submission_group_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Subeditor assignments to e.g. sections and categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subeditor_submission_group` -- LOCK TABLES `subeditor_submission_group` WRITE; /*!40000 ALTER TABLE `subeditor_submission_group` DISABLE KEYS */; /*!40000 ALTER TABLE `subeditor_submission_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_comments` -- DROP TABLE IF EXISTS `submission_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_comments` ( `comment_id` bigint(20) NOT NULL AUTO_INCREMENT, `comment_type` bigint(20) DEFAULT NULL, `role_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `assoc_id` bigint(20) NOT NULL, `author_id` bigint(20) NOT NULL, `comment_title` text NOT NULL, `comments` text DEFAULT NULL, `date_posted` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `viewable` smallint(6) DEFAULT NULL, PRIMARY KEY (`comment_id`), KEY `submission_comments_submission_id` (`submission_id`), KEY `submission_comments_author_id` (`author_id`), CONSTRAINT `submission_comments_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE, CONSTRAINT `submission_comments_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Comments on a submission, e.g. peer review comments'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_comments` -- LOCK TABLES `submission_comments` WRITE; /*!40000 ALTER TABLE `submission_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_file_revisions` -- DROP TABLE IF EXISTS `submission_file_revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_file_revisions` ( `revision_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_file_id` bigint(20) unsigned NOT NULL, `file_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`revision_id`), KEY `submission_file_revisions_submission_file_id` (`submission_file_id`), KEY `submission_file_revisions_file_id` (`file_id`), CONSTRAINT `submission_file_revisions_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`file_id`) ON DELETE CASCADE, CONSTRAINT `submission_file_revisions_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Revisions map submission_file entries to files on the data store.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_file_revisions` -- LOCK TABLES `submission_file_revisions` WRITE; /*!40000 ALTER TABLE `submission_file_revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_file_revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_file_settings` -- DROP TABLE IF EXISTS `submission_file_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_file_settings` ( `submission_file_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_file_id` bigint(20) unsigned NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`submission_file_setting_id`), UNIQUE KEY `submission_file_settings_unique` (`submission_file_id`,`locale`,`setting_name`), KEY `submission_file_settings_submission_file_id` (`submission_file_id`), CONSTRAINT `submission_file_settings_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Localized data about submission files like published metadata.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_file_settings` -- LOCK TABLES `submission_file_settings` WRITE; /*!40000 ALTER TABLE `submission_file_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_file_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_files` -- DROP TABLE IF EXISTS `submission_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_files` ( `submission_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `file_id` bigint(20) unsigned NOT NULL, `source_submission_file_id` bigint(20) unsigned DEFAULT NULL, `genre_id` bigint(20) DEFAULT NULL, `file_stage` bigint(20) NOT NULL, `direct_sales_price` varchar(255) DEFAULT NULL, `sales_type` varchar(255) DEFAULT NULL, `viewable` smallint(6) DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `uploader_user_id` bigint(20) DEFAULT NULL, `assoc_type` bigint(20) DEFAULT NULL, `assoc_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`submission_file_id`), KEY `submission_files_submission_id` (`submission_id`), KEY `submission_files_file_id` (`file_id`), KEY `submission_files_genre_id` (`genre_id`), KEY `submission_files_uploader_user_id` (`uploader_user_id`), KEY `submission_files_stage_assoc` (`file_stage`,`assoc_type`,`assoc_id`), KEY `submission_files_source_submission_file_id` (`source_submission_file_id`), CONSTRAINT `submission_files_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`file_id`) ON DELETE CASCADE, CONSTRAINT `submission_files_genre_id_foreign` FOREIGN KEY (`genre_id`) REFERENCES `genres` (`genre_id`) ON DELETE SET NULL, CONSTRAINT `submission_files_source_submission_file_id_foreign` FOREIGN KEY (`source_submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE, CONSTRAINT `submission_files_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE, CONSTRAINT `submission_files_uploader_user_id_foreign` FOREIGN KEY (`uploader_user_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='All files associated with a submission, such as those uploaded during submission, as revisions, or by copyeditors or layout editors for production.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_files` -- LOCK TABLES `submission_files` WRITE; /*!40000 ALTER TABLE `submission_files` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_search_keyword_list` -- DROP TABLE IF EXISTS `submission_search_keyword_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_search_keyword_list` ( `keyword_id` bigint(20) NOT NULL AUTO_INCREMENT, `keyword_text` varchar(60) NOT NULL, PRIMARY KEY (`keyword_id`), UNIQUE KEY `submission_search_keyword_text` (`keyword_text`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of all keywords used in the search index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_search_keyword_list` -- LOCK TABLES `submission_search_keyword_list` WRITE; /*!40000 ALTER TABLE `submission_search_keyword_list` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_search_keyword_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_search_object_keywords` -- DROP TABLE IF EXISTS `submission_search_object_keywords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_search_object_keywords` ( `submission_search_object_keyword_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `object_id` bigint(20) NOT NULL, `keyword_id` bigint(20) NOT NULL, `pos` int(11) NOT NULL COMMENT 'Word position of the keyword in the object.', PRIMARY KEY (`submission_search_object_keyword_id`), UNIQUE KEY `submission_search_object_keywords_unique` (`object_id`,`pos`), KEY `submission_search_object_keywords_object_id` (`object_id`), KEY `submission_search_object_keywords_keyword_id` (`keyword_id`), CONSTRAINT `submission_search_object_keywords_keyword_id` FOREIGN KEY (`keyword_id`) REFERENCES `submission_search_keyword_list` (`keyword_id`) ON DELETE CASCADE, CONSTRAINT `submission_search_object_keywords_object_id_foreign` FOREIGN KEY (`object_id`) REFERENCES `submission_search_objects` (`object_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Relationships between search objects and keywords in the search index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_search_object_keywords` -- LOCK TABLES `submission_search_object_keywords` WRITE; /*!40000 ALTER TABLE `submission_search_object_keywords` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_search_object_keywords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_search_objects` -- DROP TABLE IF EXISTS `submission_search_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_search_objects` ( `object_id` bigint(20) NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `type` int(11) NOT NULL COMMENT 'Type of item. E.g., abstract, fulltext, etc.', `assoc_id` bigint(20) DEFAULT NULL COMMENT 'Optional ID of an associated record (e.g., a file_id)', PRIMARY KEY (`object_id`), KEY `submission_search_objects_submission_id` (`submission_id`), CONSTRAINT `submission_search_object_submission` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of all search objects indexed in the search index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_search_objects` -- LOCK TABLES `submission_search_objects` WRITE; /*!40000 ALTER TABLE `submission_search_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_search_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submission_settings` -- DROP TABLE IF EXISTS `submission_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submission_settings` ( `submission_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`submission_setting_id`), UNIQUE KEY `submission_settings_unique` (`submission_id`,`locale`,`setting_name`), KEY `submission_settings_submission_id` (`submission_id`), CONSTRAINT `submission_settings_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Localized data about submissions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submission_settings` -- LOCK TABLES `submission_settings` WRITE; /*!40000 ALTER TABLE `submission_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `submission_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `submissions` -- DROP TABLE IF EXISTS `submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `submissions` ( `submission_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `current_publication_id` bigint(20) DEFAULT NULL, `date_last_activity` datetime DEFAULT NULL, `date_submitted` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `stage_id` bigint(20) NOT NULL DEFAULT 1, `locale` varchar(14) DEFAULT NULL, `status` smallint(6) NOT NULL DEFAULT 1, `submission_progress` varchar(50) NOT NULL DEFAULT 'start', `work_type` smallint(6) DEFAULT 0, PRIMARY KEY (`submission_id`), KEY `submissions_context_id` (`context_id`), KEY `submissions_publication_id` (`current_publication_id`), CONSTRAINT `submissions_context_id` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `submissions_publication_id` FOREIGN KEY (`current_publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='All submissions submitted to the context, including incomplete, declined and unpublished submissions.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `submissions` -- LOCK TABLES `submissions` WRITE; /*!40000 ALTER TABLE `submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscription_type_settings` -- DROP TABLE IF EXISTS `subscription_type_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `subscription_type_settings` ( `subscription_type_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, `setting_type` varchar(6) NOT NULL, PRIMARY KEY (`subscription_type_setting_id`), UNIQUE KEY `subscription_type_settings_unique` (`type_id`,`locale`,`setting_name`), KEY `subscription_type_settings_type_id` (`type_id`), CONSTRAINT `subscription_type_settings_type_id` FOREIGN KEY (`type_id`) REFERENCES `subscription_types` (`type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about subscription types, including localized properties such as names.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscription_type_settings` -- LOCK TABLES `subscription_type_settings` WRITE; /*!40000 ALTER TABLE `subscription_type_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `subscription_type_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscription_types` -- DROP TABLE IF EXISTS `subscription_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `subscription_types` ( `type_id` bigint(20) NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `cost` double(8,2) NOT NULL, `currency_code_alpha` varchar(3) NOT NULL, `duration` smallint(6) DEFAULT NULL, `format` smallint(6) NOT NULL, `institutional` smallint(6) NOT NULL DEFAULT 0, `membership` smallint(6) NOT NULL DEFAULT 0, `disable_public_display` smallint(6) NOT NULL, `seq` double(8,2) NOT NULL, PRIMARY KEY (`type_id`), KEY `subscription_types_journal_id` (`journal_id`), CONSTRAINT `subscription_types_journal_id` FOREIGN KEY (`journal_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Subscription types represent the kinds of subscriptions that a user or institution may have, such as an annual subscription or a discounted subscription.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscription_types` -- LOCK TABLES `subscription_types` WRITE; /*!40000 ALTER TABLE `subscription_types` DISABLE KEYS */; /*!40000 ALTER TABLE `subscription_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscriptions` -- DROP TABLE IF EXISTS `subscriptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `subscriptions` ( `subscription_id` bigint(20) NOT NULL AUTO_INCREMENT, `journal_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `type_id` bigint(20) NOT NULL, `date_start` date DEFAULT NULL, `date_end` datetime DEFAULT NULL, `status` smallint(6) NOT NULL DEFAULT 1, `membership` varchar(40) DEFAULT NULL, `reference_number` varchar(40) DEFAULT NULL, `notes` text DEFAULT NULL, PRIMARY KEY (`subscription_id`), KEY `subscriptions_journal_id` (`journal_id`), KEY `subscriptions_user_id` (`user_id`), KEY `subscriptions_type_id` (`type_id`), CONSTRAINT `subscriptions_journal_id` FOREIGN KEY (`journal_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `subscriptions_type_id` FOREIGN KEY (`type_id`) REFERENCES `subscription_types` (`type_id`) ON DELETE CASCADE, CONSTRAINT `subscriptions_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='A list of subscriptions, both institutional and individual, for journals that use subscription-based publishing.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscriptions` -- LOCK TABLES `subscriptions` WRITE; /*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */; /*!40000 ALTER TABLE `subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `temporary_files` -- DROP TABLE IF EXISTS `temporary_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `temporary_files` ( `file_id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `file_name` varchar(90) NOT NULL, `file_type` varchar(255) DEFAULT NULL, `file_size` bigint(20) NOT NULL, `original_file_name` varchar(127) DEFAULT NULL, `date_uploaded` datetime NOT NULL, PRIMARY KEY (`file_id`), KEY `temporary_files_user_id` (`user_id`), CONSTRAINT `temporary_files_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Temporary files, e.g. where files are kept during an upload process before they are moved somewhere more appropriate.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `temporary_files` -- LOCK TABLES `temporary_files` WRITE; /*!40000 ALTER TABLE `temporary_files` DISABLE KEYS */; /*!40000 ALTER TABLE `temporary_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usage_stats_institution_temporary_records` -- DROP TABLE IF EXISTS `usage_stats_institution_temporary_records`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usage_stats_institution_temporary_records` ( `usage_stats_temp_institution_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `line_number` bigint(20) NOT NULL, `institution_id` bigint(20) NOT NULL, PRIMARY KEY (`usage_stats_temp_institution_id`), UNIQUE KEY `usitr_load_id_line_number_institution_id` (`load_id`,`line_number`,`institution_id`), KEY `usi_institution_id` (`institution_id`), CONSTRAINT `usi_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Temporary stats for views and downloads from institutions based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usage_stats_institution_temporary_records` -- LOCK TABLES `usage_stats_institution_temporary_records` WRITE; /*!40000 ALTER TABLE `usage_stats_institution_temporary_records` DISABLE KEYS */; /*!40000 ALTER TABLE `usage_stats_institution_temporary_records` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usage_stats_total_temporary_records` -- DROP TABLE IF EXISTS `usage_stats_total_temporary_records`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usage_stats_total_temporary_records` ( `usage_stats_temp_total_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL, `ip` varchar(64) NOT NULL, `user_agent` varchar(255) NOT NULL, `line_number` bigint(20) NOT NULL, `canonical_url` varchar(255) NOT NULL, `issue_id` bigint(20) DEFAULT NULL, `issue_galley_id` bigint(20) DEFAULT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) DEFAULT NULL, `representation_id` bigint(20) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `assoc_type` bigint(20) NOT NULL, `file_type` smallint(6) DEFAULT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `load_id` varchar(50) NOT NULL, PRIMARY KEY (`usage_stats_temp_total_id`), KEY `usage_stats_total_temporary_records_issue_id` (`issue_id`), KEY `usage_stats_total_temporary_records_issue_galley_id` (`issue_galley_id`), KEY `usage_stats_total_temporary_records_context_id` (`context_id`), KEY `usage_stats_total_temporary_records_submission_id` (`submission_id`), KEY `usage_stats_total_temporary_records_representation_id` (`representation_id`), KEY `usage_stats_total_temporary_records_submission_file_id` (`submission_file_id`), KEY `ust_load_id_context_id_ip` (`load_id`,`context_id`,`ip`), CONSTRAINT `ust_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `ust_issue_galley_id_foreign` FOREIGN KEY (`issue_galley_id`) REFERENCES `issue_galleys` (`galley_id`) ON DELETE CASCADE, CONSTRAINT `ust_issue_id_foreign` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE CASCADE, CONSTRAINT `ust_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_galleys` (`galley_id`) ON DELETE CASCADE, CONSTRAINT `ust_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE, CONSTRAINT `ust_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Temporary stats totals based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usage_stats_total_temporary_records` -- LOCK TABLES `usage_stats_total_temporary_records` WRITE; /*!40000 ALTER TABLE `usage_stats_total_temporary_records` DISABLE KEYS */; /*!40000 ALTER TABLE `usage_stats_total_temporary_records` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usage_stats_unique_item_investigations_temporary_records` -- DROP TABLE IF EXISTS `usage_stats_unique_item_investigations_temporary_records`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usage_stats_unique_item_investigations_temporary_records` ( `usage_stats_temp_unique_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL, `ip` varchar(64) NOT NULL, `user_agent` varchar(255) NOT NULL, `line_number` bigint(20) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `representation_id` bigint(20) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `assoc_type` bigint(20) NOT NULL, `file_type` smallint(6) DEFAULT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `load_id` varchar(50) NOT NULL, PRIMARY KEY (`usage_stats_temp_unique_item_id`), KEY `usii_context_id` (`context_id`), KEY `usii_submission_id` (`submission_id`), KEY `usii_representation_id` (`representation_id`), KEY `usii_submission_file_id` (`submission_file_id`), KEY `usii_load_id_context_id_ip` (`load_id`,`context_id`,`ip`), CONSTRAINT `usii_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `usii_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_galleys` (`galley_id`) ON DELETE CASCADE, CONSTRAINT `usii_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE, CONSTRAINT `usii_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Temporary stats on unique downloads based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usage_stats_unique_item_investigations_temporary_records` -- LOCK TABLES `usage_stats_unique_item_investigations_temporary_records` WRITE; /*!40000 ALTER TABLE `usage_stats_unique_item_investigations_temporary_records` DISABLE KEYS */; /*!40000 ALTER TABLE `usage_stats_unique_item_investigations_temporary_records` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usage_stats_unique_item_requests_temporary_records` -- DROP TABLE IF EXISTS `usage_stats_unique_item_requests_temporary_records`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usage_stats_unique_item_requests_temporary_records` ( `usage_stats_temp_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL, `ip` varchar(64) NOT NULL, `user_agent` varchar(255) NOT NULL, `line_number` bigint(20) NOT NULL, `context_id` bigint(20) NOT NULL, `submission_id` bigint(20) NOT NULL, `representation_id` bigint(20) DEFAULT NULL, `submission_file_id` bigint(20) unsigned DEFAULT NULL, `assoc_type` bigint(20) NOT NULL, `file_type` smallint(6) DEFAULT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `load_id` varchar(50) NOT NULL, PRIMARY KEY (`usage_stats_temp_item_id`), KEY `usir_context_id` (`context_id`), KEY `usir_submission_id` (`submission_id`), KEY `usir_representation_id` (`representation_id`), KEY `usir_submission_file_id` (`submission_file_id`), KEY `usir_load_id_context_id_ip` (`load_id`,`context_id`,`ip`), CONSTRAINT `usir_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `usir_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_galleys` (`galley_id`) ON DELETE CASCADE, CONSTRAINT `usir_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE, CONSTRAINT `usir_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Temporary stats on unique views based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usage_stats_unique_item_requests_temporary_records` -- LOCK TABLES `usage_stats_unique_item_requests_temporary_records` WRITE; /*!40000 ALTER TABLE `usage_stats_unique_item_requests_temporary_records` DISABLE KEYS */; /*!40000 ALTER TABLE `usage_stats_unique_item_requests_temporary_records` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_group_settings` -- DROP TABLE IF EXISTS `user_group_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_group_settings` ( `user_group_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_group_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`user_group_setting_id`), UNIQUE KEY `user_group_settings_unique` (`user_group_id`,`locale`,`setting_name`), KEY `user_group_settings_user_group_id` (`user_group_id`), CONSTRAINT `user_group_settings_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about user groups, including localized properties such as the name.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_group_settings` -- LOCK TABLES `user_group_settings` WRITE; /*!40000 ALTER TABLE `user_group_settings` DISABLE KEYS */; INSERT INTO `user_group_settings` VALUES (1,1,'en','name','Site Admin'),(2,2,'','nameLocaleKey','default.groups.name.manager'),(3,2,'','abbrevLocaleKey','default.groups.abbrev.manager'),(4,2,'en','abbrev','JM'),(5,2,'en','name','Journal manager'),(6,3,'','nameLocaleKey','default.groups.name.editor'),(7,3,'','abbrevLocaleKey','default.groups.abbrev.editor'),(8,3,'en','abbrev','JE'),(9,3,'en','name','Journal editor'),(10,4,'','nameLocaleKey','default.groups.name.productionEditor'),(11,4,'','abbrevLocaleKey','default.groups.abbrev.productionEditor'),(12,4,'en','abbrev','ProdE'),(13,4,'en','name','Production editor'),(14,5,'','nameLocaleKey','default.groups.name.sectionEditor'),(15,5,'','abbrevLocaleKey','default.groups.abbrev.sectionEditor'),(16,5,'en','abbrev','SecE'),(17,5,'en','name','Section editor'),(18,6,'','nameLocaleKey','default.groups.name.guestEditor'),(19,6,'','abbrevLocaleKey','default.groups.abbrev.guestEditor'),(20,6,'en','abbrev','GE'),(21,6,'en','name','Guest editor'),(22,7,'','nameLocaleKey','default.groups.name.copyeditor'),(23,7,'','abbrevLocaleKey','default.groups.abbrev.copyeditor'),(24,7,'en','abbrev','CE'),(25,7,'en','name','Copyeditor'),(26,8,'','nameLocaleKey','default.groups.name.designer'),(27,8,'','abbrevLocaleKey','default.groups.abbrev.designer'),(28,8,'en','abbrev','Design'),(29,8,'en','name','Designer'),(30,9,'','nameLocaleKey','default.groups.name.funding'),(31,9,'','abbrevLocaleKey','default.groups.abbrev.funding'),(32,9,'en','abbrev','FC'),(33,9,'en','name','Funding coordinator'),(34,10,'','nameLocaleKey','default.groups.name.indexer'),(35,10,'','abbrevLocaleKey','default.groups.abbrev.indexer'),(36,10,'en','abbrev','IND'),(37,10,'en','name','Indexer'),(38,11,'','nameLocaleKey','default.groups.name.layoutEditor'),(39,11,'','abbrevLocaleKey','default.groups.abbrev.layoutEditor'),(40,11,'en','abbrev','LE'),(41,11,'en','name','Layout Editor'),(42,12,'','nameLocaleKey','default.groups.name.marketing'),(43,12,'','abbrevLocaleKey','default.groups.abbrev.marketing'),(44,12,'en','abbrev','MS'),(45,12,'en','name','Marketing and sales coordinator'),(46,13,'','nameLocaleKey','default.groups.name.proofreader'),(47,13,'','abbrevLocaleKey','default.groups.abbrev.proofreader'),(48,13,'en','abbrev','PR'),(49,13,'en','name','Proofreader'),(50,14,'','nameLocaleKey','default.groups.name.author'),(51,14,'','abbrevLocaleKey','default.groups.abbrev.author'),(52,14,'en','abbrev','AU'),(53,14,'en','name','Author'),(54,15,'','nameLocaleKey','default.groups.name.translator'),(55,15,'','abbrevLocaleKey','default.groups.abbrev.translator'),(56,15,'en','abbrev','Trans'),(57,15,'en','name','Translator'),(58,16,'','nameLocaleKey','default.groups.name.externalReviewer'),(59,16,'','abbrevLocaleKey','default.groups.abbrev.externalReviewer'),(60,16,'en','abbrev','R'),(61,16,'en','name','Reviewer'),(62,17,'','nameLocaleKey','default.groups.name.reader'),(63,17,'','abbrevLocaleKey','default.groups.abbrev.reader'),(64,17,'en','abbrev','Read'),(65,17,'en','name','Reader'),(66,18,'','nameLocaleKey','default.groups.name.subscriptionManager'),(67,18,'','abbrevLocaleKey','default.groups.abbrev.subscriptionManager'),(68,18,'en','abbrev','SubM'),(69,18,'en','name','Subscription Manager'); /*!40000 ALTER TABLE `user_group_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_group_stage` -- DROP TABLE IF EXISTS `user_group_stage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_group_stage` ( `user_group_stage_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `user_group_id` bigint(20) NOT NULL, `stage_id` bigint(20) NOT NULL, PRIMARY KEY (`user_group_stage_id`), UNIQUE KEY `user_group_stage_unique` (`context_id`,`user_group_id`,`stage_id`), KEY `user_group_stage_context_id` (`context_id`), KEY `user_group_stage_user_group_id` (`user_group_id`), KEY `user_group_stage_stage_id` (`stage_id`), CONSTRAINT `user_group_stage_context_id` FOREIGN KEY (`context_id`) REFERENCES `journals` (`journal_id`) ON DELETE CASCADE, CONSTRAINT `user_group_stage_user_group_id` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Which stages of the editorial workflow the user_groups can access.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_group_stage` -- LOCK TABLES `user_group_stage` WRITE; /*!40000 ALTER TABLE `user_group_stage` DISABLE KEYS */; INSERT INTO `user_group_stage` VALUES (1,1,3,1),(2,1,3,3),(3,1,3,4),(4,1,3,5),(5,1,4,4),(6,1,4,5),(7,1,5,1),(8,1,5,3),(9,1,5,4),(10,1,5,5),(11,1,6,1),(12,1,6,3),(13,1,6,4),(14,1,6,5),(15,1,7,4),(16,1,8,5),(17,1,9,1),(18,1,9,3),(19,1,10,5),(20,1,11,5),(21,1,12,4),(22,1,13,5),(23,1,14,1),(24,1,14,3),(25,1,14,4),(26,1,14,5),(27,1,15,1),(28,1,15,3),(29,1,15,4),(30,1,15,5),(31,1,16,3); /*!40000 ALTER TABLE `user_group_stage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_groups` -- DROP TABLE IF EXISTS `user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_groups` ( `user_group_id` bigint(20) NOT NULL AUTO_INCREMENT, `context_id` bigint(20) NOT NULL, `role_id` bigint(20) NOT NULL, `is_default` smallint(6) NOT NULL DEFAULT 0, `show_title` smallint(6) NOT NULL DEFAULT 1, `permit_self_registration` smallint(6) NOT NULL DEFAULT 0, `permit_metadata_edit` smallint(6) NOT NULL DEFAULT 0, PRIMARY KEY (`user_group_id`), KEY `user_groups_user_group_id` (`user_group_id`), KEY `user_groups_context_id` (`context_id`), KEY `user_groups_role_id` (`role_id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='All defined user roles in a context, such as Author, Reviewer, Section Editor and Journal Manager.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_groups` -- LOCK TABLES `user_groups` WRITE; /*!40000 ALTER TABLE `user_groups` DISABLE KEYS */; INSERT INTO `user_groups` VALUES (1,0,1,1,1,0,0),(2,1,16,1,1,0,1),(3,1,16,1,1,0,1),(4,1,16,1,1,0,1),(5,1,17,1,1,0,1),(6,1,17,1,1,0,0),(7,1,4097,1,1,0,0),(8,1,4097,1,1,0,0),(9,1,4097,1,1,0,0),(10,1,4097,1,1,0,0),(11,1,4097,1,1,0,0),(12,1,4097,1,1,0,0),(13,1,4097,1,1,0,0),(14,1,65536,1,1,1,0),(15,1,65536,1,1,0,0),(16,1,4096,1,1,1,0),(17,1,1048576,1,1,1,0),(18,1,2097152,1,1,0,0); /*!40000 ALTER TABLE `user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_interests` -- DROP TABLE IF EXISTS `user_interests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_interests` ( `user_interest_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `controlled_vocab_entry_id` bigint(20) NOT NULL, PRIMARY KEY (`user_interest_id`), UNIQUE KEY `u_e_pkey` (`user_id`,`controlled_vocab_entry_id`), KEY `user_interests_user_id` (`user_id`), KEY `user_interests_controlled_vocab_entry_id` (`controlled_vocab_entry_id`), CONSTRAINT `user_interests_controlled_vocab_entry_id_foreign` FOREIGN KEY (`controlled_vocab_entry_id`) REFERENCES `controlled_vocab_entries` (`controlled_vocab_entry_id`) ON DELETE CASCADE, CONSTRAINT `user_interests_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Associates users with user interests (which are stored in the controlled vocabulary tables).'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_interests` -- LOCK TABLES `user_interests` WRITE; /*!40000 ALTER TABLE `user_interests` DISABLE KEYS */; /*!40000 ALTER TABLE `user_interests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_settings` -- DROP TABLE IF EXISTS `user_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_settings` ( `user_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext DEFAULT NULL, PRIMARY KEY (`user_setting_id`), UNIQUE KEY `user_settings_unique` (`user_id`,`locale`,`setting_name`), KEY `user_settings_user_id` (`user_id`), KEY `user_settings_locale_setting_name_index` (`setting_name`,`locale`), CONSTRAINT `user_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='More data about users, including localized properties like their name and affiliation.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_settings` -- LOCK TABLES `user_settings` WRITE; /*!40000 ALTER TABLE `user_settings` DISABLE KEYS */; INSERT INTO `user_settings` VALUES (1,1,'en','familyName','admin'),(2,1,'en','givenName','admin'),(3,1,'en','affiliation',''),(4,1,'en','signature',''); /*!40000 ALTER TABLE `user_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_user_groups` -- DROP TABLE IF EXISTS `user_user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_user_groups` ( `user_user_group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_group_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`user_user_group_id`), UNIQUE KEY `user_user_groups_unique` (`user_group_id`,`user_id`), KEY `user_user_groups_user_group_id` (`user_group_id`), KEY `user_user_groups_user_id` (`user_id`), CONSTRAINT `user_user_groups_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE, CONSTRAINT `user_user_groups_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Maps users to their assigned user_groups.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_user_groups` -- LOCK TABLES `user_user_groups` WRITE; /*!40000 ALTER TABLE `user_user_groups` DISABLE KEYS */; INSERT INTO `user_user_groups` VALUES (1,1,1),(2,2,1); /*!40000 ALTER TABLE `user_user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `user_id` bigint(20) NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL, `password` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `url` varchar(2047) DEFAULT NULL, `phone` varchar(32) DEFAULT NULL, `mailing_address` varchar(255) DEFAULT NULL, `billing_address` varchar(255) DEFAULT NULL, `country` varchar(90) DEFAULT NULL, `locales` varchar(255) NOT NULL DEFAULT '[]', `gossip` text DEFAULT NULL, `date_last_email` datetime DEFAULT NULL, `date_registered` datetime NOT NULL, `date_validated` datetime DEFAULT NULL, `date_last_login` datetime DEFAULT NULL, `must_change_password` smallint(6) DEFAULT NULL, `auth_id` bigint(20) DEFAULT NULL, `auth_str` varchar(255) DEFAULT NULL, `disabled` smallint(6) NOT NULL DEFAULT 0, `disabled_reason` text DEFAULT NULL, `inline_help` smallint(6) DEFAULT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `users_username` (`username`), UNIQUE KEY `users_email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='All registered users, including authentication data and profile data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'admin','$2y$12$.0EKnMQtFLcjwBwbBQPkfOrNYNZ/7wgVPVos4YBBzH49rglLaLjdO','vasyl.ostrovskyi@gmail.com',NULL,'','',NULL,'UA','[]',NULL,NULL,'2025-03-15 16:22:01',NULL,'2025-03-15 16:22:19',NULL,NULL,NULL,0,NULL,1); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `versions` -- DROP TABLE IF EXISTS `versions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `versions` ( `version_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `major` int(11) NOT NULL DEFAULT 0 COMMENT 'Major component of version number, e.g. the 2 in OJS 2.3.8-0', `minor` int(11) NOT NULL DEFAULT 0 COMMENT 'Minor component of version number, e.g. the 3 in OJS 2.3.8-0', `revision` int(11) NOT NULL DEFAULT 0 COMMENT 'Revision component of version number, e.g. the 8 in OJS 2.3.8-0', `build` int(11) NOT NULL DEFAULT 0 COMMENT 'Build component of version number, e.g. the 0 in OJS 2.3.8-0', `date_installed` datetime NOT NULL, `current` smallint(6) NOT NULL DEFAULT 0 COMMENT '1 iff the version entry being described is currently active. This permits the table to store past installation history for forensic purposes.', `product_type` varchar(30) DEFAULT NULL COMMENT 'Describes the type of product this row describes, e.g. "plugins.generic" (for a generic plugin) or "core" for the application itself', `product` varchar(30) DEFAULT NULL COMMENT 'Uniquely identifies the product this version row describes, e.g. "ojs2" for OJS 2.x, "languageToggle" for the language toggle block plugin, etc.', `product_class_name` varchar(80) DEFAULT NULL COMMENT 'Specifies the class name associated with this product, for plugins, or the empty string where not applicable.', `lazy_load` smallint(6) NOT NULL DEFAULT 0 COMMENT '1 iff the row describes a lazy-load plugin; 0 otherwise', `sitewide` smallint(6) NOT NULL DEFAULT 0 COMMENT '1 iff the row describes a site-wide plugin; 0 otherwise', PRIMARY KEY (`version_id`), UNIQUE KEY `versions_unique` (`product_type`,`product`,`major`,`minor`,`revision`,`build`) ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Describes the installation and upgrade version history for the application and all installed plugins.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `versions` -- LOCK TABLES `versions` WRITE; /*!40000 ALTER TABLE `versions` DISABLE KEYS */; INSERT INTO `versions` VALUES (1,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.metadata','dc11','',0,0),(2,1,1,0,0,'2025-03-15 16:22:01',1,'plugins.blocks','subscription','SubscriptionBlockPlugin',1,0),(3,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.blocks','makeSubmission','MakeSubmissionBlockPlugin',1,0),(4,1,0,1,0,'2025-03-15 16:22:01',1,'plugins.blocks','browse','BrowseBlockPlugin',1,0),(5,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.blocks','languageToggle','LanguageToggleBlockPlugin',1,0),(6,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.blocks','developedBy','DevelopedByBlockPlugin',1,0),(7,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.blocks','information','InformationBlockPlugin',1,0),(8,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.gateways','resolver','',0,0),(9,1,0,0,1,'2025-03-15 16:22:01',1,'plugins.generic','recommendByAuthor','RecommendByAuthorPlugin',1,1),(10,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','webFeed','WebFeedPlugin',1,0),(11,3,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','crossref','',0,0),(12,1,0,1,0,'2025-03-15 16:22:01',1,'plugins.generic','lensGalley','LensGalleyPlugin',1,0),(13,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','googleAnalytics','GoogleAnalyticsPlugin',1,0),(14,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','usageEvent','',0,0),(15,0,1,0,0,'2025-03-15 16:22:01',1,'plugins.generic','citationStyleLanguage','CitationStyleLanguagePlugin',1,0),(16,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','recommendBySimilarity','RecommendBySimilarityPlugin',1,1),(17,1,3,0,0,'2025-03-15 16:22:01',1,'plugins.generic','acron','AcronPlugin',1,1),(18,1,1,0,0,'2025-03-15 16:22:01',1,'plugins.generic','googleScholar','GoogleScholarPlugin',1,0),(19,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','htmlArticleGalley','HtmlArticleGalleyPlugin',1,0),(20,1,3,4,8,'2025-03-15 16:22:01',1,'plugins.generic','orcidProfile','OrcidProfilePlugin',1,0),(21,1,2,0,0,'2025-03-15 16:22:01',1,'plugins.generic','customBlockManager','CustomBlockManagerPlugin',1,0),(22,2,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','datacite','',0,0),(23,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','tinymce','TinyMCEPlugin',1,0),(24,1,0,1,0,'2025-03-15 16:22:01',1,'plugins.generic','pdfJsViewer','PdfJsViewerPlugin',1,0),(25,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','driver','DRIVERPlugin',1,0),(26,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','dublinCoreMeta','DublinCoreMetaPlugin',1,0),(27,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.generic','announcementFeed','AnnouncementFeedPlugin',1,0),(28,1,2,0,0,'2025-03-15 16:22:01',1,'plugins.generic','staticPages','StaticPagesPlugin',1,0),(29,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.importexport','native','',0,0),(30,1,1,0,0,'2025-03-15 16:22:01',1,'plugins.importexport','doaj','',0,0),(31,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.importexport','users','',0,0),(32,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.importexport','pubmed','',0,0),(33,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.oaiMetadataFormats','marcxml','',0,0),(34,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.oaiMetadataFormats','marc','',0,0),(35,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.oaiMetadataFormats','dc','',0,0),(36,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.oaiMetadataFormats','rfc1807','',0,0),(37,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.paymethod','paypal','',0,0),(38,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.paymethod','manual','',0,0),(39,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.pubIds','urn','URNPubIdPlugin',1,0),(40,2,0,1,0,'2025-03-15 16:22:01',1,'plugins.reports','reviewReport','',0,0),(41,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.reports','articles','',0,0),(42,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.reports','subscriptions','',0,0),(43,1,1,0,0,'2025-03-15 16:22:01',1,'plugins.reports','counterReport','',0,0),(44,1,0,0,0,'2025-03-15 16:22:01',1,'plugins.themes','default','DefaultThemePlugin',1,0),(45,3,4,0,8,'2025-03-15 16:21:59',1,'core','ojs2','',0,1),(46,2,0,1,0,'2025-03-15 16:34:47',1,'plugins.generic','authorsHistory','AuthorsHistoryPlugin',1,0),(47,1,0,4,1,'2025-03-15 16:35:14',1,'plugins.generic','customHeader','CustomHeaderPlugin',1,0),(48,3,4,0,3,'2025-03-15 16:35:47',1,'plugins.themes','bootstrap3','BootstrapThreeThemePlugin',1,0),(49,1,1,2,2,'2025-03-15 16:36:01',1,'plugins.themes','classic','ClassicThemePlugin',1,0),(50,1,1,2,3,'2025-03-15 16:36:16',1,'plugins.themes','healthSciences','HealthSciencesThemePlugin',1,0),(51,1,0,4,0,'2025-03-15 16:36:29',1,'plugins.themes','defaultManuscript','DefaultManuscriptChildThemePlugin',1,0),(52,3,0,4,0,'2025-03-15 16:36:47',1,'plugins.themes','material','MaterialThemePlugin',1,0),(53,2,0,0,0,'2025-03-15 16:37:05',1,'plugins.generic','crossrefReferenceLinking','CrossrefReferenceLinkingPlugin',1,1),(54,1,1,2,2,'2025-03-15 16:38:07',1,'plugins.themes','pragma','PragmaThemePlugin',1,0),(55,3,0,0,1,'2025-03-15 16:38:22',1,'plugins.generic','pln','PlnPlugin',1,0),(56,3,4,0,1,'2025-03-15 16:38:42',1,'plugins.generic','citations','',0,0),(57,2,1,0,0,'2025-03-15 16:39:42',1,'plugins.generic','toggleRequiredMetadata','',0,0),(58,0,2,0,0,'2025-03-15 16:40:21',1,'plugins.generic','deleteIncompleteSubmissions','',0,0); /*!40000 ALTER TABLE `versions` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-03-16 9:06:16
Simpan