-- MySQL dump 10.13 Distrib 8.0.35, for Linux (x86_64)
--
-- Host: localhost Database: ojs-ci
-- ------------------------------------------------------
-- Server version 8.0.35-0ubuntu0.20.04.1
/*!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 */;
/*!50503 SET NAMES utf8 */;
/*!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 `announcement_settings`
--
DROP TABLE IF EXISTS `announcement_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcement_settings` (
`announcement_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`announcement_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcement_type_settings` (
`announcement_type_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`type_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
`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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcement_types` (
`type_id` bigint NOT NULL AUTO_INCREMENT,
`context_id` bigint DEFAULT 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
`announcement_id` bigint NOT NULL AUTO_INCREMENT,
`assoc_type` smallint DEFAULT NULL,
`assoc_id` bigint DEFAULT NULL,
`type_id` bigint 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `author_settings` (
`author_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`author_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
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 AUTO_INCREMENT=132 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `author_settings` VALUES (1,1,'en','affiliation','University of Cape Town'),(2,1,'','country','ZA'),(3,1,'en','familyName','Mwandenga'),(4,1,'en','givenName','Alan'),(9,2,'','country','BB'),(10,2,'fr_CA','familyName',NULL),(11,2,'en','familyName','Mansour'),(12,2,'fr_CA','givenName',NULL),(13,2,'en','givenName','Amina'),(27,4,'fr_CA','affiliation',NULL),(28,4,'en','affiliation',NULL),(29,4,'fr_CA','biography',NULL),(30,4,'en','biography',NULL),(31,4,'','country','ZA'),(32,4,'fr_CA','familyName',NULL),(33,4,'en','familyName','Riouf'),(34,4,'fr_CA','givenName',NULL),(35,4,'en','givenName','Nicolas'),(36,4,'fr_CA','preferredPublicName',NULL),(37,4,'en','preferredPublicName',NULL),(38,5,'en','affiliation','University of Cape Town'),(39,5,'','country','ZA'),(40,5,'en','familyName','Mwandenga Version 2'),(41,5,'en','givenName','Alan'),(42,6,'','country','BB'),(43,6,'en','familyName','Mansour'),(44,6,'en','givenName','Amina'),(45,7,'','country','ZA'),(46,7,'en','familyName','Riouf'),(47,7,'en','givenName','Nicolas'),(48,8,'en','affiliation','University of Bologna'),(49,8,'','country','IT'),(50,8,'en','familyName','Corino'),(51,8,'en','givenName','Carlo'),(52,9,'en','affiliation','University of Windsor'),(53,9,'','country','CA'),(54,9,'en','familyName','Kwantes'),(55,9,'en','givenName','Catherine'),(56,10,'en','affiliation','University of Alberta'),(57,10,'','country','CA'),(58,10,'en','familyName','Montgomerie'),(59,10,'en','givenName','Craig'),(60,11,'en','affiliation','University of Victoria'),(61,11,'','country','CA'),(62,11,'en','familyName','Irvine'),(63,11,'en','givenName','Mark'),(64,12,'en','affiliation','Alexandria University'),(65,12,'','country','EG'),(66,12,'en','familyName','Diouf'),(67,12,'en','givenName','Diaga'),(68,13,'en','affiliation','University of Toronto'),(69,13,'','country','CA'),(70,13,'en','familyName','Phillips'),(71,13,'en','givenName','Dana'),(72,14,'en','affiliation','University College Cork'),(73,14,'','country','IE'),(74,14,'en','familyName','Sokoloff'),(75,14,'en','givenName','Domatilia'),(76,15,'en','affiliation','Indiana University'),(77,15,'','country','US'),(78,15,'en','familyName','Ostrom'),(79,15,'en','givenName','Elinor'),(80,16,'en','affiliation','Indiana University'),(81,16,'','country','US'),(82,16,'en','familyName','van Laerhoven'),(83,16,'en','givenName','Frank'),(84,17,'en','affiliation','University of Rome'),(85,17,'','country','IT'),(86,17,'en','familyName','Paglieri'),(87,17,'en','givenName','Fabio'),(88,18,'en','affiliation','Aalborg University'),(89,18,'','country','DK'),(90,18,'en','familyName','Novak'),(91,18,'en','givenName','John'),(92,19,'en','affiliation','Stanford University'),(93,19,'','country','US'),(94,19,'en','familyName','Al-Khafaji'),(95,19,'en','givenName','Karim'),(96,20,'en','affiliation','Stanford University'),(97,20,'','country','US'),(98,20,'en','familyName','Morse'),(99,20,'en','givenName','Margaret'),(100,21,'en','affiliation','Australian National University'),(101,21,'','country','AU'),(102,21,'en','familyName','Christopher'),(103,21,'en','givenName','Leo'),(104,22,'en','affiliation','University of Cape Town'),(105,22,'','country','ZA'),(106,22,'en','familyName','Kumiega'),(107,22,'en','givenName','Lise'),(108,23,'en','affiliation','University of Wolverhampton'),(109,23,'','country','GB'),(110,23,'en','familyName','Daniel'),(111,23,'en','givenName','Patricia'),(112,24,'en','affiliation','University of Nairobi'),(113,24,'','country','KE'),(114,24,'en','familyName','Baiyewu'),(115,24,'en','givenName','Rana'),(116,25,'en','affiliation','Barcelona University'),(117,25,'','country','ES'),(118,25,'en','familyName','Rossi'),(119,25,'en','givenName','Rosanna'),(120,26,'en','affiliation','University of Tehran'),(121,26,'','country','IR'),(122,26,'en','familyName','Karbasizaed'),(123,26,'en','givenName','Vajiheh'),(124,27,'en','affiliation','University of Windsor'),(125,27,'','country','CA'),(126,27,'en','familyName','Williamson'),(127,27,'en','givenName','Valerie'),(128,28,'en','affiliation','CUNY'),(129,28,'','country','US'),(130,28,'en','familyName','Woods'),(131,28,'en','givenName','Zita');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `authors` (
`author_id` bigint NOT NULL AUTO_INCREMENT,
`email` varchar(90) NOT NULL,
`include_in_browse` smallint NOT NULL DEFAULT '1',
`publication_id` bigint NOT NULL,
`seq` double(8,2) NOT NULL DEFAULT '0.00',
`user_group_id` bigint 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 AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `authors` VALUES (1,'amwandenga@mailinator.com',1,1,0.00,14),(2,'notanemailamansour@mailinator.com',1,1,1.00,14),(4,'nriouf@mailinator.com',1,1,2.00,14),(5,'amwandenga@mailinator.com',1,2,0.00,14),(6,'notanemailamansour@mailinator.com',1,2,1.00,14),(7,'nriouf@mailinator.com',1,2,2.00,14),(8,'ccorino@mailinator.com',1,3,0.00,14),(9,'ckwantes@mailinator.com',1,4,0.00,14),(10,'cmontgomerie@mailinator.com',1,5,0.00,14),(11,'mirvine@mailinator.com',1,5,0.00,14),(12,'ddiouf@mailinator.com',1,6,0.00,14),(13,'dphillips@mailinator.com',1,7,0.00,14),(14,'dsokoloff@mailinator.com',1,8,0.00,14),(15,'eostrom@mailinator.com',1,9,0.00,14),(16,'fvanlaerhoven@mailinator.com',1,9,0.00,14),(17,'fpaglieri@mailinator.com',1,10,0.00,14),(18,'jnovak@mailinator.com',1,11,0.00,14),(19,'kalkhafaji@mailinator.com',1,12,0.00,14),(20,'mmorse@mailinator.com',1,12,0.00,14),(21,'lchristopher@mailinator.com',1,13,0.00,14),(22,'lkumiega@mailinator.com',1,14,0.00,14),(23,'pdaniel@mailinator.com',1,15,0.00,14),(24,'rbaiyewu@mailinator.com',1,16,0.00,14),(25,'rrossi@mailinator.com',1,17,0.00,14),(26,'vkarbasizaed@mailinator.com',1,18,0.00,14),(27,'vwilliamson@mailinator.com',1,19,0.00,14),(28,'zwoods@mailinator.com',1,20,0.00,14);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
`category_id` bigint NOT NULL AUTO_INCREMENT,
`context_id` bigint NOT NULL,
`parent_id` bigint DEFAULT NULL,
`seq` bigint DEFAULT NULL,
`path` varchar(255) NOT NULL,
`image` text,
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 AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `categories` VALUES (1,1,NULL,1,'applied-science',NULL),(2,1,1,2,'comp-sci',NULL),(3,1,1,3,'eng',NULL),(4,1,NULL,4,'social-sciences',NULL),(5,1,4,5,'sociology',NULL),(6,1,4,10000,'anthropology',NULL);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `category_settings` (
`category_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`category_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
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 AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `category_settings` VALUES (1,1,'','sortOption','title-ASC'),(2,1,'en','title','Applied Science'),(3,1,'fr_CA','title',''),(4,1,'en','description',''),(5,1,'fr_CA','description',''),(6,2,'','sortOption','title-ASC'),(7,2,'en','title','Computer Science'),(8,2,'fr_CA','title',''),(9,2,'en','description',''),(10,2,'fr_CA','description',''),(11,3,'','sortOption','title-ASC'),(12,3,'en','title','Engineering'),(13,3,'fr_CA','title',''),(14,3,'en','description',''),(15,3,'fr_CA','description',''),(16,4,'','sortOption','title-ASC'),(17,4,'en','title','Social Sciences'),(18,4,'fr_CA','title',''),(19,4,'en','description',''),(20,4,'fr_CA','description',''),(21,5,'','sortOption','title-ASC'),(22,5,'en','title','Sociology'),(23,5,'fr_CA','title',''),(24,5,'en','description',''),(25,5,'fr_CA','description',''),(26,6,'','sortOption','title-ASC'),(27,6,'en','title','Anthropology'),(28,6,'fr_CA','title',''),(29,6,'en','description',''),(30,6,'fr_CA','description','');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `citation_settings` (
`citation_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`citation_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
`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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `citations` (
`citation_id` bigint NOT NULL AUTO_INCREMENT,
`publication_id` bigint NOT NULL,
`raw_citation` text NOT NULL,
`seq` bigint 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `completed_payments` (
`completed_payment_id` bigint NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`payment_type` bigint NOT NULL,
`context_id` bigint NOT NULL,
`user_id` bigint DEFAULT NULL,
`assoc_id` bigint 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `controlled_vocab_entries` (
`controlled_vocab_entry_id` bigint NOT NULL AUTO_INCREMENT,
`controlled_vocab_id` bigint 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 AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `controlled_vocab_entries` VALUES (15,2,1.00),(16,2,2.00),(27,6,1.00),(28,6,2.00),(31,10,1.00),(32,10,2.00),(33,10,3.00),(34,10,4.00),(35,14,1.00),(36,14,2.00),(37,18,1.00),(38,18,2.00),(39,18,3.00),(40,18,4.00),(41,18,5.00),(42,18,6.00),(43,18,7.00),(44,30,1.00),(45,30,2.00),(46,34,1.00),(47,34,2.00),(48,34,3.00),(49,42,1.00),(50,46,1.00),(51,46,2.00),(52,46,3.00),(53,46,4.00),(54,50,1.00),(55,50,2.00),(56,54,1.00),(57,58,1.00),(58,58,2.00),(59,58,3.00),(60,58,4.00),(61,58,5.00),(62,58,6.00),(63,58,7.00),(64,58,8.00),(65,58,9.00),(66,58,10.00),(67,66,1.00),(68,66,2.00),(69,74,1.00),(70,74,2.00),(71,74,3.00);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `controlled_vocab_entry_settings` (
`controlled_vocab_entry_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`controlled_vocab_entry_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
`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 AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `controlled_vocab_entry_settings` VALUES (15,15,'en','submissionKeyword','Professional Development','string'),(16,16,'en','submissionKeyword','Social Transformation','string'),(27,27,'en','submissionKeyword','Professional Development','string'),(28,28,'en','submissionKeyword','Social Transformation','string'),(31,31,'en','submissionKeyword','pigs','string'),(32,32,'en','submissionKeyword','food security','string'),(33,33,'en','submissionKeyword','Professional Development','string'),(34,34,'en','submissionKeyword','Social Transformation','string'),(35,35,'en','submissionKeyword','employees','string'),(36,36,'en','submissionKeyword','survey','string'),(37,37,'en','submissionKeyword','Integrating Technology','string'),(38,38,'en','submissionKeyword','Computer Skills','string'),(39,39,'en','submissionKeyword','Survey','string'),(40,40,'en','submissionKeyword','Alberta','string'),(41,41,'en','submissionKeyword','National','string'),(42,42,'en','submissionKeyword','Provincial','string'),(43,43,'en','submissionKeyword','Professional Development','string'),(44,44,'en','submissionKeyword','education','string'),(45,45,'en','submissionKeyword','citizenship','string'),(46,46,'en','submissionKeyword','Common pool resource','string'),(47,47,'en','submissionKeyword','common property','string'),(48,48,'en','submissionKeyword','intellectual developments','string'),(49,49,'en','submissionKeyword','water','string'),(50,50,'en','submissionKeyword','Development','string'),(51,51,'en','submissionKeyword','engineering education','string'),(52,52,'en','submissionKeyword','service learning','string'),(53,53,'en','submissionKeyword','sustainability','string'),(54,54,'en','submissionKeyword','pigs','string'),(55,55,'en','submissionKeyword','food security','string'),(56,56,'en','submissionKeyword','water','string'),(57,57,'en','submissionKeyword','21st Century','string'),(58,58,'en','submissionKeyword','Diversity','string'),(59,59,'en','submissionKeyword','Multilingual','string'),(60,60,'en','submissionKeyword','Multiethnic','string'),(61,61,'en','submissionKeyword','Participatory Pedagogy','string'),(62,62,'en','submissionKeyword','Language','string'),(63,63,'en','submissionKeyword','Culture','string'),(64,64,'en','submissionKeyword','Gender','string'),(65,65,'en','submissionKeyword','Egalitarianism','string'),(66,66,'en','submissionKeyword','Social Transformation','string'),(67,67,'en','submissionKeyword','cattle','string'),(68,68,'en','submissionKeyword','food security','string'),(69,69,'en','submissionKeyword','Self-Organization','string'),(70,70,'en','submissionKeyword','Multi-Level Institutions','string'),(71,71,'en','submissionKeyword','Goverance','string');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `controlled_vocabs` (
`controlled_vocab_id` bigint NOT NULL AUTO_INCREMENT,
`symbolic` varchar(64) NOT NULL,
`assoc_type` bigint NOT NULL DEFAULT '0',
`assoc_id` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`controlled_vocab_id`),
UNIQUE KEY `controlled_vocab_symbolic` (`symbolic`,`assoc_type`,`assoc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb3 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),(5,'submissionAgency',1048588,1),(9,'submissionAgency',1048588,2),(13,'submissionAgency',1048588,3),(17,'submissionAgency',1048588,4),(21,'submissionAgency',1048588,5),(25,'submissionAgency',1048588,6),(29,'submissionAgency',1048588,7),(33,'submissionAgency',1048588,8),(37,'submissionAgency',1048588,9),(41,'submissionAgency',1048588,10),(45,'submissionAgency',1048588,11),(49,'submissionAgency',1048588,12),(53,'submissionAgency',1048588,13),(57,'submissionAgency',1048588,14),(61,'submissionAgency',1048588,15),(65,'submissionAgency',1048588,16),(69,'submissionAgency',1048588,17),(73,'submissionAgency',1048588,18),(77,'submissionAgency',1048588,19),(81,'submissionAgency',1048588,20),(4,'submissionDiscipline',1048588,1),(8,'submissionDiscipline',1048588,2),(12,'submissionDiscipline',1048588,3),(16,'submissionDiscipline',1048588,4),(20,'submissionDiscipline',1048588,5),(24,'submissionDiscipline',1048588,6),(28,'submissionDiscipline',1048588,7),(32,'submissionDiscipline',1048588,8),(36,'submissionDiscipline',1048588,9),(40,'submissionDiscipline',1048588,10),(44,'submissionDiscipline',1048588,11),(48,'submissionDiscipline',1048588,12),(52,'submissionDiscipline',1048588,13),(56,'submissionDiscipline',1048588,14),(60,'submissionDiscipline',1048588,15),(64,'submissionDiscipline',1048588,16),(68,'submissionDiscipline',1048588,17),(72,'submissionDiscipline',1048588,18),(76,'submissionDiscipline',1048588,19),(80,'submissionDiscipline',1048588,20),(2,'submissionKeyword',1048588,1),(6,'submissionKeyword',1048588,2),(10,'submissionKeyword',1048588,3),(14,'submissionKeyword',1048588,4),(18,'submissionKeyword',1048588,5),(22,'submissionKeyword',1048588,6),(26,'submissionKeyword',1048588,7),(30,'submissionKeyword',1048588,8),(34,'submissionKeyword',1048588,9),(38,'submissionKeyword',1048588,10),(42,'submissionKeyword',1048588,11),(46,'submissionKeyword',1048588,12),(50,'submissionKeyword',1048588,13),(54,'submissionKeyword',1048588,14),(58,'submissionKeyword',1048588,15),(62,'submissionKeyword',1048588,16),(66,'submissionKeyword',1048588,17),(70,'submissionKeyword',1048588,18),(74,'submissionKeyword',1048588,19),(78,'submissionKeyword',1048588,20),(3,'submissionSubject',1048588,1),(7,'submissionSubject',1048588,2),(11,'submissionSubject',1048588,3),(15,'submissionSubject',1048588,4),(19,'submissionSubject',1048588,5),(23,'submissionSubject',1048588,6),(27,'submissionSubject',1048588,7),(31,'submissionSubject',1048588,8),(35,'submissionSubject',1048588,9),(39,'submissionSubject',1048588,10),(43,'submissionSubject',1048588,11),(47,'submissionSubject',1048588,12),(51,'submissionSubject',1048588,13),(55,'submissionSubject',1048588,14),(59,'submissionSubject',1048588,15),(63,'submissionSubject',1048588,16),(67,'submissionSubject',1048588,17),(71,'submissionSubject',1048588,18),(75,'submissionSubject',1048588,19),(79,'submissionSubject',1048588,20);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `custom_issue_orders` (
`custom_issue_order_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`issue_id` bigint NOT NULL,
`journal_id` bigint 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `custom_section_orders` (
`custom_section_order_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`issue_id` bigint NOT NULL,
`section_id` bigint 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `data_object_tombstone_oai_set_objects` (
`object_id` bigint NOT NULL AUTO_INCREMENT,
`tombstone_id` bigint NOT NULL,
`assoc_type` bigint NOT NULL,
`assoc_id` bigint 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 AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `data_object_tombstone_settings` (
`tombstone_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`tombstone_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
`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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `data_object_tombstones` (
`tombstone_id` bigint NOT NULL AUTO_INCREMENT,
`data_object_id` bigint 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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `doi_settings` (
`doi_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`doi_id` bigint NOT NULL,
`locale` varchar(14) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dois` (
`doi_id` bigint NOT NULL AUTO_INCREMENT,
`context_id` bigint NOT NULL,
`doi` varchar(255) NOT NULL,
`status` smallint 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=utf8mb3 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `edit_decisions` (
`edit_decision_id` bigint NOT NULL AUTO_INCREMENT,
`submission_id` bigint NOT NULL,
`review_round_id` bigint DEFAULT NULL,
`stage_id` bigint DEFAULT NULL,
`round` smallint DEFAULT NULL,
`editor_id` bigint NOT NULL,
`decision` smallint 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 AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `edit_decisions` VALUES (1,1,NULL,1,NULL,3,3,'2024-02-01 07:19:22'),(2,1,1,3,1,3,2,'2024-02-01 07:19:52'),(3,1,NULL,4,NULL,3,7,'2024-02-01 07:20:05'),(4,2,NULL,1,NULL,3,3,'2024-02-01 07:25:01'),(5,2,2,3,1,6,9,'2024-02-01 07:25:25'),(6,3,NULL,1,NULL,3,3,'2024-02-01 07:26:03'),(7,3,3,3,1,3,2,'2024-02-01 07:26:24'),(8,5,NULL,1,NULL,3,3,'2024-02-01 07:27:15'),(9,5,4,3,1,3,2,'2024-02-01 07:27:36'),(10,5,NULL,4,NULL,3,7,'2024-02-01 07:27:49'),(11,6,NULL,1,NULL,3,3,'2024-02-01 07:28:32'),(12,6,5,3,1,3,2,'2024-02-01 07:28:54'),(13,6,NULL,4,NULL,3,7,'2024-02-01 07:29:07'),(14,7,NULL,1,NULL,3,3,'2024-02-01 07:29:45'),(15,9,NULL,1,NULL,3,3,'2024-02-01 07:31:05'),(16,9,7,3,1,3,2,'2024-02-01 07:31:26'),(17,9,NULL,4,NULL,3,7,'2024-02-01 07:31:40'),(18,10,NULL,1,NULL,3,3,'2024-02-01 07:32:24'),(19,12,NULL,1,NULL,3,3,'2024-02-01 07:33:47'),(20,13,NULL,1,NULL,3,3,'2024-02-01 07:34:33'),(21,13,10,3,1,3,4,'2024-02-01 07:35:52'),(22,15,NULL,1,NULL,3,3,'2024-02-01 07:36:42'),(23,15,11,3,1,3,2,'2024-02-01 07:37:03'),(24,15,NULL,4,NULL,3,7,'2024-02-01 07:37:16'),(25,17,NULL,1,NULL,3,3,'2024-02-01 07:38:11'),(26,17,12,3,1,3,2,'2024-02-01 07:38:33'),(27,17,NULL,4,NULL,3,7,'2024-02-01 07:38:47'),(28,18,NULL,1,NULL,3,8,'2024-02-01 07:41:26'),(29,19,NULL,1,NULL,3,3,'2024-02-01 07:41:59'),(30,19,13,3,1,3,2,'2024-02-01 07:42:20');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_log` (
`log_id` bigint NOT NULL AUTO_INCREMENT,
`assoc_type` bigint NOT NULL,
`assoc_id` bigint NOT NULL,
`sender_id` bigint NOT NULL,
`date_sent` datetime NOT NULL,
`event_type` bigint DEFAULT NULL,
`from_address` varchar(255) DEFAULT NULL,
`recipients` text,
`cc_recipients` text,
`bcc_recipients` text,
`subject` varchar(255) DEFAULT NULL,
`body` text,
PRIMARY KEY (`log_id`),
KEY `email_log_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb3 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 */;
INSERT INTO `email_log` VALUES (1,1048585,1,0,'2024-02-01 07:19:03',805306370,'\"Ramiro Vaca\" Dear Daniel Barnes, The following submission has been assigned to you to see through the editorial process. Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence Abstract The signaling theory suggests that dividends signal future prospects of a firm. However, recent empirical evidence from the US and the Uk does not offer a conclusive evidence on this issue. There are conflicting policy implications among financial economists so much that there is no practical dividend policy guidance to management, existing and potential investors in shareholding. Since corporate investment, financing and distribution decisions are a continuous function of management, the dividend decisions seem to rely on intuitive evaluation. If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\". If the submission is not appropriate for this journal, please decline the submission. Thank you in advance. Kind regards, This is an automated message from Journal of Public Knowledge. Dear David Buskins, The following submission has been assigned to you to see through the editorial process. Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence Abstract The signaling theory suggests that dividends signal future prospects of a firm. However, recent empirical evidence from the US and the Uk does not offer a conclusive evidence on this issue. There are conflicting policy implications among financial economists so much that there is no practical dividend policy guidance to management, existing and potential investors in shareholding. Since corporate investment, financing and distribution decisions are a continuous function of management, the dividend decisions seem to rely on intuitive evaluation. If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\". If the submission is not appropriate for this journal, please decline the submission. Thank you in advance. Kind regards, This is an automated message from Journal of Public Knowledge. Dear Stephanie Berardo, The following submission has been assigned to you to see through the editorial process. Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence Abstract The signaling theory suggests that dividends signal future prospects of a firm. However, recent empirical evidence from the US and the Uk does not offer a conclusive evidence on this issue. There are conflicting policy implications among financial economists so much that there is no practical dividend policy guidance to management, existing and potential investors in shareholding. Since corporate investment, financing and distribution decisions are a continuous function of management, the dividend decisions seem to rely on intuitive evaluation. If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\". If the submission is not appropriate for this journal, please decline the submission. Thank you in advance. Kind regards, This is an automated message from Journal of Public Knowledge. Dear Alan Mwandenga, Thank you for your submission to Journal of Public Knowledge. We have received your submission, Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence, 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. You can view your submission and track its progress through the editorial process at the following location: Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/1 If you have been logged out, you can login again with the username amwandenga. If you have any questions, please contact me from your submission dashboard. Thank you for considering Journal of Public Knowledge as a venue for your work. This is an automated message from Journal of Public Knowledge. Dear Amina Mansour, You have been named as a co-author on a submission to Journal of Public Knowledge. The submitter, Alan Mwandenga, provided the following details: Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence If any of these details are incorrect, or you do not wish to be named on this submission, please contact me. Thank you for considering Journal of Public Knowledge as a venue for your work. Kind regards, This is an automated message from Journal of Public Knowledge. Dear Alan Mwandenga, I am pleased to inform you that an editor has reviewed your submission, Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission. This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps. 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. If you have any questions, please contact me from your submission dashboard. Daniel Barnes
Alan Mwandenga, Amina Mansour
—
Alan Mwandenga, Amina Mansour
—
Alan Mwandenga, Amina Mansour
—
—
—
Dear Alan Mwandenga,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(8,1048585,1,3,'2024-02-01 07:20:06',805306369,'\"Daniel Barnes\"Dear Alan Mwandenga,
I am writing from Journal of Public Knowledge to let you know that the editing of your submission, Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence, 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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(9,1048585,2,0,'2024-02-01 07:24:49',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
The influence of lactation on the quantity and quality of cashmere production
Carlo Corino
Abstract
The effects of pressed beet pulp silage (PBPS) replacing barley for 10% and 20% (DM basis) were studied on heavy pigs fed dairy whey-diluted diets. 60 Hypor pigs (average initial weight of 28 kg), 30 barrows and 30 gilts, were homogeneously allocated to three exper- imental groups: T1 (control) in which pigs were fed a traditional sweet whey- diluted diet (the ratio between whey and dry matter was 4.5/1); T2 in which PBPS replaced barley for 10% (DM basis) during a first period (from the beginning to the 133rd day of trial) and thereafter for 20% (DM basis); T3 in which PBPS replaced barley for 20% (DM basis) throughout the experimental period. In diets T2 and T3 feed was dairy whey-diluted as in group T1. No significant (P>0.05) differences were observed concerning growth parameters (ADG and FCR). Pigs on diets contain- ing PBPS showed significantly higher (PIf you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(10,1048585,2,0,'2024-02-01 07:24:49',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
The influence of lactation on the quantity and quality of cashmere production
Carlo Corino
Abstract
The effects of pressed beet pulp silage (PBPS) replacing barley for 10% and 20% (DM basis) were studied on heavy pigs fed dairy whey-diluted diets. 60 Hypor pigs (average initial weight of 28 kg), 30 barrows and 30 gilts, were homogeneously allocated to three exper- imental groups: T1 (control) in which pigs were fed a traditional sweet whey- diluted diet (the ratio between whey and dry matter was 4.5/1); T2 in which PBPS replaced barley for 10% (DM basis) during a first period (from the beginning to the 133rd day of trial) and thereafter for 20% (DM basis); T3 in which PBPS replaced barley for 20% (DM basis) throughout the experimental period. In diets T2 and T3 feed was dairy whey-diluted as in group T1. No significant (P>0.05) differences were observed concerning growth parameters (ADG and FCR). Pigs on diets contain- ing PBPS showed significantly higher (PIf you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(11,1048585,2,0,'2024-02-01 07:24:49',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
The influence of lactation on the quantity and quality of cashmere production
Carlo Corino
Abstract
The effects of pressed beet pulp silage (PBPS) replacing barley for 10% and 20% (DM basis) were studied on heavy pigs fed dairy whey-diluted diets. 60 Hypor pigs (average initial weight of 28 kg), 30 barrows and 30 gilts, were homogeneously allocated to three exper- imental groups: T1 (control) in which pigs were fed a traditional sweet whey- diluted diet (the ratio between whey and dry matter was 4.5/1); T2 in which PBPS replaced barley for 10% (DM basis) during a first period (from the beginning to the 133rd day of trial) and thereafter for 20% (DM basis); T3 in which PBPS replaced barley for 20% (DM basis) throughout the experimental period. In diets T2 and T3 feed was dairy whey-diluted as in group T1. No significant (P>0.05) differences were observed concerning growth parameters (ADG and FCR). Pigs on diets contain- ing PBPS showed significantly higher (PIf you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(12,1048585,2,0,'2024-02-01 07:24:49',536870914,'\"Ramiro Vaca\"Dear Carlo Corino,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, The influence of lactation on the quantity and quality of cashmere production, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/2
If you have been logged out, you can login again with the username ccorino.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(13,1048585,2,3,'2024-02-01 07:25:01',805306369,'\"Daniel Barnes\"Dear Carlo Corino,
I am pleased to inform you that an editor has reviewed your submission, The influence of lactation on the quantity and quality of cashmere production, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(14,1048585,3,0,'2024-02-01 07:25:51',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence
Catherine Kwantes
Abstract
Archival data from an attitude survey of employees in a single multinational organization were used to examine the degree to which national culture affects the nature of job satisfaction. Responses from nine countries were compiled to create a benchmark against which nations could be individually compared. Factor analysis revealed four factors: Organizational Communication, Organizational Efficiency/Effectiveness, Organizational Support, and Personal Benefit. Comparisons of factor structures indicated that Organizational Communication exhibited the most construct equivalence, and Personal Benefit the least. The most satisfied employees were those from China, and the least satisfied from Brazil, consistent with previous findings that individuals in collectivistic nations report higher satisfaction. The research findings suggest that national cultural context exerts an effect on the nature of job satisfaction.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(15,1048585,3,0,'2024-02-01 07:25:51',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence
Catherine Kwantes
Abstract
Archival data from an attitude survey of employees in a single multinational organization were used to examine the degree to which national culture affects the nature of job satisfaction. Responses from nine countries were compiled to create a benchmark against which nations could be individually compared. Factor analysis revealed four factors: Organizational Communication, Organizational Efficiency/Effectiveness, Organizational Support, and Personal Benefit. Comparisons of factor structures indicated that Organizational Communication exhibited the most construct equivalence, and Personal Benefit the least. The most satisfied employees were those from China, and the least satisfied from Brazil, consistent with previous findings that individuals in collectivistic nations report higher satisfaction. The research findings suggest that national cultural context exerts an effect on the nature of job satisfaction.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(16,1048585,3,0,'2024-02-01 07:25:51',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence
Catherine Kwantes
Abstract
Archival data from an attitude survey of employees in a single multinational organization were used to examine the degree to which national culture affects the nature of job satisfaction. Responses from nine countries were compiled to create a benchmark against which nations could be individually compared. Factor analysis revealed four factors: Organizational Communication, Organizational Efficiency/Effectiveness, Organizational Support, and Personal Benefit. Comparisons of factor structures indicated that Organizational Communication exhibited the most construct equivalence, and Personal Benefit the least. The most satisfied employees were those from China, and the least satisfied from Brazil, consistent with previous findings that individuals in collectivistic nations report higher satisfaction. The research findings suggest that national cultural context exerts an effect on the nature of job satisfaction.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(17,1048585,3,0,'2024-02-01 07:25:51',536870914,'\"Ramiro Vaca\"Dear Catherine Kwantes,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/3
If you have been logged out, you can login again with the username ckwantes.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(18,1048585,3,3,'2024-02-01 07:26:03',805306369,'\"Daniel Barnes\"Dear Catherine Kwantes,
I am pleased to inform you that an editor has reviewed your submission, The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(19,1048585,3,3,'2024-02-01 07:26:24',805306369,'\"Daniel Barnes\"Dear Catherine Kwantes,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(20,1048585,4,0,'2024-02-01 07:26:48',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice
Craig Montgomerie, Mark Irvine
Abstract
The integration of technology into the classroom is a major issue in education today. Many national and provincial initiatives specify the technology skills that students must demonstrate at each grade level. The Government of the Province of Alberta in Canada, has mandated the implementation of a new curriculum which began in September of 2000, called Information and Communication Technology. This curriculum is infused within core courses and specifies what students are “expected to know, be able to do, and be like with respect to technology” (Alberta Learning, 2000). Since teachers are required to implement this new curriculum, school jurisdictions are turning to professional development strategies and hiring standards to upgrade teachers’ computer skills to meet this goal. This paper summarizes the results of a telephone survey administered to all public school jurisdictions in the Province of Alberta with a 100% response rate. We examined the computer skills that school jurisdictions require of newly hired teachers, and the support strategies employed for currently employed teachers.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(21,1048585,4,0,'2024-02-01 07:26:48',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice
Craig Montgomerie, Mark Irvine
Abstract
The integration of technology into the classroom is a major issue in education today. Many national and provincial initiatives specify the technology skills that students must demonstrate at each grade level. The Government of the Province of Alberta in Canada, has mandated the implementation of a new curriculum which began in September of 2000, called Information and Communication Technology. This curriculum is infused within core courses and specifies what students are “expected to know, be able to do, and be like with respect to technology” (Alberta Learning, 2000). Since teachers are required to implement this new curriculum, school jurisdictions are turning to professional development strategies and hiring standards to upgrade teachers’ computer skills to meet this goal. This paper summarizes the results of a telephone survey administered to all public school jurisdictions in the Province of Alberta with a 100% response rate. We examined the computer skills that school jurisdictions require of newly hired teachers, and the support strategies employed for currently employed teachers.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(22,1048585,4,0,'2024-02-01 07:26:48',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice
Craig Montgomerie, Mark Irvine
Abstract
The integration of technology into the classroom is a major issue in education today. Many national and provincial initiatives specify the technology skills that students must demonstrate at each grade level. The Government of the Province of Alberta in Canada, has mandated the implementation of a new curriculum which began in September of 2000, called Information and Communication Technology. This curriculum is infused within core courses and specifies what students are “expected to know, be able to do, and be like with respect to technology” (Alberta Learning, 2000). Since teachers are required to implement this new curriculum, school jurisdictions are turning to professional development strategies and hiring standards to upgrade teachers’ computer skills to meet this goal. This paper summarizes the results of a telephone survey administered to all public school jurisdictions in the Province of Alberta with a 100% response rate. We examined the computer skills that school jurisdictions require of newly hired teachers, and the support strategies employed for currently employed teachers.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(23,1048585,4,0,'2024-02-01 07:26:48',536870914,'\"Ramiro Vaca\"Dear Craig Montgomerie,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/4
If you have been logged out, you can login again with the username cmontgomerie.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(24,1048585,4,0,'2024-02-01 07:26:48',536870914,'\"Ramiro Vaca\"Dear Mark Irvine,
You have been named as a co-author on a submission to Journal of Public Knowledge. The submitter, Craig Montgomerie, provided the following details:
Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice
If any of these details are incorrect, or you do not wish to be named on this submission, please contact me.
Thank you for considering Journal of Public Knowledge as a venue for your work.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(25,1048585,5,0,'2024-02-01 07:27:03',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Genetic transformation of forest trees
Diaga Diouf
Abstract
In this review, the recent progress on genetic transformation of forest trees were discussed. Its described also, different applications of genetic engineering for improving forest trees or understanding the mechanisms governing genes expression in woody plants.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(26,1048585,5,0,'2024-02-01 07:27:03',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Genetic transformation of forest trees
Diaga Diouf
Abstract
In this review, the recent progress on genetic transformation of forest trees were discussed. Its described also, different applications of genetic engineering for improving forest trees or understanding the mechanisms governing genes expression in woody plants.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(27,1048585,5,0,'2024-02-01 07:27:03',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Genetic transformation of forest trees
Diaga Diouf
Abstract
In this review, the recent progress on genetic transformation of forest trees were discussed. Its described also, different applications of genetic engineering for improving forest trees or understanding the mechanisms governing genes expression in woody plants.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(28,1048585,5,0,'2024-02-01 07:27:03',536870914,'\"Ramiro Vaca\"Dear Diaga Diouf,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Genetic transformation of forest trees, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/5
If you have been logged out, you can login again with the username ddiouf.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(29,1048585,5,3,'2024-02-01 07:27:15',805306369,'\"Daniel Barnes\"Dear Diaga Diouf,
I am pleased to inform you that an editor has reviewed your submission, Genetic transformation of forest trees, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(30,1048585,5,3,'2024-02-01 07:27:36',805306369,'\"Daniel Barnes\"Dear Diaga Diouf,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Genetic transformation of forest trees, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(31,1048585,5,3,'2024-02-01 07:27:49',805306369,'\"Daniel Barnes\"Dear Diaga Diouf,
I am writing from Journal of Public Knowledge to let you know that the editing of your submission, Genetic transformation of forest trees, 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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(32,1048585,6,0,'2024-02-01 07:28:19',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement
Dana Phillips
Abstract
Robert Fogelin claims that interlocutors must share a framework of background beliefs and commitments in order to fruitfully pursue argument. I refute Fogelin’s claim by investigating more thoroughly the shared background required for productive argument. I find that this background consists not in any common beliefs regarding the topic at hand, but rather in certain shared pro-cedural commitments and competencies. I suggest that Fogelin and his supporters mistakenly view shared beliefs as part of the required background for productive argument because these procedural com-mitments become more difficult to uphold when people’s beliefs diverge widely regarding the topic at hand.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(33,1048585,6,0,'2024-02-01 07:28:19',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement
Dana Phillips
Abstract
Robert Fogelin claims that interlocutors must share a framework of background beliefs and commitments in order to fruitfully pursue argument. I refute Fogelin’s claim by investigating more thoroughly the shared background required for productive argument. I find that this background consists not in any common beliefs regarding the topic at hand, but rather in certain shared pro-cedural commitments and competencies. I suggest that Fogelin and his supporters mistakenly view shared beliefs as part of the required background for productive argument because these procedural com-mitments become more difficult to uphold when people’s beliefs diverge widely regarding the topic at hand.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(34,1048585,6,0,'2024-02-01 07:28:19',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement
Dana Phillips
Abstract
Robert Fogelin claims that interlocutors must share a framework of background beliefs and commitments in order to fruitfully pursue argument. I refute Fogelin’s claim by investigating more thoroughly the shared background required for productive argument. I find that this background consists not in any common beliefs regarding the topic at hand, but rather in certain shared pro-cedural commitments and competencies. I suggest that Fogelin and his supporters mistakenly view shared beliefs as part of the required background for productive argument because these procedural com-mitments become more difficult to uphold when people’s beliefs diverge widely regarding the topic at hand.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(35,1048585,6,0,'2024-02-01 07:28:19',536870914,'\"Ramiro Vaca\"Dear Dana Phillips,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/6
If you have been logged out, you can login again with the username dphillips.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(36,1048585,6,3,'2024-02-01 07:28:32',805306369,'\"Daniel Barnes\"Dear Dana Phillips,
I am pleased to inform you that an editor has reviewed your submission, Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(37,1048585,6,3,'2024-02-01 07:28:54',805306369,'\"Daniel Barnes\"Dear Dana Phillips,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(38,1048585,6,3,'2024-02-01 07:29:07',805306369,'\"Daniel Barnes\"Dear Dana Phillips,
I am writing from Journal of Public Knowledge to let you know that the editing of your submission, Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement, 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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(39,1048585,7,0,'2024-02-01 07:29:32',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Developing efficacy beliefs in the classroom
Domatilia Sokoloff
Abstract
A major goal of education is to equip children with the knowledge, skills and self-belief to be confident and informed citizens - citizens who continue to see themselves as learners beyond graduation. This paper looks at the key role of nurturing efficacy beliefs in order to learn and participate in school and society. Research findings conducted within a social studies context are presented, showing how strategy instruction can enhance self-efficacy for learning. As part of this research, Creative Problem Solving (CPS) was taught to children as a means to motivate and support learning. It is shown that the use of CPS can have positive effects on self-efficacy for learning, and be a valuable framework to involve children in decision-making that leads to social action. Implications for enhancing self-efficacy and motivation to learn in the classroom are discussed.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(40,1048585,7,0,'2024-02-01 07:29:32',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Developing efficacy beliefs in the classroom
Domatilia Sokoloff
Abstract
A major goal of education is to equip children with the knowledge, skills and self-belief to be confident and informed citizens - citizens who continue to see themselves as learners beyond graduation. This paper looks at the key role of nurturing efficacy beliefs in order to learn and participate in school and society. Research findings conducted within a social studies context are presented, showing how strategy instruction can enhance self-efficacy for learning. As part of this research, Creative Problem Solving (CPS) was taught to children as a means to motivate and support learning. It is shown that the use of CPS can have positive effects on self-efficacy for learning, and be a valuable framework to involve children in decision-making that leads to social action. Implications for enhancing self-efficacy and motivation to learn in the classroom are discussed.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(41,1048585,7,0,'2024-02-01 07:29:32',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Developing efficacy beliefs in the classroom
Domatilia Sokoloff
Abstract
A major goal of education is to equip children with the knowledge, skills and self-belief to be confident and informed citizens - citizens who continue to see themselves as learners beyond graduation. This paper looks at the key role of nurturing efficacy beliefs in order to learn and participate in school and society. Research findings conducted within a social studies context are presented, showing how strategy instruction can enhance self-efficacy for learning. As part of this research, Creative Problem Solving (CPS) was taught to children as a means to motivate and support learning. It is shown that the use of CPS can have positive effects on self-efficacy for learning, and be a valuable framework to involve children in decision-making that leads to social action. Implications for enhancing self-efficacy and motivation to learn in the classroom are discussed.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(42,1048585,7,0,'2024-02-01 07:29:32',536870914,'\"Ramiro Vaca\"Dear Domatilia Sokoloff,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Developing efficacy beliefs in the classroom, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/7
If you have been logged out, you can login again with the username dsokoloff.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(43,1048585,7,3,'2024-02-01 07:29:45',805306369,'\"Daniel Barnes\"Dear Domatilia Sokoloff,
I am pleased to inform you that an editor has reviewed your submission, Developing efficacy beliefs in the classroom, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(44,1048585,7,8,'2024-02-01 07:30:15',1073741829,'\"Paul Hudson\"Dear Daniel Barnes, David Buskins, Stephanie Berardo,
Paul Hudson has accepted the following review:
#7 Sokoloff — Developing efficacy beliefs in the classroom
Type: Anonymous Reviewer/Anonymous Author
Login to view all reviewer assignments for this submission.
Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Traditions and Trends in the Study of the Commons
Elinor Ostrom, Frank van Laerhoven
Abstract
The study of the commons has expe- rienced substantial growth and development over the past decades.1 Distinguished scholars in many disciplines had long studied how specific resources were managed or mismanaged at particular times and places (Coward 1980; De los Reyes 1980; MacKenzie 1979; Wittfogel 1957), but researchers who studied specific commons before the mid-1980s were, however, less likely than their contemporary colleagues to be well informed about the work of scholars in other disciplines, about other sec- tors in their own region of interest, or in other regions of the world.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(46,1048585,8,0,'2024-02-01 07:30:37',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Traditions and Trends in the Study of the Commons
Elinor Ostrom, Frank van Laerhoven
Abstract
The study of the commons has expe- rienced substantial growth and development over the past decades.1 Distinguished scholars in many disciplines had long studied how specific resources were managed or mismanaged at particular times and places (Coward 1980; De los Reyes 1980; MacKenzie 1979; Wittfogel 1957), but researchers who studied specific commons before the mid-1980s were, however, less likely than their contemporary colleagues to be well informed about the work of scholars in other disciplines, about other sec- tors in their own region of interest, or in other regions of the world.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(47,1048585,8,0,'2024-02-01 07:30:37',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Traditions and Trends in the Study of the Commons
Elinor Ostrom, Frank van Laerhoven
Abstract
The study of the commons has expe- rienced substantial growth and development over the past decades.1 Distinguished scholars in many disciplines had long studied how specific resources were managed or mismanaged at particular times and places (Coward 1980; De los Reyes 1980; MacKenzie 1979; Wittfogel 1957), but researchers who studied specific commons before the mid-1980s were, however, less likely than their contemporary colleagues to be well informed about the work of scholars in other disciplines, about other sec- tors in their own region of interest, or in other regions of the world.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(48,1048585,8,0,'2024-02-01 07:30:37',536870914,'\"Ramiro Vaca\"Dear Elinor Ostrom,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Traditions and Trends in the Study of the Commons, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/8
If you have been logged out, you can login again with the username eostrom.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(49,1048585,8,0,'2024-02-01 07:30:37',536870914,'\"Ramiro Vaca\"Dear Frank van Laerhoven,
You have been named as a co-author on a submission to Journal of Public Knowledge. The submitter, Elinor Ostrom, provided the following details:
Traditions and Trends in the Study of the Commons
If any of these details are incorrect, or you do not wish to be named on this submission, please contact me.
Thank you for considering Journal of Public Knowledge as a venue for your work.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(50,1048585,9,0,'2024-02-01 07:30:52',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Hansen & Pinto: Reason Reclaimed
Fabio Paglieri
Abstract
None.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(51,1048585,9,0,'2024-02-01 07:30:52',805306370,'\"Ramiro Vaca\"Dear Minoti Inoue,
The following submission has been assigned to you to see through the editorial process.
Hansen & Pinto: Reason Reclaimed
Fabio Paglieri
Abstract
None.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(52,1048585,9,0,'2024-02-01 07:30:52',536870914,'\"Ramiro Vaca\"Dear Fabio Paglieri,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Hansen & Pinto: Reason Reclaimed, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/9
If you have been logged out, you can login again with the username fpaglieri.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(53,1048585,9,3,'2024-02-01 07:31:05',805306369,'\"Daniel Barnes\"Dear Fabio Paglieri,
I am pleased to inform you that an editor has reviewed your submission, Hansen & Pinto: Reason Reclaimed, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(54,1048585,9,3,'2024-02-01 07:31:26',805306369,'\"Daniel Barnes\"Dear Fabio Paglieri,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Hansen & Pinto: Reason Reclaimed, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(55,1048585,9,3,'2024-02-01 07:31:40',805306369,'\"Daniel Barnes\"Dear Fabio Paglieri,
I am writing from Journal of Public Knowledge to let you know that the editing of your submission, Hansen & Pinto: Reason Reclaimed, 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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(56,1048585,10,0,'2024-02-01 07:32:10',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Condensing Water Availability Models to Focus on Specific Water Management Systems
John Novak
Abstract
The Texas Water Availability Modeling System is routinely applied in administration of the water rights permit system, regional and statewide planning, and an expanding variety of other endeavors. Modeling water management in the 23 river basins of the state reflects about 8,000 water right permits and 3,400 reservoirs. Datasets are necessarily large and complex to provide the decision-support capabilities for which the modeling system was developed. New modeling features are being added, and the different types of applications are growing. Certain applications are enhanced by simplifying the simulation input datasets to focus on particular water management systems. A methodology is presented for developing a condensed dataset for a selected reservoir system that reflects the impacts of all the water rights and accompanying reservoirs removed from the original complete dataset. A set of streamflows is developed that represents flows available to the selected system considering the effects of all the other water rights in the river basin contained in the original complete model input dataset that are not included in the condensed dataset. The methodology is applied to develop a condensed model of the Brazos River Authority reservoir system based on modifying the Texas Water Availability Modeling System dataset for the Brazos River Basin.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(57,1048585,10,0,'2024-02-01 07:32:10',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Condensing Water Availability Models to Focus on Specific Water Management Systems
John Novak
Abstract
The Texas Water Availability Modeling System is routinely applied in administration of the water rights permit system, regional and statewide planning, and an expanding variety of other endeavors. Modeling water management in the 23 river basins of the state reflects about 8,000 water right permits and 3,400 reservoirs. Datasets are necessarily large and complex to provide the decision-support capabilities for which the modeling system was developed. New modeling features are being added, and the different types of applications are growing. Certain applications are enhanced by simplifying the simulation input datasets to focus on particular water management systems. A methodology is presented for developing a condensed dataset for a selected reservoir system that reflects the impacts of all the water rights and accompanying reservoirs removed from the original complete dataset. A set of streamflows is developed that represents flows available to the selected system considering the effects of all the other water rights in the river basin contained in the original complete model input dataset that are not included in the condensed dataset. The methodology is applied to develop a condensed model of the Brazos River Authority reservoir system based on modifying the Texas Water Availability Modeling System dataset for the Brazos River Basin.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(58,1048585,10,0,'2024-02-01 07:32:10',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Condensing Water Availability Models to Focus on Specific Water Management Systems
John Novak
Abstract
The Texas Water Availability Modeling System is routinely applied in administration of the water rights permit system, regional and statewide planning, and an expanding variety of other endeavors. Modeling water management in the 23 river basins of the state reflects about 8,000 water right permits and 3,400 reservoirs. Datasets are necessarily large and complex to provide the decision-support capabilities for which the modeling system was developed. New modeling features are being added, and the different types of applications are growing. Certain applications are enhanced by simplifying the simulation input datasets to focus on particular water management systems. A methodology is presented for developing a condensed dataset for a selected reservoir system that reflects the impacts of all the water rights and accompanying reservoirs removed from the original complete dataset. A set of streamflows is developed that represents flows available to the selected system considering the effects of all the other water rights in the river basin contained in the original complete model input dataset that are not included in the condensed dataset. The methodology is applied to develop a condensed model of the Brazos River Authority reservoir system based on modifying the Texas Water Availability Modeling System dataset for the Brazos River Basin.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(59,1048585,10,0,'2024-02-01 07:32:10',536870914,'\"Ramiro Vaca\"Dear John Novak,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Condensing Water Availability Models to Focus on Specific Water Management Systems, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/10
If you have been logged out, you can login again with the username jnovak.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(60,1048585,10,3,'2024-02-01 07:32:24',805306369,'\"Daniel Barnes\"Dear John Novak,
I am pleased to inform you that an editor has reviewed your submission, Condensing Water Availability Models to Focus on Specific Water Management Systems, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(61,1048585,10,9,'2024-02-01 07:32:47',1073741829,'\"Aisla McCrae\"Dear Daniel Barnes, David Buskins, Stephanie Berardo,
Aisla McCrae has accepted the following review:
#10 Novak — Condensing Water Availability Models to Focus on Specific Water Management Systems
Type: Anonymous Reviewer/Anonymous Author
Login to view all reviewer assignments for this submission.
Dear Daniel Barnes, David Buskins, Stephanie Berardo,
Adela Gallego has accepted the following review:
#10 Novak — Condensing Water Availability Models to Focus on Specific Water Management Systems
Type: Anonymous Reviewer/Anonymous Author
Login to view all reviewer assignments for this submission.
Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Learning Sustainable Design through Service
Karim Al-Khafaji, Margaret Morse
Abstract
Environmental sustainability and sustainable development principles are vital topics that engineering education has largely failed to address. Service-learning, which integrates social service into an academic setting, is an emerging tool that can be leveraged to teach sustainable design to future engineers. We present a model of using service-learning to teach sustainable design based on the experiences of the Stanford chapter of Engineers for a Sustainable World. The model involves the identification of projects and partner organizations, a student led, project-based design course, and internships coordinated with partner organizations. The model has been very successful, although limitations and challenges exist. These are discussed along with future directions for expanding the model.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(64,1048585,11,0,'2024-02-01 07:33:19',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Learning Sustainable Design through Service
Karim Al-Khafaji, Margaret Morse
Abstract
Environmental sustainability and sustainable development principles are vital topics that engineering education has largely failed to address. Service-learning, which integrates social service into an academic setting, is an emerging tool that can be leveraged to teach sustainable design to future engineers. We present a model of using service-learning to teach sustainable design based on the experiences of the Stanford chapter of Engineers for a Sustainable World. The model involves the identification of projects and partner organizations, a student led, project-based design course, and internships coordinated with partner organizations. The model has been very successful, although limitations and challenges exist. These are discussed along with future directions for expanding the model.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(65,1048585,11,0,'2024-02-01 07:33:19',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Learning Sustainable Design through Service
Karim Al-Khafaji, Margaret Morse
Abstract
Environmental sustainability and sustainable development principles are vital topics that engineering education has largely failed to address. Service-learning, which integrates social service into an academic setting, is an emerging tool that can be leveraged to teach sustainable design to future engineers. We present a model of using service-learning to teach sustainable design based on the experiences of the Stanford chapter of Engineers for a Sustainable World. The model involves the identification of projects and partner organizations, a student led, project-based design course, and internships coordinated with partner organizations. The model has been very successful, although limitations and challenges exist. These are discussed along with future directions for expanding the model.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(66,1048585,11,0,'2024-02-01 07:33:19',536870914,'\"Ramiro Vaca\"Dear Karim Al-Khafaji,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Learning Sustainable Design through Service, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/11
If you have been logged out, you can login again with the username kalkhafaji.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(67,1048585,11,0,'2024-02-01 07:33:19',536870914,'\"Ramiro Vaca\"Dear Margaret Morse,
You have been named as a co-author on a submission to Journal of Public Knowledge. The submitter, Karim Al-Khafaji, provided the following details:
Learning Sustainable Design through Service
If any of these details are incorrect, or you do not wish to be named on this submission, please contact me.
Thank you for considering Journal of Public Knowledge as a venue for your work.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(68,1048585,12,0,'2024-02-01 07:33:34',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Sodium butyrate improves growth performance of weaned piglets during the first period after weaning
Leo Christopher
Abstract
The aim of this study was to assess the influence of long-term fat supplementation on the fatty acid profile of heavy pig adipose tissue. Fifty-four Large White barrows, averaging 25 kg LW, were randomized (matched weights) to one of three isoenergetic diets supplemented with either tallow (TA), maize oil (MO), or rapeseed oil (RO). The fats were supplement- ed at 3% as fed from 25 to 110 kg LW, and at 2.5 % from 110 kg to slaughtering. Following slaughter at about 160 kg LW, backfat samples were collected from ten animals per treatment and analyzed. Fatty acid composition of backfat close- ly reflected the fatty acid composition of the supplemented fats. The backfat of pigs fed TA had the highest saturated fatty acid content (SFA) (P<0.01); those fed MO had the highest content in polyunsaturated fatty acid (PUFA) and the lowest in monounsaturated fatty acid (MUFA) content; those fed RO had the highest content of linolenic acid (C18:3) and cis 11- ecosenoic acid (C20:1). Only MO treatment had an effect on linoleic acid levels and the iodine value (IV) of backfat, result- ing in levels higher than those (IV = 70; C18:2 = 15%) accepted by the Parma Consortium for dry-cured ham. The IV and unsaturation index in both layers of subcutaneous backfat tissue differed significantly between treatments. These results show that long-term dietary supplementation with different fats changes the fatty acid profile of heavy pig adipose tissue. Supplementation with rapeseed oil increases the proportion of “healthy” fatty acids in pig fat, thereby improving the nutritional quality, however the effects on the technological quality of the fat must be carefully assessed.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(69,1048585,12,0,'2024-02-01 07:33:34',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Sodium butyrate improves growth performance of weaned piglets during the first period after weaning
Leo Christopher
Abstract
The aim of this study was to assess the influence of long-term fat supplementation on the fatty acid profile of heavy pig adipose tissue. Fifty-four Large White barrows, averaging 25 kg LW, were randomized (matched weights) to one of three isoenergetic diets supplemented with either tallow (TA), maize oil (MO), or rapeseed oil (RO). The fats were supplement- ed at 3% as fed from 25 to 110 kg LW, and at 2.5 % from 110 kg to slaughtering. Following slaughter at about 160 kg LW, backfat samples were collected from ten animals per treatment and analyzed. Fatty acid composition of backfat close- ly reflected the fatty acid composition of the supplemented fats. The backfat of pigs fed TA had the highest saturated fatty acid content (SFA) (P<0.01); those fed MO had the highest content in polyunsaturated fatty acid (PUFA) and the lowest in monounsaturated fatty acid (MUFA) content; those fed RO had the highest content of linolenic acid (C18:3) and cis 11- ecosenoic acid (C20:1). Only MO treatment had an effect on linoleic acid levels and the iodine value (IV) of backfat, result- ing in levels higher than those (IV = 70; C18:2 = 15%) accepted by the Parma Consortium for dry-cured ham. The IV and unsaturation index in both layers of subcutaneous backfat tissue differed significantly between treatments. These results show that long-term dietary supplementation with different fats changes the fatty acid profile of heavy pig adipose tissue. Supplementation with rapeseed oil increases the proportion of “healthy” fatty acids in pig fat, thereby improving the nutritional quality, however the effects on the technological quality of the fat must be carefully assessed.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(70,1048585,12,0,'2024-02-01 07:33:34',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Sodium butyrate improves growth performance of weaned piglets during the first period after weaning
Leo Christopher
Abstract
The aim of this study was to assess the influence of long-term fat supplementation on the fatty acid profile of heavy pig adipose tissue. Fifty-four Large White barrows, averaging 25 kg LW, were randomized (matched weights) to one of three isoenergetic diets supplemented with either tallow (TA), maize oil (MO), or rapeseed oil (RO). The fats were supplement- ed at 3% as fed from 25 to 110 kg LW, and at 2.5 % from 110 kg to slaughtering. Following slaughter at about 160 kg LW, backfat samples were collected from ten animals per treatment and analyzed. Fatty acid composition of backfat close- ly reflected the fatty acid composition of the supplemented fats. The backfat of pigs fed TA had the highest saturated fatty acid content (SFA) (P<0.01); those fed MO had the highest content in polyunsaturated fatty acid (PUFA) and the lowest in monounsaturated fatty acid (MUFA) content; those fed RO had the highest content of linolenic acid (C18:3) and cis 11- ecosenoic acid (C20:1). Only MO treatment had an effect on linoleic acid levels and the iodine value (IV) of backfat, result- ing in levels higher than those (IV = 70; C18:2 = 15%) accepted by the Parma Consortium for dry-cured ham. The IV and unsaturation index in both layers of subcutaneous backfat tissue differed significantly between treatments. These results show that long-term dietary supplementation with different fats changes the fatty acid profile of heavy pig adipose tissue. Supplementation with rapeseed oil increases the proportion of “healthy” fatty acids in pig fat, thereby improving the nutritional quality, however the effects on the technological quality of the fat must be carefully assessed.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(71,1048585,12,0,'2024-02-01 07:33:34',536870914,'\"Ramiro Vaca\"Dear Leo Christopher,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Sodium butyrate improves growth performance of weaned piglets during the first period after weaning, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/12
If you have been logged out, you can login again with the username lchristopher.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(72,1048585,12,3,'2024-02-01 07:33:47',805306369,'\"Daniel Barnes\"Dear Leo Christopher,
I am pleased to inform you that an editor has reviewed your submission, Sodium butyrate improves growth performance of weaned piglets during the first period after weaning, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(73,1048585,13,0,'2024-02-01 07:34:19',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Abstract
The Edwards Aquifer serves as the primary water supply in South-Central Texas and is the source for several major springs. In developing a plan to protect endangered species immediately downstream of San Marcos Springs, questions have been raised regarding the established concept of a hydrologic divide between the San Antonio and Barton Springs segments of the Edwards Aquifer during drought conditions. To address these questions, a water-level data collection program and a hydrogeologic study was conducted. An analysis of groundwater-level data indicate that a groundwater divide exists in the vicinity of the surface drainage divide between Onion Creek and Blanco River during wet and normal hydrologic conditions. However, analysis of data collected during the 2009 drought suggests that the groundwater divide dissipated and no longer hydrologically separated the two segments. As a result, there is potential for groundwater to flow past San Marcos Springs toward Barton Springs during major droughts. The implications for this have bearings on the management and availability of groundwater in the Edwards Aquifer. Assessments of simulations from a numerical model suggest 5 cfs could be flowing past San Marcos toward Barton springs under drought conditions. The groundwater divide appears to be influenced by recharge along Onion Creek and Blanco River and appears to be vulnerable to extended periods of little or no recharge and extensive pumping in the vicinity of Kyle and Buda. The 2009 data set shows a very low gradient in the potentiometric surface between San Marcos Springs and Kyle with very little variation in levels between drought and non-drought periods. From Kyle toward Barton Springs, the potentiometric surface slopes significantly to the north and has dramatic changes in levels between drought and non-drought periods. The source and nature of the discontinuity of the change in potentiometric gradients and dynamic water level response at Kyle is unknown. Structural influences or hydraulic properties inherent in the aquifer could be the cause of this discontinuity and may also influence the degree of hydrologic connection between San Marcos and Barton Springs. Rapid population growth and increased water demands in the Kyle and Buda areas necessitates a continual groundwater level monitoring program between San Marcos Springs and Buda to provide data for future hydrogeologic and trend analyses.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(74,1048585,13,0,'2024-02-01 07:34:19',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Abstract
The Edwards Aquifer serves as the primary water supply in South-Central Texas and is the source for several major springs. In developing a plan to protect endangered species immediately downstream of San Marcos Springs, questions have been raised regarding the established concept of a hydrologic divide between the San Antonio and Barton Springs segments of the Edwards Aquifer during drought conditions. To address these questions, a water-level data collection program and a hydrogeologic study was conducted. An analysis of groundwater-level data indicate that a groundwater divide exists in the vicinity of the surface drainage divide between Onion Creek and Blanco River during wet and normal hydrologic conditions. However, analysis of data collected during the 2009 drought suggests that the groundwater divide dissipated and no longer hydrologically separated the two segments. As a result, there is potential for groundwater to flow past San Marcos Springs toward Barton Springs during major droughts. The implications for this have bearings on the management and availability of groundwater in the Edwards Aquifer. Assessments of simulations from a numerical model suggest 5 cfs could be flowing past San Marcos toward Barton springs under drought conditions. The groundwater divide appears to be influenced by recharge along Onion Creek and Blanco River and appears to be vulnerable to extended periods of little or no recharge and extensive pumping in the vicinity of Kyle and Buda. The 2009 data set shows a very low gradient in the potentiometric surface between San Marcos Springs and Kyle with very little variation in levels between drought and non-drought periods. From Kyle toward Barton Springs, the potentiometric surface slopes significantly to the north and has dramatic changes in levels between drought and non-drought periods. The source and nature of the discontinuity of the change in potentiometric gradients and dynamic water level response at Kyle is unknown. Structural influences or hydraulic properties inherent in the aquifer could be the cause of this discontinuity and may also influence the degree of hydrologic connection between San Marcos and Barton Springs. Rapid population growth and increased water demands in the Kyle and Buda areas necessitates a continual groundwater level monitoring program between San Marcos Springs and Buda to provide data for future hydrogeologic and trend analyses.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(75,1048585,13,0,'2024-02-01 07:34:19',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Abstract
The Edwards Aquifer serves as the primary water supply in South-Central Texas and is the source for several major springs. In developing a plan to protect endangered species immediately downstream of San Marcos Springs, questions have been raised regarding the established concept of a hydrologic divide between the San Antonio and Barton Springs segments of the Edwards Aquifer during drought conditions. To address these questions, a water-level data collection program and a hydrogeologic study was conducted. An analysis of groundwater-level data indicate that a groundwater divide exists in the vicinity of the surface drainage divide between Onion Creek and Blanco River during wet and normal hydrologic conditions. However, analysis of data collected during the 2009 drought suggests that the groundwater divide dissipated and no longer hydrologically separated the two segments. As a result, there is potential for groundwater to flow past San Marcos Springs toward Barton Springs during major droughts. The implications for this have bearings on the management and availability of groundwater in the Edwards Aquifer. Assessments of simulations from a numerical model suggest 5 cfs could be flowing past San Marcos toward Barton springs under drought conditions. The groundwater divide appears to be influenced by recharge along Onion Creek and Blanco River and appears to be vulnerable to extended periods of little or no recharge and extensive pumping in the vicinity of Kyle and Buda. The 2009 data set shows a very low gradient in the potentiometric surface between San Marcos Springs and Kyle with very little variation in levels between drought and non-drought periods. From Kyle toward Barton Springs, the potentiometric surface slopes significantly to the north and has dramatic changes in levels between drought and non-drought periods. The source and nature of the discontinuity of the change in potentiometric gradients and dynamic water level response at Kyle is unknown. Structural influences or hydraulic properties inherent in the aquifer could be the cause of this discontinuity and may also influence the degree of hydrologic connection between San Marcos and Barton Springs. Rapid population growth and increased water demands in the Kyle and Buda areas necessitates a continual groundwater level monitoring program between San Marcos Springs and Buda to provide data for future hydrogeologic and trend analyses.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(76,1048585,13,0,'2024-02-01 07:34:19',536870914,'\"Ramiro Vaca\"Dear Lise Kumiega,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/13
If you have been logged out, you can login again with the username lkumiega.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(77,1048585,13,3,'2024-02-01 07:34:33',805306369,'\"Daniel Barnes\"Dear Lise Kumiega,
I am pleased to inform you that an editor has reviewed your submission, Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(78,1048585,13,7,'2024-02-01 07:35:04',1073741829,'\"Julie Janssen\"Dear Daniel Barnes, David Buskins, Stephanie Berardo,
Julie Janssen has accepted the following review:
#13 Kumiega — Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions
Type: Anonymous Reviewer/Anonymous Author
Login to view all reviewer assignments for this submission.
Dear Daniel Barnes, David Buskins, Stephanie Berardo,
Aisla McCrae has accepted the following review:
#13 Kumiega — Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions
Type: Anonymous Reviewer/Anonymous Author
Login to view all reviewer assignments for this submission.
Dear Daniel Barnes, David Buskins, Stephanie Berardo,
Adela Gallego has accepted the following review:
#13 Kumiega — Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions
Type: Anonymous Reviewer/Anonymous Author
Login to view all reviewer assignments for this submission.
Dear Lise Kumiega,
Your submission Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions 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.
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.
When you have completed your revisions, you can upload revised documents along with your response to the reviewers\' comments at your submission dashboard. If you have been logged out, you can login again with the username lkumiega.
If you have any questions, please contact me from your submission dashboard.
We look forward to receiving your revised submission.
Kind regards,
Daniel Barnes
The following comments were received from reviewers.
Reviewer 1:
Recommendation: Revisions Required
Here are my review comments
Reviewer 2:
Recommendation: Revisions Required
Here are my review comments
Reviewer 3:
Recommendation: Resubmit for Review
Here are my review comments
'),(82,1048585,14,0,'2024-02-01 07:36:13',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Towards Designing an Intercultural Curriculum: A Case Study from the Atlantic Coast of Nicaragua
Patricia Daniel
Abstract
One of the challenges still to be met in the 21st century is that of genuinely embracing diversity. How can education help to overcome the barriers that continue to exist between people on the basis of language, culture and gender? This case study takes the Atlantic Coast of Nicaragua as an example of a multilingual/multiethnic region and examines how the community university URACCAN is contributing to the development of interculturality. It describes participatory research that was carried out with university staff and students with the intention of defining an intercultural curriculum and appropriate strategies for delivering such. One model used as a basis for discussions was the Model for Community Understanding from the Wales Curriculum Council, which emphasises the belonging of the individual to different communities or cultures at the same time. Factors supporting the development of an intercultural curriculum include the university’s close involvement with the ethnic communities it serves. However, ethno-linguistic power relations within the region and the country as a whole, still militate against egalitarianism within the university. The research highlights the importance of participatory pedagogy as the basis for promoting interculturality and achieving lasting social transformation.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(83,1048585,14,0,'2024-02-01 07:36:13',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Towards Designing an Intercultural Curriculum: A Case Study from the Atlantic Coast of Nicaragua
Patricia Daniel
Abstract
One of the challenges still to be met in the 21st century is that of genuinely embracing diversity. How can education help to overcome the barriers that continue to exist between people on the basis of language, culture and gender? This case study takes the Atlantic Coast of Nicaragua as an example of a multilingual/multiethnic region and examines how the community university URACCAN is contributing to the development of interculturality. It describes participatory research that was carried out with university staff and students with the intention of defining an intercultural curriculum and appropriate strategies for delivering such. One model used as a basis for discussions was the Model for Community Understanding from the Wales Curriculum Council, which emphasises the belonging of the individual to different communities or cultures at the same time. Factors supporting the development of an intercultural curriculum include the university’s close involvement with the ethnic communities it serves. However, ethno-linguistic power relations within the region and the country as a whole, still militate against egalitarianism within the university. The research highlights the importance of participatory pedagogy as the basis for promoting interculturality and achieving lasting social transformation.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(84,1048585,14,0,'2024-02-01 07:36:13',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Towards Designing an Intercultural Curriculum: A Case Study from the Atlantic Coast of Nicaragua
Patricia Daniel
Abstract
One of the challenges still to be met in the 21st century is that of genuinely embracing diversity. How can education help to overcome the barriers that continue to exist between people on the basis of language, culture and gender? This case study takes the Atlantic Coast of Nicaragua as an example of a multilingual/multiethnic region and examines how the community university URACCAN is contributing to the development of interculturality. It describes participatory research that was carried out with university staff and students with the intention of defining an intercultural curriculum and appropriate strategies for delivering such. One model used as a basis for discussions was the Model for Community Understanding from the Wales Curriculum Council, which emphasises the belonging of the individual to different communities or cultures at the same time. Factors supporting the development of an intercultural curriculum include the university’s close involvement with the ethnic communities it serves. However, ethno-linguistic power relations within the region and the country as a whole, still militate against egalitarianism within the university. The research highlights the importance of participatory pedagogy as the basis for promoting interculturality and achieving lasting social transformation.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(85,1048585,14,0,'2024-02-01 07:36:13',536870914,'\"Ramiro Vaca\"Dear Patricia Daniel,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Towards Designing an Intercultural Curriculum: A Case Study from the Atlantic Coast of Nicaragua, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/14
If you have been logged out, you can login again with the username pdaniel.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(86,1048585,15,0,'2024-02-01 07:36:27',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Yam diseases and its management in Nigeria
Rana Baiyewu
Abstract
This review presents different diseases associated with yam and the management strategies employed in combating its menace in Nigeria. The field and storage diseases are presented, anthracnose is regarded as the most widely spread of all the field diseases, while yam mosaic virus disease is considered to cause the most severe losses in yams. Dry rot is considered as the most devastating of all the storage diseases of yam. Dry rot of yams alone causes a marked reduction in the quantity, marketable value and edible portions of tubers and those reductions are more severe in stored yams. The management strategies adopted and advocated for combating the field diseases includes the use of crop rotation, fallowing, planting of healthy material, the destruction of infected crop cultivars and the use of resistant cultivars. With regards to the storage diseases, the use of Tecto (Thiabendazole), locally made dry gins or wood ash before storage has been found to protect yam tubers against fungal infection in storage. Finally, processing of yam tubers into chips or cubes increases its shelf live for a period of between 6 months and one year.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(87,1048585,15,0,'2024-02-01 07:36:27',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Yam diseases and its management in Nigeria
Rana Baiyewu
Abstract
This review presents different diseases associated with yam and the management strategies employed in combating its menace in Nigeria. The field and storage diseases are presented, anthracnose is regarded as the most widely spread of all the field diseases, while yam mosaic virus disease is considered to cause the most severe losses in yams. Dry rot is considered as the most devastating of all the storage diseases of yam. Dry rot of yams alone causes a marked reduction in the quantity, marketable value and edible portions of tubers and those reductions are more severe in stored yams. The management strategies adopted and advocated for combating the field diseases includes the use of crop rotation, fallowing, planting of healthy material, the destruction of infected crop cultivars and the use of resistant cultivars. With regards to the storage diseases, the use of Tecto (Thiabendazole), locally made dry gins or wood ash before storage has been found to protect yam tubers against fungal infection in storage. Finally, processing of yam tubers into chips or cubes increases its shelf live for a period of between 6 months and one year.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(88,1048585,15,0,'2024-02-01 07:36:27',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Yam diseases and its management in Nigeria
Rana Baiyewu
Abstract
This review presents different diseases associated with yam and the management strategies employed in combating its menace in Nigeria. The field and storage diseases are presented, anthracnose is regarded as the most widely spread of all the field diseases, while yam mosaic virus disease is considered to cause the most severe losses in yams. Dry rot is considered as the most devastating of all the storage diseases of yam. Dry rot of yams alone causes a marked reduction in the quantity, marketable value and edible portions of tubers and those reductions are more severe in stored yams. The management strategies adopted and advocated for combating the field diseases includes the use of crop rotation, fallowing, planting of healthy material, the destruction of infected crop cultivars and the use of resistant cultivars. With regards to the storage diseases, the use of Tecto (Thiabendazole), locally made dry gins or wood ash before storage has been found to protect yam tubers against fungal infection in storage. Finally, processing of yam tubers into chips or cubes increases its shelf live for a period of between 6 months and one year.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(89,1048585,15,0,'2024-02-01 07:36:27',536870914,'\"Ramiro Vaca\"Dear Rana Baiyewu,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Yam diseases and its management in Nigeria, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/15
If you have been logged out, you can login again with the username rbaiyewu.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(90,1048585,15,3,'2024-02-01 07:36:42',805306369,'\"Daniel Barnes\"Dear Rana Baiyewu,
I am pleased to inform you that an editor has reviewed your submission, Yam diseases and its management in Nigeria, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(91,1048585,15,3,'2024-02-01 07:37:03',805306369,'\"Daniel Barnes\"Dear Rana Baiyewu,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Yam diseases and its management in Nigeria, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(92,1048585,15,3,'2024-02-01 07:37:16',805306369,'\"Daniel Barnes\"Dear Rana Baiyewu,
I am writing from Journal of Public Knowledge to let you know that the editing of your submission, Yam diseases and its management in Nigeria, 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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(93,1048585,16,0,'2024-02-01 07:37:41',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Influence of long-term nutrition with different dietary fats on fatty acid composition of heavy pigs backfat
Rosanna Rossi
Abstract
Aim of this research is to provide a general situation of cattle slaughtered in Cameroon, as a representative example for the Central African Sub-region. The quality and safety of beef from the abattoir of Yaoundé, the largest in Cameroon, were considered. From January 2009 to March 2012, the pre-slaughter conditions and characteristics of 1953 cattle carcasses were recorded, as well as the pH of m. longissimus thoracis 24 h after slaughter. From these carcasses, 60 were selected to represent the bulls slaughtered. The quality parameters and composition of m. longissimus thoracis were carried out. The origin of most of the cattle was the Guinea High Savannah (74.6%), and transhumance was the common production system (75.5%). Gudali (45.6%), White Fulani (33.3%) and Red Mbororo (20.3%) breeds were predominant. Carcass weight was affected by rearing system and cattle category, and it markedly varied during year. Considering meat quality, the fat content was low (1.2%) and similar between breeds, moreover Gudali showed the toughest meat. Of the cows slaughtered, 27% were pregnant and the most common abnormal conditions encountered were ectoparasites, fatigue, lameness, fungal-like skin lesions, enlarged lymph nodes, respiratory distress, nodular lesions. More than 20% of the carcasses had some organs condemned, mainly for liver flukes (5.17%), and 1.0% of them were completely condemned due to tuberculosis, that also affected 3.28% of lungs. These data could aid authorities draw up programmes with the aim to strengthen cattle production, improve beef supply, control and prevent the observed diseases, and promote the regional trade.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(94,1048585,16,0,'2024-02-01 07:37:41',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Influence of long-term nutrition with different dietary fats on fatty acid composition of heavy pigs backfat
Rosanna Rossi
Abstract
Aim of this research is to provide a general situation of cattle slaughtered in Cameroon, as a representative example for the Central African Sub-region. The quality and safety of beef from the abattoir of Yaoundé, the largest in Cameroon, were considered. From January 2009 to March 2012, the pre-slaughter conditions and characteristics of 1953 cattle carcasses were recorded, as well as the pH of m. longissimus thoracis 24 h after slaughter. From these carcasses, 60 were selected to represent the bulls slaughtered. The quality parameters and composition of m. longissimus thoracis were carried out. The origin of most of the cattle was the Guinea High Savannah (74.6%), and transhumance was the common production system (75.5%). Gudali (45.6%), White Fulani (33.3%) and Red Mbororo (20.3%) breeds were predominant. Carcass weight was affected by rearing system and cattle category, and it markedly varied during year. Considering meat quality, the fat content was low (1.2%) and similar between breeds, moreover Gudali showed the toughest meat. Of the cows slaughtered, 27% were pregnant and the most common abnormal conditions encountered were ectoparasites, fatigue, lameness, fungal-like skin lesions, enlarged lymph nodes, respiratory distress, nodular lesions. More than 20% of the carcasses had some organs condemned, mainly for liver flukes (5.17%), and 1.0% of them were completely condemned due to tuberculosis, that also affected 3.28% of lungs. These data could aid authorities draw up programmes with the aim to strengthen cattle production, improve beef supply, control and prevent the observed diseases, and promote the regional trade.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(95,1048585,16,0,'2024-02-01 07:37:41',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Influence of long-term nutrition with different dietary fats on fatty acid composition of heavy pigs backfat
Rosanna Rossi
Abstract
Aim of this research is to provide a general situation of cattle slaughtered in Cameroon, as a representative example for the Central African Sub-region. The quality and safety of beef from the abattoir of Yaoundé, the largest in Cameroon, were considered. From January 2009 to March 2012, the pre-slaughter conditions and characteristics of 1953 cattle carcasses were recorded, as well as the pH of m. longissimus thoracis 24 h after slaughter. From these carcasses, 60 were selected to represent the bulls slaughtered. The quality parameters and composition of m. longissimus thoracis were carried out. The origin of most of the cattle was the Guinea High Savannah (74.6%), and transhumance was the common production system (75.5%). Gudali (45.6%), White Fulani (33.3%) and Red Mbororo (20.3%) breeds were predominant. Carcass weight was affected by rearing system and cattle category, and it markedly varied during year. Considering meat quality, the fat content was low (1.2%) and similar between breeds, moreover Gudali showed the toughest meat. Of the cows slaughtered, 27% were pregnant and the most common abnormal conditions encountered were ectoparasites, fatigue, lameness, fungal-like skin lesions, enlarged lymph nodes, respiratory distress, nodular lesions. More than 20% of the carcasses had some organs condemned, mainly for liver flukes (5.17%), and 1.0% of them were completely condemned due to tuberculosis, that also affected 3.28% of lungs. These data could aid authorities draw up programmes with the aim to strengthen cattle production, improve beef supply, control and prevent the observed diseases, and promote the regional trade.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(96,1048585,16,0,'2024-02-01 07:37:41',536870914,'\"Ramiro Vaca\"Dear Rosanna Rossi,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Influence of long-term nutrition with different dietary fats on fatty acid composition of heavy pigs backfat, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/16
If you have been logged out, you can login again with the username rrossi.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(97,1048585,17,0,'2024-02-01 07:37:56',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran
Vajiheh Karbasizaed
Abstract
The antimicrobial, heavy metal resistance patterns and plasmid profiles of Coliforms (Enterobacteriacea) isolated from nosocomial infections and healthy human faeces were compared. Fifteen of the 25 isolates from nosocomial infections were identified as Escherichia coli, and remaining as Kelebsiella pneumoniae. Seventy two percent of the strains isolated from nosocomial infections possess multiple resistance to antibiotics compared to 45% of strains from healthy human faeces. The difference between minimal inhibitory concentration (MIC) values of strains from clinical cases and from faeces for four heavy metals (Hg, Cu, Pb, Cd) was not significant. However most strains isolated from hospital were more tolerant to heavy metal than those from healthy persons. There was no consistent relationship between plasmid profile group and antimicrobial resistance pattern, although a conjugative plasmid (>56.4 kb) encoding resistance to heavy metals and antibiotics was recovered from eight of the strains isolated from nosocomial infections. The results indicate multidrug-resistance coliforms as a potential cause of nosocomial infection in this region.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(98,1048585,17,0,'2024-02-01 07:37:56',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran
Vajiheh Karbasizaed
Abstract
The antimicrobial, heavy metal resistance patterns and plasmid profiles of Coliforms (Enterobacteriacea) isolated from nosocomial infections and healthy human faeces were compared. Fifteen of the 25 isolates from nosocomial infections were identified as Escherichia coli, and remaining as Kelebsiella pneumoniae. Seventy two percent of the strains isolated from nosocomial infections possess multiple resistance to antibiotics compared to 45% of strains from healthy human faeces. The difference between minimal inhibitory concentration (MIC) values of strains from clinical cases and from faeces for four heavy metals (Hg, Cu, Pb, Cd) was not significant. However most strains isolated from hospital were more tolerant to heavy metal than those from healthy persons. There was no consistent relationship between plasmid profile group and antimicrobial resistance pattern, although a conjugative plasmid (>56.4 kb) encoding resistance to heavy metals and antibiotics was recovered from eight of the strains isolated from nosocomial infections. The results indicate multidrug-resistance coliforms as a potential cause of nosocomial infection in this region.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(99,1048585,17,0,'2024-02-01 07:37:56',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran
Vajiheh Karbasizaed
Abstract
The antimicrobial, heavy metal resistance patterns and plasmid profiles of Coliforms (Enterobacteriacea) isolated from nosocomial infections and healthy human faeces were compared. Fifteen of the 25 isolates from nosocomial infections were identified as Escherichia coli, and remaining as Kelebsiella pneumoniae. Seventy two percent of the strains isolated from nosocomial infections possess multiple resistance to antibiotics compared to 45% of strains from healthy human faeces. The difference between minimal inhibitory concentration (MIC) values of strains from clinical cases and from faeces for four heavy metals (Hg, Cu, Pb, Cd) was not significant. However most strains isolated from hospital were more tolerant to heavy metal than those from healthy persons. There was no consistent relationship between plasmid profile group and antimicrobial resistance pattern, although a conjugative plasmid (>56.4 kb) encoding resistance to heavy metals and antibiotics was recovered from eight of the strains isolated from nosocomial infections. The results indicate multidrug-resistance coliforms as a potential cause of nosocomial infection in this region.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(100,1048585,17,0,'2024-02-01 07:37:56',536870914,'\"Ramiro Vaca\"Dear Vajiheh Karbasizaed,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/17
If you have been logged out, you can login again with the username vkarbasizaed.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(101,1048585,17,3,'2024-02-01 07:38:11',805306369,'\"Daniel Barnes\"Dear Vajiheh Karbasizaed,
I am pleased to inform you that an editor has reviewed your submission, Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(102,1048585,17,3,'2024-02-01 07:38:33',805306369,'\"Daniel Barnes\"Dear Vajiheh Karbasizaed,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(103,1048585,17,3,'2024-02-01 07:38:47',805306369,'\"Daniel Barnes\"Dear Vajiheh Karbasizaed,
I am writing from Journal of Public Knowledge to let you know that the editing of your submission, Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran, 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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'),(104,1048585,18,0,'2024-02-01 07:41:11',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Self-Organization in Multi-Level Institutions in Networked Environments
Valerie Williamson
Abstract
We compare a setting where actors individually decide whom to sanction with a setting where sanctions are only implemented when actors collectively agree that a certain actor should be sanctioned. Collective sanctioning decisions are problematic due to the difficulty of reaching consensus. However, when a decision is made collectively, perverse sanctioning (e.g. punishing high contributors) by individual actors is ruled out. Therefore, collective sanctioning decisions are likely to be in the interest of the whole group.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(105,1048585,18,0,'2024-02-01 07:41:11',805306370,'\"Ramiro Vaca\"Dear David Buskins,
The following submission has been assigned to you to see through the editorial process.
Self-Organization in Multi-Level Institutions in Networked Environments
Valerie Williamson
Abstract
We compare a setting where actors individually decide whom to sanction with a setting where sanctions are only implemented when actors collectively agree that a certain actor should be sanctioned. Collective sanctioning decisions are problematic due to the difficulty of reaching consensus. However, when a decision is made collectively, perverse sanctioning (e.g. punishing high contributors) by individual actors is ruled out. Therefore, collective sanctioning decisions are likely to be in the interest of the whole group.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(106,1048585,18,0,'2024-02-01 07:41:11',805306370,'\"Ramiro Vaca\"Dear Stephanie Berardo,
The following submission has been assigned to you to see through the editorial process.
Self-Organization in Multi-Level Institutions in Networked Environments
Valerie Williamson
Abstract
We compare a setting where actors individually decide whom to sanction with a setting where sanctions are only implemented when actors collectively agree that a certain actor should be sanctioned. Collective sanctioning decisions are problematic due to the difficulty of reaching consensus. However, when a decision is made collectively, perverse sanctioning (e.g. punishing high contributors) by individual actors is ruled out. Therefore, collective sanctioning decisions are likely to be in the interest of the whole group.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(107,1048585,18,0,'2024-02-01 07:41:11',536870914,'\"Ramiro Vaca\"Dear Valerie Williamson,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Self-Organization in Multi-Level Institutions in Networked Environments, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/18
If you have been logged out, you can login again with the username vwilliamson.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(108,1048585,18,3,'2024-02-01 07:41:26',805306369,'\"Daniel Barnes\"Dear Valerie Williamson,
I’m sorry to inform you that, after reviewing your submission, Self-Organization in Multi-Level Institutions in Networked Environments, the editor has found that it does not meet our requirements for publication in Journal of Public Knowledge.
I wish you success if you consider submitting your work elsewhere.
Kind regards,
Daniel Barnes
'),(109,1048585,19,0,'2024-02-01 07:41:44',805306370,'\"Ramiro Vaca\"Dear Daniel Barnes,
The following submission has been assigned to you to see through the editorial process.
Finocchiaro: Arguments About Arguments
Zita Woods
Abstract
None.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(110,1048585,19,0,'2024-02-01 07:41:44',805306370,'\"Ramiro Vaca\"Dear Minoti Inoue,
The following submission has been assigned to you to see through the editorial process.
Finocchiaro: Arguments About Arguments
Zita Woods
Abstract
None.If you find the submission to be relevant for Journal of Public Knowledge, please forward the submission to the review stage by selecting \"Send to Review\" and then assign reviewers by clicking \"Add Reviewer\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
This is an automated message from Journal of Public Knowledge.
'),(111,1048585,19,0,'2024-02-01 07:41:44',536870914,'\"Ramiro Vaca\"Dear Zita Woods,
Thank you for your submission to Journal of Public Knowledge. We have received your submission, Finocchiaro: Arguments About Arguments, 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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: http://localhost/index.php/publicknowledge/authorDashboard/submission/19
If you have been logged out, you can login again with the username zwoods.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering Journal of Public Knowledge as a venue for your work.
This is an automated message from Journal of Public Knowledge.
'),(112,1048585,19,3,'2024-02-01 07:41:59',805306369,'\"Daniel Barnes\"Dear Zita Woods,
I am pleased to inform you that an editor has reviewed your submission, Finocchiaro: Arguments About Arguments, and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.
This journal conducts double-anonymous peer review. The reviewers will not see any identifying information about you or your co-authors. Similarly, you will not know who reviewed your submission, and you will not hear from the reviewers directly. You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
Daniel Barnes
'),(113,1048585,19,3,'2024-02-01 07:42:20',805306369,'\"Daniel Barnes\"Dear Zita Woods,
I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, Finocchiaro: Arguments About Arguments, to meet or exceed our expectations. We are excited to publish your piece in Journal of Public Knowledge and we thank you for choosing our journal as a venue for your work.
Your submission is now forthcoming in a future issue of Journal of Public Knowledge 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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
Daniel Barnes
'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `email_log_users` ( `email_log_user_id` bigint unsigned NOT NULL AUTO_INCREMENT, `email_log_id` bigint NOT NULL, `user_id` bigint 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 AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `email_log_users` VALUES (1,1,3),(2,2,4),(3,3,5),(4,4,17),(5,6,17),(6,7,17),(7,8,17),(8,9,3),(9,10,4),(10,11,5),(11,12,18),(12,13,18),(13,14,3),(14,15,4),(15,16,5),(16,17,19),(17,18,19),(18,19,19),(19,20,3),(20,21,4),(21,22,5),(22,23,20),(23,25,3),(24,26,4),(25,27,5),(26,28,21),(27,29,21),(28,30,21),(29,31,21),(30,32,3),(31,33,4),(32,34,5),(33,35,22),(34,36,22),(35,37,22),(36,38,22),(37,39,3),(38,40,4),(39,41,5),(40,42,23),(41,43,23),(42,44,3),(43,44,4),(44,44,5),(45,45,3),(46,46,4),(47,47,5),(48,48,24),(49,50,3),(50,51,6),(51,52,25),(52,53,25),(53,54,25),(54,55,25),(55,56,3),(56,57,4),(57,58,5),(58,59,26),(59,60,26),(60,61,3),(61,61,4),(62,61,5),(63,62,3),(64,62,4),(65,62,5),(66,63,3),(67,64,4),(68,65,5),(69,66,27),(70,68,3),(71,69,4),(72,70,5),(73,71,28),(74,72,28),(75,73,3),(76,74,4),(77,75,5),(78,76,29),(79,77,29),(80,78,3),(81,78,4),(82,78,5),(83,79,3),(84,79,4),(85,79,5),(86,80,3),(87,80,4),(88,80,5),(89,81,29),(90,82,3),(91,83,4),(92,84,5),(93,85,30),(94,86,3),(95,87,4),(96,88,5),(97,89,31),(98,90,31),(99,91,31),(100,92,31),(101,93,3),(102,94,4),(103,95,5),(104,96,32),(105,97,3),(106,98,4),(107,99,5),(108,100,33),(109,101,33),(110,102,33),(111,103,33),(112,104,3),(113,105,4),(114,106,5),(115,107,34),(116,108,34),(117,109,3),(118,110,6),(119,111,35),(120,112,35),(121,113,35); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `email_templates` ( `email_id` bigint NOT NULL AUTO_INCREMENT, `email_key` varchar(255) NOT NULL COMMENT 'Unique identifier for this email.', `context_id` bigint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `email_templates_default_data` ( `email_templates_default_data_id` bigint 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, PRIMARY KEY (`email_templates_default_data_id`), UNIQUE KEY `email_templates_default_data_unique` (`email_key`,`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=208 DEFAULT CHARSET=utf8mb3 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.Dear {$recipientName},
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.
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.
Username: {$recipientUsername}
Password: {$password}
Thank you,
{$signature}'),(11,'ISSUE_PUBLISH_NOTIFY','en','Issue Published Notify','Just published: {$issueIdentification} of {$journalName}','Dear {$recipientName},
We are pleased to announce the publication of {$issueIdentification} of {$journalName}. We invite you to read and share this work with your scholarly community.
Many thanks to our authors, reviewers, and editors for their valuable contributions, and to our readers for your continued interest.
Thank you,
{$signature}'),(13,'SUBMISSION_ACK','en','Submission Confirmation','Thank you for your submission to {$journalName}','Dear {$recipientName},
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.
You can view your submission and track its progress through the editorial process at the following location:
Submission URL: {$authorSubmissionUrl}
If you have been logged out, you can login again with the username {$recipientUsername}.
If you have any questions, please contact me from your submission dashboard.
Thank you for considering {$journalName} as a venue for your work.
{$journalSignature}'),(15,'SUBMISSION_ACK_NOT_USER','en','Submission Confirmation (Other Authors)','Submission confirmation','Dear {$recipientName},
You have been named as a co-author on a submission to {$journalName}. The submitter, {$submitterName}, provided the following details:
{$submissionTitle}
{$authorsWithAffiliation}
If any of these details are incorrect, or you do not wish to be named on this submission, please contact me.
Thank you for considering {$journalName} as a venue for your work.
Kind regards,
{$journalSignature}'),(17,'EDITOR_ASSIGN','en','Editor Assigned','You have been assigned as an editor on a submission to {$journalName}','Dear {$recipientName},
The following submission has been assigned to you to see through the editorial process.
{$submissionTitle}
{$authors}
Abstract
{$submissionAbstract}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\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
{$journalSignature}'),(19,'REVIEW_CANCEL','en','Reviewer Unassign','Request for Review Cancelled','Dear {$recipientName},
Recently, we asked you to review a submission to {$journalName}. We have decided to cancel the request for you to reivew the submission, {$submissionTitle}.
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.
If you have any questions, please contact me.
{$signature}'),(21,'REVIEW_REINSTATE','en','Reviewer Reinstate','Can you still review something for {$journalName}?','Dear {$recipientName},
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.
If you are able to assist with this submission\'s review, you can login to the journal to view the submission, upload review files, and submit your review request.
If you have any questions, please contact me.
Kind regards,
{$signature}'),(23,'REVIEW_RESEND_REQUEST','en','Resend Review Request to Reviewer','Requesting your review again for {$journalName}','Dear {$recipientName},
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.
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 accept or decline the request by {$responseDueDate}, so that we can find an alternate reviewer.
If you have any questions, please contact me.
Kind regards,
{$signature}'),(25,'REVIEW_REQUEST','en','Review Request','Invitation to review','Dear {$recipientName},
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.
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.
Abstract
{$submissionAbstract}Please accept or decline the review by {$responseDueDate}.
You may contact me with any questions about the submission or the review process.
Thank you for considering this request. Your help is much appreciated.
Kind regards,
{$signature}'),(27,'REVIEW_REQUEST_SUBSEQUENT','en','Review Request Subsequent','Request to review a revised submission','Dear {$recipientName},
Thank you for your review of {$submissionTitle}. 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.
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.
Abstract
{$submissionAbstract}Please accept or decline the review by {$responseDueDate}.
Please feel free to contact me with any questions about the submission or the review process.
Thank you for considering this request. Your help is much appreciated.
Kind regards,
{$signature}'),(29,'REVIEW_RESPONSE_OVERDUE_AUTO','en','Review Response Overdue (Automated)','Will you be able to review this for us?','Dear {$recipientName},
This email is an automated reminder from {$journalName} in regards to our request for your review of the submission, \"{$submissionTitle}.\"
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.
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.
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.
Abstract
{$submissionAbstract}Please feel free to contact me with any questions about the submission or the review process.
Thank you for considering this request. Your help is much appreciated.
Kind regards,
{$journalSignature}'),(31,'REVIEW_CONFIRM','en','Review Confirm','Review accepted: {$reviewerName} accepted review assignment for #{$submissionId} {$authorsShort} — {$submissionTitle}','Dear {$recipientName},
{$reviewerName} has accepted the following review:
#{$submissionId} {$authorsShort} — {$submissionTitle}
Type: {$reviewMethod}
Login to view all reviewer assignments for this submission.
Dear {$recipientName},
\nThank 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.
\nIt 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.
\nKind regards,
\n{$signature}
'),(37,'REVIEW_REMIND','en','Review Reminder','A reminder to please complete your review','Dear {$recipientName},
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.
You can login to the journal and follow the review steps to view the submission, upload review files, and submit your review comments.
If you need an extension of the deadline, please contact me. I look forward to hearing from you.
Thank you in advance and kind regards,
{$signature}'),(39,'REVIEW_REMIND_AUTO','en','Review Reminder (Automated)','A reminder to please complete your review','Dear {$recipientName}:
This email is an automated reminder from {$journalName} in regards to our request for your review of the submission, \"{$submissionTitle}.\"
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.
Please login to the journal and follow the review steps to view the submission, upload review files, and submit your review comments.
If you need an extension of the deadline, please contact me. I look forward to hearing from you.
Thank you in advance and kind regards,
{$journalSignature}'),(41,'REVIEW_COMPLETE','en','Review Completed','Review complete: {$reviewerName} recommends {$reviewRecommendation} for #{$submissionId} {$authorsShort} — {$submissionTitle}','Dear {$recipientName},
{$reviewerName} completed the following review:
#{$submissionId} {$authorsShort} — {$submissionTitle}
Recommendation: {$reviewRecommendation}
Type: {$reviewMethod}
Login to view all files and comments provided by this reviewer.
'),(43,'REVIEW_EDIT','en','Review Edited','Your review assignment has been changed for {$journalName}','Dear {$recipientName},
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.
{$submissionTitle}
Type: {$reviewMethod}
Accept or Decline By: {$responseDueDate}
Submit Review By: {$reviewDueDate}
You can login to complete this review at any time.
'),(45,'EDITOR_DECISION_ACCEPT','en','Submission Accepted','Your submission has been accepted to {$journalName}','Dear {$recipientName},
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.
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.
Your submission will now undergo copy editing and formatting to prepare it for publication.
You will shortly receive further instructions.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
{$signature}'),(47,'EDITOR_DECISION_SEND_TO_EXTERNAL','en','Sent to Review','Your submission has been sent for review','Dear {$recipientName},
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.
{$reviewTypeDescription} You will hear from us with feedback from the reviewers and information about the next steps.
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.
If you have any questions, please contact me from your submission dashboard.
{$signature}
'),(49,'EDITOR_DECISION_SEND_TO_PRODUCTION','en','Sent to Production','Next steps for publishing your submission','Dear {$recipientName},
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.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
{$signature}'),(51,'EDITOR_DECISION_REVISIONS','en','Revisions Requested','Your submission has been reviewed and we encourage you to submit revisions','Dear {$recipientName},
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.
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.
When you have completed your revisions, you can upload revised documents along with your response to the reviewers\' comments at your submission dashboard. If you have been logged out, you can login again with the username {$recipientUsername}.
If you have any questions, please contact me from your submission dashboard.
We look forward to receiving your revised submission.
Kind regards,
{$signature}The following comments were received from reviewers.
{$allReviewerComments}'),(53,'EDITOR_DECISION_RESUBMIT','en','Resubmit for Review','Your submission has been reviewed - please revise and resubmit','Dear {$recipientName},
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.
Please note that resubmitting your work does not guarantee that it will be accepted.
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.
When you have completed your revisions, you can upload revised documents along with your response to the reviewers\' comments at your submission dashboard. If you have been logged out, you can login again with the username {$recipientUsername}.
If you have any questions, please contact me from your submission dashboard.
We look forward to receiving your revised submission.
Kind regards,
{$signature}The following comments were received from reviewers.
{$allReviewerComments}'),(55,'EDITOR_DECISION_DECLINE','en','Submission Declined','Your submission has been declined','Dear {$recipientName},
While we appreciate receiving your submission, we are unable to accept {$submissionTitle} for publication on the basis of the comments from reviewers.
The reviewers\' comments are included at the bottom of this email.
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.
You are now free to submit the work elsewhere if you choose to do so.
Kind regards,
{$signature}The following comments were received from reviewers.
{$allReviewerComments}'),(57,'EDITOR_DECISION_INITIAL_DECLINE','en','Submission Declined (Pre-Review)','Your submission has been declined','Dear {$recipientName},
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}.
I wish you success if you consider submitting your work elsewhere.
Kind regards,
{$signature}'),(59,'EDITOR_RECOMMENDATION','en','Recommendation Made','Editor Recommendation','Dear {$recipientName},
After considering the reviewers\' feedback, I would like to make the following recommendation regarding the submission {$submissionTitle}.
My recommendation is: {$recommendation}.
Please visit the submission\'s editorial workflow to act on this recommendation.
Please feel free to contact me with any questions.
Kind regards,
{$senderName}
'),(61,'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS','en','Notify Other Authors','An update regarding your submission','The following email was sent to {$submittingAuthorName} from {$journalName} regarding {$submissionTitle}.
\nYou 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.
\n\n{$messageToSubmittingAuthor}'),(63,'EDITOR_DECISION_NOTIFY_REVIEWERS','en','Notify Reviewers of Decision','Thank you for your review','Dear {$recipientName},
\nThank 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.
\nBased on the feedback we received, we have notified the authors of the following:
\n{$decisionDescription}
\nYour 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.
\nIt 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.
\nKind regards,
\n{$signature}
'),(65,'EDITOR_DECISION_NEW_ROUND','en','New Review Round Initiated','Your submission has been sent for another round of review','Dear {$recipientName},
\nYour 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.
\nIf you have any questions, please contact me from your submission dashboard.
\nKind regards,
\n{$signature}
\n'),(67,'EDITOR_DECISION_REVERT_DECLINE','en','Reinstate Declined Submission','We have reversed the decision to decline your submission','Dear {$recipientName},
\nThe 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.
\nOccasionally, 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.
\nWe will contact you if we need any further assistance.
\nIf you have any questions, please contact me from your submission dashboard.
\nKind regards,
\n{$signature}
\n'),(69,'EDITOR_DECISION_REVERT_INITIAL_DECLINE','en','Reinstate Submission Declined Without Review','We have reversed the decision to decline your submission','Dear {$recipientName},
\nThe 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.
\nOccasionally, 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.
\nWe will contact you if we need any further assistance.
\nIf you have any questions, please contact me from your submission dashboard.
\nKind regards,
\n{$signature}
\n'),(71,'EDITOR_DECISION_SKIP_REVIEW','en','Submission Accepted (Without Review)','Your submission has been sent for copyediting','Dear {$recipientName},
\nI 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.
\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.\nYour submission will now undergo copy editing and formatting to prepare it for publication.
\nYou will shortly receive further instructions.
\nIf you have any questions, please contact me from your submission dashboard.
\nKind regards,
\n{$signature}
\n'),(73,'EDITOR_DECISION_BACK_FROM_PRODUCTION','en','Submission Sent Back to Copyediting','Your submission has been sent back to copyediting','Dear {$recipientName},
Your submission, {$submissionTitle}, has been sent back to the copyediting stage, where it will undergo further copyediting and formatting to prepare it for publication.
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.
If you have any questions, please contact me from your submission dashboard.
We will contact you if we need any further assistance.
Kind regards,
{$signature}
'),(75,'EDITOR_DECISION_BACK_FROM_COPYEDITING','en','Submission Sent Back from Copyediting','Your submission has been sent back to review','Dear {$recipientName},
Your submission, {$submissionTitle}, has been sent back to the review stage. It will undergo further review before it can be accepted for publication.
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.
We will contact you if we need any further assistance.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
{$signature}
'),(77,'EDITOR_DECISION_CANCEL_REVIEW_ROUND','en','Review Round Cancelled','A review round for your submission has been cancelled','Dear {$recipientName},
We recently opened a new review round for your submission, {$submissionTitle}. We are closing this review round now.
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.
We will contact you if we need any further assistance.
If you have any questions, please contact me from your submission dashboard.
Kind regards,
{$signature}
'),(79,'SUBSCRIPTION_NOTIFY','en','Subscription Notify','Subscription Notification','{$recipientName}:Dear {$recipientName},
We are pleased to inform you that {$issueIdentification} of {$journalName} is now available under open access. A subscription is no longer required to read this issue.
Thank you for your continuing interest in our work.
{$journalSignature}'),(83,'SUBSCRIPTION_BEFORE_EXPIRY','en','Subscription Expires Soon','Notice of Subscription Expiry','{$recipientName}:Dear {$recipientName},
The author has uploaded revisions for the submission, {$authorsShort} — {$submissionTitle}.
As an assigned editor, we ask that you login and view the revisions and make a decision to accept, decline or send the submission for further review.
Dear {$recipientName},
A new submission is ready to be copyedited:
{$submissionId} — {$submissionTitle}
{$journalName}
Please follow these steps to complete this task:
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}.
Kind regards,
{$signature}'),(113,'EDITOR_ASSIGN_SUBMISSION','en','Assign Editor','You have been assigned as an editor on a submission to {$journalName}','Dear {$recipientName},
The following submission has been assigned to you to see through the editorial process.
{$submissionTitle}
{$authors}
Abstract
{$submissionAbstract}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\".
If the submission is not appropriate for this journal, please decline the submission.
Thank you in advance.
Kind regards,
{$journalSignature}'),(115,'EDITOR_ASSIGN_REVIEW','en','Assign Editor','You have been assigned as an editor on a submission to {$journalName}','Dear {$recipientName},
The following submission has been assigned to you to see through the peer review process.
{$submissionTitle}
{$authors}
Abstract
{$submissionAbstract}Please login to view the submission and assign qualified reviewers. You can assign a reviewer by clicking \"Add Reviewer\".
Thank you in advance.
Kind regards,
{$signature}'),(117,'EDITOR_ASSIGN_PRODUCTION','en','Assign Editor','You have been assigned as an editor on a submission to {$journalName}','Dear {$recipientName},
The following submission has been assigned to you to see through the production stage.
{$submissionTitle}
{$authors}
Abstract
{$submissionAbstract}Please login to view the submission. Once production-ready files are available, upload them under the Publication > Galleys section. Then schedule the work for publication by clicking the Schedule for Publication button.
Thank you in advance.
Kind regards,
{$signature}'),(119,'LAYOUT_REQUEST','en','Ready for Production','Submission {$submissionId} is ready for production at {$contextAcronym}','Dear {$recipientName},
A new submission is ready for layout editing:
{$submissionId} — {$submissionTitle}
{$journalName}
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.
Kind regards,
{$signature}'),(121,'LAYOUT_COMPLETE','en','Galleys Complete','Galleys Complete','Dear {$recipientName},
Galleys have now been prepared for the following submission and are ready for final review.
{$submissionTitle}
{$journalName}
If you have any questions, please contact me.
Kind regards,
{$signature}
'),(123,'VERSION_CREATED','en','Version Created','A new version was created for {$submissionTitle}','Dear {$recipientName},
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:
This is an automatic email sent from {$journalName}.
'),(125,'EDITORIAL_REMINDER','en','Editorial Reminder','Outstanding editorial tasks for {$journalName}','Dear {$recipientName},
You are currently assigned to {$numberOfSubmissions} submissions in {$journalName}. The following submissions are waiting for your response.
{$outstandingTasks}View all of your assignments in your submission dashboard.
If you have any questions about your assignments, please contact {$contactName} at {$contactEmail}.
'),(127,'SUBMISSION_SAVED_FOR_LATER','en','Submission Saved for Later','Resume your submission to {$journalName}','Dear {$recipientName},
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.
{$authorsShort} — {$submissionTitle}
This is an automated email from {$journalName}.
'),(129,'SUBMISSION_NEEDS_EDITOR','en','Submission Needs Editor','A new submission needs an editor to be assigned: {$submissionTitle}','Dear {$recipientName},
The following submission has been submitted and there is no editor assigned.
{$submissionTitle}
{$authors}
Abstract
{$submissionAbstract}Please assign an editor who will be responsible for the submission by clicking the title above and assigning an editor under the Participants section.
This is an automated email from {$journalName}.
'),(131,'PAYMENT_REQUEST_NOTIFICATION','en','Payment Request','Payment Request Notification','Dear {$recipientName},
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.
This fee covers the production costs of bringing your submission to publication. To make the payment, please visit {$queuedPaymentUrl}.
If you have any questions, please see our Submission Guidelines
'),(133,'ORCID_COLLECT_AUTHOR_ID','en','orcidCollectAuthorId','Submission ORCID','Dear {$recipientName},Bonjour {$recipientName},
Compte tenu de votre expertise, nous avons pris l\'initiative d\'inscrire votre nom dans la base de données des évaluateurs-trices de la revue {$journalName}. Cela ne vous engage d\'aucune façon, mais nous permet simplement de solliciter vos services pour l\'évaluation d\'une soumission. Si vous êtes invité-e à effectuer une évaluation, vous recevrez le titre et le résumé de l\'article en question, et serez toujours libre d\'accepter ou de refuser une telle invitation. À tout moment, il vous est également possible de demander à ce que votre nom soit retiré de la liste des évaluateurs-trices.
\nNous vous acheminons un nom d\'utilisateur-trice et un mot de passe, car tous deux sont requis pour tout échange avec la revue via son site Web. Vous pouvez, par exemple, si vous le souhaitez, effectuer la mise à jour de votre profil, y compris vos domaines d\'intérêt en matière d\'évaluation.
\nNom d\'utilisateur-trice : {$recipientUsername}
\nMot de passe : {$password}
Merci,
{$signature}'),(144,'ISSUE_PUBLISH_NOTIFY','fr_CA','Notification de numéro paru','Parution du dernier numéro : {$issueIdentification} de la revue {$journalName}','Chers-ères lecteurs-trices,
La revue {$journalName} a le plaisir de vous annoncer la publication de son dernier numéro : {$issueIdentification}. Nous vous invitons à consulter le sommaire, puis à visiter notre site Web pour y lire les articles qui vous intéressent. Nous remercions vivement nos auteurs-trices, réviseurs-es et rédacteurs-trices pour leurs précieuses contributions à cet ouvrage, ainsi que nos lecteurs-trices pour leur intérêt constant.
Cordialement,
{$signature}'),(145,'SUBMISSION_ACK','fr_CA','Confirmation de soumission','Accusé de réception de la soumission','{$recipientName},Bonjour,
Le manuscrit intitulé , « {$submissionTitle} » , a été soumis par {$submitterName} à la revue {$journalName}.
Si vous avez des questions, n\'hésitez pas à communiquer avec nous. Nous vous remercions d\'avoir pensé à la revue {$journalName} pour la publication de vos travaux.
Cordialement,
{$journalSignature}'),(147,'EDITOR_ASSIGN','fr_CA','Rédacteur-trice assigné','Vous avez été assigné.e en tant que rédacteur.trice d\'une soumission de la revue {$journalName}','{$recipientName},
La soumission suivante vous a été assignée pour le suivi du processus éditorial.
{$submissionTitle}
{$authors}
Résumé
{$submissionAbstract}Si vous jugez la soumission pertinente pour la revue {$journalName}, veuillez la transmettre à l\'étape d\'évaluation en sélectionnant \"Envoyer en évaluation\" et en désignant des évaluateur.trice.s en cliquant sur « Ajouter un.e évaluateur.trice ».
Si la soumission n\'est pas appropriée pour cette revue, veuillez la décliner.
Je vous remercie d\'avance.
Cordialement,
{$journalSignature}'),(148,'REVIEW_CANCEL','fr_CA','Évaluateur.trice non assigné.e','Annulation de la demande d\'évaluation','Bonjour {$recipientName},
Nous avons décidé d\'annuler notre demande concernant l\'évaluation du manuscrit intitulé « {$submissionTitle} » pour la revue {$journalName}. Nous sommes désolés des inconvénients que cela pourrait vous causer et espérons que nous pourrons de nouveau faire appel à vous pour contribuer au processus de révision par les pairs de cette revue dans le futur.
Si vous avez des questions, n\'hésitez pas à communiquer avec nous.
{$signature}'),(149,'REVIEW_REINSTATE','fr_CA','Évaluateur.trice réintégré.e','Êtes-vous encore en mesure d\'évaluer des travaux pour la revue {$journalName} ?','{$recipientName},
Nous avons récemment annulé notre demande vous demandant d\'évaluer la soumission, {$submissionTitle}, pour la revue {$journalName}. Nous sommes revenus sur cette décision et nous espérons que vous êtes toujours en mesure d\'effectuer l\'évaluation.
Si vous êtes en mesure d\'aider au processus d\'évaluation de cette revue, vous pouvez vous connecter au site de la revue pour voir la soumission, téléverser les fichiers d\'évaluation ainsi que soumettre votre évaluation.
Si vous avez des questions, n\'hésitez pas à communiquer avec moi,
Cordialement,
{$signature}'),(150,'REVIEW_RESEND_REQUEST','fr_CA','Envoyer de nouveau la demande d\'évaluation à l\'évaluateur-trice','',''),(151,'REVIEW_REQUEST','fr_CA','Demande d\'évaluation','Demande d\'évaluation d\'un article','Bonjour {$recipientName},
Nous croyons que vous feriez un-e excellent-e évaluateur-trice pour le manuscrit intitulé « {$submissionTitle} » qui a été soumis à la revue {$journalName}. Vous trouverez un résumé de la soumission ci-dessous. Nous espérons que vous accepterez ce travail essentiel à la publication de la revue.
Veuillez accéder au site Web de la revue avant le {$responseDueDate} pour nous laisser savoir si vous acceptez de faire l\'évaluation ou non.
« {$submissionTitle} »
{$submissionAbstract}
La date d\'échéance de l\'évaluation a été fixée au {$reviewDueDate}.
Si vous n\'avez pas de nom d\'utilisateur-trice et de mot de passe pour le site Web de la revue, cliquez sur le lien ci-dessous pour réinitialiser votre mot de passe (lequel vous sera envoyé par courriel avec votre nom d\'utilisateur-trice). {$passwordLostUrl}
URL de la soumission : {$reviewAssignmentUrl}
Nous vous remercions de l\'attention que vous porterez à notre demande.
{$signature}'),(152,'REVIEW_REQUEST_SUBSEQUENT','fr_CA','Demande d\'évaluation (nouveau cycle)','Demande d\'évaluation d\'un article révisé','{$recipientName},
Nous vous remercions d\'avoir effectué l\'évaluation du manuscrit intitulé {$submissionTitle}.
{$submissionAbstract}
Suivant les commentaire de l\'évaluation de la dernière version du manuscrit, l\'auteur-trice a soumis une version révisée de son document. Nous apprécierions que vous évaluiez cette nouvelle version dans le cadre d\'un second cycle d\'évaluation.
Si vous êtes en mesure d\'effectuer cette évaluation, veuillez vous authentifier sur la page de la revue avant le {$responseDueDate} pour y indiquer si vous participerez à cette évaluation ou non, ou encore pour accéder à la soumission et y enregistrer votre évaluation et vos recommandations. Le site Web est {$journalUrl}
\nL\'évaluation est due pour le {$reviewDueDate}.
Si vous n\'avez pas vos nom d\'utilisateur-trice et mot de passe pour le site de la revue, vous pouvez utiliser le lien suivant pour réinitialiser votre mot de passe (lequel vous sera envoyé par courriel avec votre nom d\'utilisateur-trice). {$passwordLostUrl}
URL de la soumission : {$reviewAssignmentUrl}
Nous vous remercions de l\'attention que vous porterez à notre demande.
{$signature}'),(153,'REVIEW_RESPONSE_OVERDUE_AUTO','fr_CA','Rappel automatique pour une invitation à évaluer','Seriez-vous en mesure d\'évaluer ce manuscrit pour nous ?','Bonjour {$recipientName},
Ceci est un petit rappel concernant notre demande d\'évaluation de « {$submissionTitle} » pour la revue {$journalName}. Puisque nous n\'avons pas reçu, comme nous l\'espérions, une réponse avant le {$responseDueDate}, ce courriel a été généré et envoyé automatiquement après l\'échéance du délai.
Nous pensons que vous seriez un-e excellent-e évaluateur-trice pour le manuscrit. Vous trouverez un résumé de la soumission ci-dessous. Nous espérons que vous envisagerez d\'entreprendre cette tâche essentielle à la publication de la revue.
\nVeuillez vous authentifier sur la page de la revue pour y indiquer si vous participerez à cette évaluation ou non, ou encore pour accéder à la soumission et y enregistrer votre évaluation et vos recommandations. Le site Web est {$journalUrl}
L\'évaluation est dû pour le {$reviewDueDate}.
Si vous n\'avez pas vos nom d\'utilisateur-trice et mot de passe pour le site de la revue, vous pouvez utiliser le lien suivant pour réinitialiser votre mot de passe (lequel vous sera envoyé par courriel avec votre nom d\'utilisateur-trice). {$passwordLostUrl}
URL de la soumission : {$reviewAssignmentUrl}
Nous vous remercions de l\'attention que vous porterez à notre demande.
« {$submissionTitle} »
{$submissionAbstract}
{$journalSignature}'),(154,'REVIEW_CONFIRM','fr_CA','Évaluation confirmée','Acceptation d\'évaluation','Rédacteurs-trices,Bonjour {$recipientName},
Ceci est un petit rappel concernant notre demande d\'évaluation de la soumission « {$submissionTitle} » pour la revue {$journalName}. Nous espérions recevoir votre évaluation avant le {$reviewDueDate}. Nous serions heureux de la recevoir dès que possible.
Vous pouvez vous connecter au site de la revue et suivre les étapes d\'évaluation afin de consulter le texte, soumettre votre fichier d\'évaluation ainsi que vos commentaires.
Si vous avez besoin de plus de temps, contactez moi. Je vous remercie.
\nCordialement
{$signature}'),(158,'REVIEW_REMIND_AUTO','fr_CA','Rappel automatique d\'évaluation','Un rappel automatique pour vous demander de bien vouloir terminer votre évaluation','{$recipientName},
Ceci est un rappel automatisé concernant notre demande d\'évaluation de la soumission « {$submissionTitle} » pour la revue {$journalName}. Puisque nous n\'avons pas reçu, comme nous l\'espérions, votre évaluation avant le {$reviewDueDate}, ce courriel a été généré et envoyé automatiquement après l\'échéance du délai. Nous serions toutefois heureux de recevoir votre évaluation dès que possible.
S\'il vous plait, connectez-vous à la revue et suivez les étapes d\'évaluation afin de consulter le texte et soumettre votre fichier d\'évaluation ainsi que vos commentaires.
Si vous avez besoin d\'un délai supplémentaire, n\'hésitez pas à me contacter.
Je vous remercie.
Cordialement,
Bonjour {$authors},
Nous avons pris une décision concernant votre soumission « {$submissionTitle} » à la revue {$journalName}.
Notre décision est d\'accepter votre soumission.
Cordialement,
{$signature}'),(162,'EDITOR_DECISION_SEND_TO_EXTERNAL','fr_CA','Envoyé à l\'évaluation','Décision du rédacteur','{$authors},{$recipientName},
\nNous avons le plaisir de vous informer que nous avons décidé d\'accepter votre soumission sans processus d\'évaluation par les pairs. Nous trouvons que votre soumission, {$submissionTitle}, répond à nos exigences et ne requerrons pas une évaluation par les pairs. Nous sommes enthousiastes à l\'idée de publier votre texte dans la revue {$journalName} et voulons vous remercier d\'avoir choisi notre revue pour diffuser vos travaux.
\nVotre texte sera publié dans un prochain numéro de la revue {$journalName} et vous pouvez l\'inclure dès à présent dans votre liste de publications. Nous reconnaissons les efforts nécessaire à toute publication et vous en félicitons. \nVotre texte va faire l\'objet d\'une révision linguistique et être mise en page avant publication.
\nVous recevrez des instructions sous peu.
\nSi vous avez des questions, n\'hésitez pas à me contacter à partir de votre tableau de bord de soumission.
\nCordialement,
\n{$signature}
\n'),(175,'EDITOR_DECISION_BACK_FROM_PRODUCTION','fr_CA','Soumission renvoyée à la révision','',''),(176,'EDITOR_DECISION_BACK_FROM_COPYEDITING','fr_CA','Soumission renvoyée de l\'étape de révision','',''),(177,'EDITOR_DECISION_CANCEL_REVIEW_ROUND','fr_CA','Cycle d\'évaluation annulé','',''),(178,'SUBSCRIPTION_NOTIFY','fr_CA','Notification d\'abonnement','Avis d\'abonnement','{$recipientName},Chers lecteurs et lectrices,
La revue {$journalName} vient de rendre disponible en libre accès le numéro suivant. Nous vous invitons à lire ici le sommaire puis visiter notre site Web ({$journalUrl}) pour lire les articles et autres textes qui pourraient vous intéresser.
Merci de votre intérêt continu pour notre travail.
{$journalSignature}'),(180,'SUBSCRIPTION_BEFORE_EXPIRY','fr_CA','L\'abonnement arrive bientôt à échéance','Avis d\'expiration de l\'abonnement','{$recipientName},Bonjour {$recipientName},
Votre abonnement à la revue {$journalName} est expiré. Veuillez prendre note que ceci est le dernier rappel qui vous sera envoyé.
{$subscriptionType}
\nDate d\'expiration : {$expiryDate}
Pour renouveler votre abonnement, veuillez vous rendre sur le site Web de la revue. Vous pouvez y ouvrir une session avec votre nom d\'utilisateur-trice, soit « {$recipientUsername} ».
Si vous avez des questions, ne hésitez pas à communiquer avec nous.
{$subscriptionSignature}'),(183,'SUBSCRIPTION_PURCHASE_INDL','fr_CA','Acheter un abonnement individuel','Souscription à un abonnement individuel','Une souscription en ligne à un abonnement individuel pour la revue {$journalName} avec les renseignements suivants :Bonjour {$recipientName},
Une version révisée de « {$submissionTitle} » a été téléversée par l\'auteur-e {$submitterName}.
URL de la soumission : {$submissionUrl}
.Ceci est un message automatique de {$journalName}.
'),(188,'STATISTICS_REPORT_NOTIFICATION','fr_CA','Notification sur les rapports statistiques','Activité éditoriale pour {$month} {$year}','\n{$recipientName},{$recipientName},
La soumission suivante vous a été assignée pour le suivi du processus éditorial.
{$submissionTitle}
{$authors}
Résumé
{$submissionAbstract}Si vous jugez la soumission pertinente pour la revue {$journalName}, veuillez la transmettre à l\'étape d\'évaluation en sélectionnant \"Envoyer en évaluation\" et en désignant des évaluateur.trice.s en cliquant sur « Ajouter un.e évaluateur.trice ».
Si la soumission n\'est pas appropriée pour cette revue, veuillez la décliner.
Je vous remercie d\'avance.
Cordialement,
{$journalSignature}'),(196,'EDITOR_ASSIGN_REVIEW','fr_CA','Assigner un-e rédacteur-trice','Vous avez été assigné.e en tant que rédacteur.trice d\'une soumission de la revue {$journalName}','{$recipientName},
La soumission suivante vous a été assignée pour le processus d\'évaluation par les pairs.
{$submissionTitle}
{$authors}
Résumé
{$submissionAbstract}Veuillez vous connecter pour voir la soumission et désigner des évaluateur.trice.s qualifié.es. Vous pouvez désigner un.e évaluateur.trice en cliquant sur « Ajouter un.e évaluateur.trice ».
Je vous remercie d\'avance.
Cordialement,
{$signature}'),(197,'EDITOR_ASSIGN_PRODUCTION','fr_CA','Assigner un-e rédacteur-trice','Vous avez été assigné.e en tant que rédacteur.trice d\'une soumission de la revue {$journalName}','{$recipientName},
La soumission suivante vous a été assignée pour suivre le processus de production.
{$submissionTitle}
{$authors}
Résumé
{$submissionAbstract}Veuillez vous connecter pour afficher la soumission. Une fois les fichiers prêts pour la production disponibles, les téléverser sous la section Publication > Épreuves. Ensuite, planifier la publication en cliquant sur le bouton Planifier la publication.
Merci d\'avance.
Cordialement,
{$signature}'),(198,'LAYOUT_REQUEST','fr_CA','Prêt pour production','La soumission {$submissionId} est prête pour production à la revue {$contextAcronym}','Bonjour {$recipientName},
J\'aimerais que vous prépariez les épreuves du manuscrit intitulé « {$submissionTitle} » pour la revue {$journalName} à l\'aide des étapes suivantes.
\nURL de la revue {$journalName} : {$journalUrl}
URL du manuscrit : {$submissionUrl}
Nom d\'utilisateur-trice : {$recipientUsername}
Si vous ne pouvez pas effectuer ce travail pour le moment ou si vous avez des questions, veuillez communiquer avec moi. Je vous remercie de votre collaboration.
{$signature}'),(199,'LAYOUT_COMPLETE','fr_CA','Épreuves complétées','Mise en page des épreuves terminée','Bonjour {$recipientName},
Les épreuves du manuscrit intitulé « {$submissionTitle} » pour la revue {$journalName} sont maintenant prêtes pour la relecture.
Si vous avez des questions, n\'hésitez pas à communiquer avec moi.
{$signature}
'),(200,'VERSION_CREATED','fr_CA','Version créée','',''),(201,'EDITORIAL_REMINDER','fr_CA','Rappel éditorial','',''),(202,'SUBMISSION_SAVED_FOR_LATER','fr_CA','Soumission incomplète sauvegardée','',''),(203,'SUBMISSION_NEEDS_EDITOR','fr_CA','Soumission en attente de rédacteur-trice','',''),(204,'PAYMENT_REQUEST_NOTIFICATION','fr_CA','Demande de paiement','Avis de demande de paiement','Bonjour {$recipientName},
Félicitations pour l\'acceptation de votre texte, {$submissionTitle}, dans {$journalName}. Maintenant que votre texte a été accepté, il est nécessaire de payer les frais de publication afin de compléter le processus.
Ces frais couvrent les coûts de production permettant d\'assurer la publication de votre texte. Pour effectuer le paiement, rendez-vous sur {$queuedPaymentUrl}.
Si vous avez des questions, référez-vous à nos directives de soumissions.
'),(205,'ORCID_COLLECT_AUTHOR_ID','fr_CA','orcidCollectAuthorId','Soumission ORCID','{$recipientName},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.
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.
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.
'),(4,1,'fr_CA','authorGuidelines','Les auteur.e.s sont invité.e.s à soumettre un article à cette revue. Toutes les soumissions seront évaluées par un.e rédacteur.trice afin de déterminer si elles correspondent aux objectifs et au champ d\'application de cette revue. Ceux considérés comme étant appropriés seront envoyés à des pairs pour examen avant de décider s\'ils seront acceptés ou rejetés.
Avant de soumettre leur article, les auteur.e.s sont responsables d\'obtenir l\'autorisation de publier tout matériel inclus dans la soumission, tels que des photos, des documents et des ensembles de données. Tous les auteur.e.s identifié.e.s dans la soumission doivent consentir à être identifié.e.s comme auteur.e.s. Lorsque cela est approprié, la recherche doit être approuvée par un comité d\'éthique approprié conformément aux exigences légales du pays de l\'étude.
Un.e rédacteur.trice peut rejeter une soumission sans examen approfondi s\'il ne répond pas aux normes minimales de qualité. Avant de soumettre votre article, veuillez vous assurer que la conception de l\'étude et l\'argument de recherche sont structurés et articulés correctement. Le titre doit être concis et le résumé doit pouvoir être compris indépendamment du reste du texte. Cela augmentera la probabilité que les évaluateur.trice.s acceptent d\'examiner l\'article. Lorsque vous êtes confiant.e que votre article répond à ces exigences, vous pouvez suivre la liste de contrôle ci-dessous pour préparer votre soumission.
'),(5,1,'en','authorInformation','Interested in submitting to this journal? We recommend that you review the About the Journal page for the journal\'s section policies, as well as the Author Guidelines. Authors need to register with the journal prior to submitting or, if already registered, can simply log in and begin the five-step process.'),(6,1,'fr_CA','authorInformation','Intéressé-e à soumettre à cette revue ? Nous vous recommandons de consulter les politiques de rubrique de la revue à la page À propos de la revue ainsi que les Directives aux auteurs. Les auteurs-es doivent s\'inscrire auprès de la revue avant de présenter une soumission, ou s\'ils et elles sont déjà inscrits-es, simplement ouvrir une session et accéder au tableau de bord pour commencer les 5 étapes du processus.'),(7,1,'en','beginSubmissionHelp','Thank you for submitting to the Journal of Public Knowledge. You will be asked to upload files, identify co-authors, and provide information such as the title and abstract.
Please read our Submission Guidelines 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.
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.
'),(8,1,'fr_CA','beginSubmissionHelp','Merci de votre soumission à la revue Journal of Public Knowledge. Il vous sera demandé de téléverser des fichiers, identifier des co-auteur.trice.s et fournir des informations comme le titre et le résumé.
Si vous ne l\'avez pas encore fait, merci de consulter nos Recommandations pour la soumission. Lorsque vous remplissez les formulaires, merci de fournir autant de détails que possible pour aider nos éditeur.trice.s à évaluer votre travail.
Une fois que vous avez commencé, vous pouvez enregistrer votre soumission et y revenir plus tard. Vous pourrez alors réviser et modifier toutes les informations voulues avant de soumettre le tout.
'),(9,1,'','contactEmail','rvaca@mailinator.com'),(10,1,'','contactName','Ramiro Vaca'),(11,1,'en','contributorsHelp','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.
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.
'),(12,1,'fr_CA','contributorsHelp','Ajouter des informations relatives à tous les contributeurs.trices à cette soumission. Les contributeurs.trices ajouté.e.s ici se verront envoyer un courriel de confirmation de la soumission ainsi qu\'une copie de toutes les décisions éditoriales enregistrées pour cette soumission.
Si un.e contributeur.trice ne peut être contacté.e par courriel parce qu\'il ou elle doit demeurer anonyme ou n\'a pas de compte de messagerie, veuillez ne pas entrer de courriel fictif. Vous pouvez ajouter des informations sur ce ou cette contributeur.trice à une étape ultérieure du processus de soumission.
'),(13,1,'','country','IS'),(14,1,'','defaultReviewMode','2'),(15,1,'en','description','The Journal of Public Knowledge is a peer-reviewed quarterly publication on the subject of public access to science.
'),(16,1,'fr_CA','description','Le Journal de Public Knowledge est une publication trimestrielle évaluée par les pairs sur le thème de l\'accès du public à la science.
'),(17,1,'en','detailsHelp','Please provide the following details to help us manage your submission in our system.
'),(18,1,'fr_CA','detailsHelp','Veuillez fournir les informations suivantes afin de nous aider à gérer votre soumission dans notre système.
'),(19,1,'','copySubmissionAckPrimaryContact','0'),(20,1,'','copySubmissionAckAddress',''),(21,1,'','emailSignature','This is an automated message from Journal of Public Knowledge.
'),(22,1,'','enableDois','1'),(23,1,'','doiSuffixType','default'),(24,1,'','registrationAgency',''),(25,1,'','disableSubmissions','0'),(26,1,'','editorialStatsEmail','1'),(27,1,'en','forTheEditorsHelp','Please provide the following details in order to help our editorial team manage your submission.
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.
'),(28,1,'fr_CA','forTheEditorsHelp','S\'il vous plaît, fournissez les détails suivants afin d\'aider l\'équipe éditoriale à gérer votre soumission.
Dans vos métadonnées, assurez vous de fournir des informations que vous pensez pouvoir être utile à la personne qui gérera votre soumission. Cette information peut être changée avant publication.
'),(29,1,'','itemsPerPage','25'),(30,1,'','keywords','request'),(31,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 Open Journal Systems).'),(32,1,'fr_CA','librarianInformation','Nous incitons les bibliothécaires à lister cette revue dans leur fonds de revues numériques. Aussi, il peut être pertinent de mentionner que ce système de publication en libre accès est conçu pour être hébergé par les bibliothèques de recherche pour que les membres de leurs facultés l\'utilisent avec les revues dans lesquelles elles ou ils sont impliqués (voir Open Journal Systems).'),(33,1,'en','name','Journal of Public Knowledge'),(34,1,'fr_CA','name','Journal de la connaissance du public'),(35,1,'','notifyAllAuthors','1'),(36,1,'','numPageLinks','10'),(37,1,'','numWeeksPerResponse','4'),(38,1,'','numWeeksPerReview','4'),(39,1,'','numReviewersPerSubmission','0'),(40,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.'),(41,1,'fr_CA','openAccessPolicy','Cette revue fournit le libre accès immédiat à son contenu se basant sur le principe que rendre la recherche disponible au public gratuitement facilite un plus grand échange du savoir, à l\'échelle de la planète.'),(42,1,'en','privacyStatement','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.
'),(43,1,'fr_CA','privacyStatement','Les noms et courriels saisis dans le site de cette revue seront utilisés exclusivement aux fins indiquées par cette revue et ne serviront à aucune autre fin, ni à toute autre partie.
'),(44,1,'en','readerInformation','We encourage readers to sign up for the publishing notification service for this journal. Use the Register 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 Privacy Statement, which assures readers that their name and email address will not be used for other purposes.'),(45,1,'fr_CA','readerInformation','Nous invitons les lecteurs-trices à s\'inscrire pour recevoir les avis de publication de cette revue. Utiliser le lien S\'inscrire en haut de la page d\'accueil de la revue. Cette inscription permettra au,à la lecteur-trice de recevoir par courriel le sommaire de chaque nouveau numéro de la revue. Cette liste permet aussi à la revue de revendiquer un certain niveau de soutien ou de lectorat. Voir la Déclaration de confidentialité de la revue qui certifie aux lecteurs-trices que leur nom et leur courriel ne seront pas utilisés à d\'autres fins.'),(46,1,'en','reviewHelp','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.
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.
'),(47,1,'fr_CA','reviewHelp','Révisez l\'information que vous avez fourni avant de finaliser votre soumission. Vous pouvez modifier chaque détails affichés en cliquant sur le bouton d\'édition en haut de chaque section.
Une fois votre soumission transmise, un membre de l\'équipe éditoriale lui sera assigné afin de l\'évaluer. S\'il vous plaît, assurez vous que les détails fournis sont le plus exactes possibles.
'),(48,1,'','submissionAcknowledgement','allAuthors'),(49,1,'en','submissionChecklist','All submissions must meet the following requirements.
Toutes les soumissions doivent répondre aux exigences suivantes :
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.
'),(57,1,'fr_CA','uploadFilesHelp','Fournir tous les fichiers dont notre équipe éditoriale pourrait avoir besoin pour évaluer votre soumission. En plus du fichier principal, vous pouvez soumettre des ensembles de données, une déclaration relative au conflit d\'intérêt ou tout autre fichier potentiellement utile pour nos éditeur.trice.s.
'),(58,1,'','enableGeoUsageStats','disabled'),(59,1,'','enableInstitutionUsageStats','0'),(60,1,'','isSushiApiPublic','1'),(63,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. More...'),(64,1,'fr_CA','clockssLicense','Cette revue utilise le système CLOCKSS pour créer un système d\'archivage distribué parmi les bibliothèques participantes et permet à ces bibliothèques de créer des archives permanentes de la revue à des fins de conservation et de reconstitution. En apprendre davantage... '),(65,1,'','copyrightYearBasis','issue'),(66,1,'','enabledDoiTypes','[\"publication\"]'),(67,1,'','doiCreationTime','copyEditCreationTime'),(68,1,'','enableOai','1'),(69,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. More...'),(70,1,'fr_CA','lockssLicense','Cette revue utilise le système LOCKSS pour créer un système de distribution des archives parmi les bibliothèques participantes et afin de permettre à ces bibliothèques de créer des archives permanentes pour fins de préservation et de restauration. En apprendre davantage...'),(71,1,'','membershipFee','0'),(72,1,'','publicationFee','0'),(73,1,'','purchaseArticleFee','0'),(74,1,'','doiVersioning','0'),(75,1,'en','customHeaders',''),(76,1,'en','searchDescription','The Journal of Public Knowledge is a peer-reviewed quarterly publication on the subject of public access to science.'),(77,1,'en','abbreviation','publicknowledgeJ Pub Know'),(78,1,'','onlineIssn','0378-5955'),(79,1,'','printIssn','0378-5955'),(80,1,'','publisherInstitution','Public Knowledge Project'),(81,1,'','mailingAddress','123 456th Street\nBurnaby, British Columbia\nCanada'),(82,1,'','supportEmail','rvaca@mailinator.com'),(83,1,'','supportName','Ramiro Vaca'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `journals` ( `journal_id` bigint 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 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 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=utf8mb3 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,'publicknowledge',1.00,'en',1,1); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `library_file_settings` ( `library_file_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `file_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `library_files` ( `file_id` bigint NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `file_name` varchar(255) NOT NULL, `original_file_name` varchar(255) NOT NULL, `file_type` varchar(255) NOT NULL, `file_size` bigint NOT NULL, `type` smallint NOT NULL, `date_uploaded` datetime NOT NULL, `date_modified` datetime NOT NULL, `submission_id` bigint DEFAULT NULL, `public_access` smallint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_context` ( `metrics_context_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint NOT NULL, `date` date NOT NULL, `metric` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_counter_submission_daily` ( `metrics_counter_submission_daily_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `date` date NOT NULL, `metric_investigations` int NOT NULL, `metric_investigations_unique` int NOT NULL, `metric_requests` int NOT NULL, `metric_requests_unique` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_counter_submission_institution_daily` ( `metrics_counter_submission_institution_daily_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `institution_id` bigint NOT NULL, `date` date NOT NULL, `metric_investigations` int NOT NULL, `metric_investigations_unique` int NOT NULL, `metric_requests` int NOT NULL, `metric_requests_unique` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_counter_submission_institution_monthly` ( `metrics_counter_submission_institution_monthly_id` bigint unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `institution_id` bigint NOT NULL, `month` int NOT NULL, `metric_investigations` int NOT NULL, `metric_investigations_unique` int NOT NULL, `metric_requests` int NOT NULL, `metric_requests_unique` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_counter_submission_monthly` ( `metrics_counter_submission_monthly_id` bigint unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `month` int NOT NULL, `metric_investigations` int NOT NULL, `metric_investigations_unique` int NOT NULL, `metric_requests` int NOT NULL, `metric_requests_unique` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_issue` ( `metrics_issue_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint NOT NULL, `issue_id` bigint NOT NULL, `issue_galley_id` bigint DEFAULT NULL, `date` date NOT NULL, `metric` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_submission` ( `metrics_submission_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `representation_id` bigint DEFAULT NULL, `submission_file_id` bigint unsigned DEFAULT NULL, `file_type` bigint DEFAULT NULL, `assoc_type` bigint NOT NULL, `date` date NOT NULL, `metric` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_submission_geo_daily` ( `metrics_submission_geo_daily_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `context_id` bigint NOT NULL, `submission_id` bigint 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 NOT NULL, `metric_unique` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `metrics_submission_geo_monthly` ( `metrics_submission_geo_monthly_id` bigint unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `country` varchar(2) NOT NULL DEFAULT '', `region` varchar(3) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `month` int NOT NULL, `metric` int NOT NULL, `metric_unique` int 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `navigation_menu_item_assignment_settings` ( `navigation_menu_item_assignment_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `navigation_menu_item_assignment_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `navigation_menu_item_assignments` ( `navigation_menu_item_assignment_id` bigint NOT NULL AUTO_INCREMENT, `navigation_menu_id` bigint NOT NULL, `navigation_menu_item_id` bigint NOT NULL, `parent_id` bigint DEFAULT NULL, `seq` bigint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `navigation_menu_item_settings` ( `navigation_menu_item_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `navigation_menu_item_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` longtext, `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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `navigation_menu_items` ( `navigation_menu_item_id` bigint NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `path` varchar(255) DEFAULT '', `type` varchar(255) DEFAULT '', PRIMARY KEY (`navigation_menu_item_id`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `navigation_menus` ( `navigation_menu_id` bigint NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `area_name` varchar(255) DEFAULT '', `title` varchar(255) NOT NULL, PRIMARY KEY (`navigation_menu_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notes` ( `note_id` bigint NOT NULL AUTO_INCREMENT, `assoc_type` bigint NOT NULL, `assoc_id` bigint NOT NULL, `user_id` bigint NOT NULL, `date_created` datetime NOT NULL, `date_modified` datetime DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `contents` text, 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `notes` VALUES (1,1048586,1,6,'2024-02-01 07:25:25','2024-02-01 07:25:25','Editor Recommendation','Dear Daniel Barnes, David Buskins, Stephanie Berardo,
After considering the reviewers\' feedback, I would like to make the following recommendation regarding the submission The influence of lactation on the quantity and quality of cashmere production.
My recommendation is: Accept Submission.
Please visit the submission\'s editorial workflow to act on this recommendation.
Please feel free to contact me with any questions.
Kind regards,
Minoti Inoue
'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notification_settings` ( `notification_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `notification_id` bigint 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=51 DEFAULT CHARSET=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notification_subscription_settings` ( `setting_id` bigint NOT NULL AUTO_INCREMENT, `setting_name` varchar(64) NOT NULL, `setting_value` mediumtext NOT NULL, `user_id` bigint NOT NULL, `context` bigint NOT 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 AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `notification_subscription_settings` VALUES (1,'blocked_emailed_notification','8',17,1,'int'),(2,'blocked_emailed_notification','268435477',17,1,'int'),(3,'blocked_emailed_notification','50331659',17,1,'int'),(4,'blocked_emailed_notification','8',18,1,'int'),(5,'blocked_emailed_notification','268435477',18,1,'int'),(6,'blocked_emailed_notification','50331659',18,1,'int'),(7,'blocked_emailed_notification','8',19,1,'int'),(8,'blocked_emailed_notification','268435477',19,1,'int'),(9,'blocked_emailed_notification','50331659',19,1,'int'),(10,'blocked_emailed_notification','8',20,1,'int'),(11,'blocked_emailed_notification','268435477',20,1,'int'),(12,'blocked_emailed_notification','50331659',20,1,'int'),(13,'blocked_emailed_notification','8',21,1,'int'),(14,'blocked_emailed_notification','268435477',21,1,'int'),(15,'blocked_emailed_notification','50331659',21,1,'int'),(16,'blocked_emailed_notification','8',22,1,'int'),(17,'blocked_emailed_notification','268435477',22,1,'int'),(18,'blocked_emailed_notification','50331659',22,1,'int'),(19,'blocked_emailed_notification','8',23,1,'int'),(20,'blocked_emailed_notification','268435477',23,1,'int'),(21,'blocked_emailed_notification','50331659',23,1,'int'),(22,'blocked_emailed_notification','8',24,1,'int'),(23,'blocked_emailed_notification','268435477',24,1,'int'),(24,'blocked_emailed_notification','50331659',24,1,'int'),(25,'blocked_emailed_notification','8',25,1,'int'),(26,'blocked_emailed_notification','268435477',25,1,'int'),(27,'blocked_emailed_notification','50331659',25,1,'int'),(28,'blocked_emailed_notification','8',26,1,'int'),(29,'blocked_emailed_notification','268435477',26,1,'int'),(30,'blocked_emailed_notification','50331659',26,1,'int'),(31,'blocked_emailed_notification','8',27,1,'int'),(32,'blocked_emailed_notification','268435477',27,1,'int'),(33,'blocked_emailed_notification','50331659',27,1,'int'),(34,'blocked_emailed_notification','8',28,1,'int'),(35,'blocked_emailed_notification','268435477',28,1,'int'),(36,'blocked_emailed_notification','50331659',28,1,'int'),(37,'blocked_emailed_notification','8',29,1,'int'),(38,'blocked_emailed_notification','268435477',29,1,'int'),(39,'blocked_emailed_notification','50331659',29,1,'int'),(40,'blocked_emailed_notification','8',30,1,'int'),(41,'blocked_emailed_notification','268435477',30,1,'int'),(42,'blocked_emailed_notification','50331659',30,1,'int'),(43,'blocked_emailed_notification','8',31,1,'int'),(44,'blocked_emailed_notification','268435477',31,1,'int'),(45,'blocked_emailed_notification','50331659',31,1,'int'),(46,'blocked_emailed_notification','8',32,1,'int'),(47,'blocked_emailed_notification','268435477',32,1,'int'),(48,'blocked_emailed_notification','50331659',32,1,'int'),(49,'blocked_emailed_notification','8',33,1,'int'),(50,'blocked_emailed_notification','268435477',33,1,'int'),(51,'blocked_emailed_notification','50331659',33,1,'int'),(52,'blocked_emailed_notification','8',34,1,'int'),(53,'blocked_emailed_notification','268435477',34,1,'int'),(54,'blocked_emailed_notification','50331659',34,1,'int'),(55,'blocked_emailed_notification','8',35,1,'int'),(56,'blocked_emailed_notification','268435477',35,1,'int'),(57,'blocked_emailed_notification','50331659',35,1,'int'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notifications` ( `notification_id` bigint NOT NULL AUTO_INCREMENT, `context_id` bigint DEFAULT NULL, `user_id` bigint DEFAULT NULL, `level` bigint NOT NULL, `type` bigint NOT NULL, `date_created` datetime NOT NULL, `date_read` datetime DEFAULT NULL, `assoc_type` bigint DEFAULT NULL, `assoc_id` bigint 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=246 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `notifications` VALUES (6,1,3,2,16777217,'2024-02-01 07:19:03',NULL,1048585,1),(7,1,4,2,16777217,'2024-02-01 07:19:03',NULL,1048585,1),(8,1,5,2,16777217,'2024-02-01 07:19:03',NULL,1048585,1),(9,1,NULL,2,16777236,'2024-02-01 07:19:22','2024-02-01 07:19:27',523,1),(11,1,7,3,16777227,'2024-02-01 07:19:33',NULL,517,1),(13,1,9,3,16777227,'2024-02-01 07:19:40',NULL,517,2),(15,1,10,3,16777227,'2024-02-01 07:19:47',NULL,517,3),(22,1,17,2,16777235,'2024-02-01 07:20:06',NULL,1048585,1),(29,1,3,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(30,1,4,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(31,1,5,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(32,1,12,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(33,1,14,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(34,1,16,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(35,1,17,3,16777259,'2024-02-01 07:23:28',NULL,1048585,1),(38,1,3,2,16777217,'2024-02-01 07:24:49',NULL,1048585,2),(39,1,4,2,16777217,'2024-02-01 07:24:49',NULL,1048585,2),(40,1,5,2,16777217,'2024-02-01 07:24:49',NULL,1048585,2),(41,1,NULL,2,16777236,'2024-02-01 07:25:01','2024-02-01 07:25:05',523,2),(42,1,18,2,16777231,'2024-02-01 07:25:01',NULL,1048585,2),(44,1,3,3,16777249,'2024-02-01 07:25:25',NULL,1048586,1),(45,1,4,3,16777249,'2024-02-01 07:25:25',NULL,1048586,1),(46,1,5,3,16777249,'2024-02-01 07:25:25',NULL,1048586,1),(47,1,3,2,16777217,'2024-02-01 07:25:51',NULL,1048585,3),(48,1,4,2,16777217,'2024-02-01 07:25:51',NULL,1048585,3),(49,1,5,2,16777217,'2024-02-01 07:25:51',NULL,1048585,3),(50,1,NULL,2,16777236,'2024-02-01 07:26:03','2024-02-01 07:26:07',523,3),(52,1,9,3,16777227,'2024-02-01 07:26:13',NULL,517,4),(54,1,10,3,16777227,'2024-02-01 07:26:20',NULL,517,5),(56,1,19,2,16777230,'2024-02-01 07:26:24',NULL,1048585,3),(57,1,3,2,16777251,'2024-02-01 07:26:24','2024-02-01 07:26:28',1048585,3),(58,1,4,2,16777251,'2024-02-01 07:26:24',NULL,1048585,3),(59,1,5,2,16777251,'2024-02-01 07:26:24',NULL,1048585,3),(61,1,3,2,16777217,'2024-02-01 07:26:48',NULL,1048585,4),(62,1,4,2,16777217,'2024-02-01 07:26:48',NULL,1048585,4),(63,1,5,2,16777217,'2024-02-01 07:26:48',NULL,1048585,4),(64,1,3,2,16777217,'2024-02-01 07:27:03',NULL,1048585,5),(65,1,4,2,16777217,'2024-02-01 07:27:03',NULL,1048585,5),(66,1,5,2,16777217,'2024-02-01 07:27:03',NULL,1048585,5),(67,1,NULL,2,16777236,'2024-02-01 07:27:15','2024-02-01 07:27:19',523,4),(69,1,8,3,16777227,'2024-02-01 07:27:24',NULL,517,6),(71,1,10,3,16777227,'2024-02-01 07:27:31',NULL,517,7),(78,1,21,2,16777235,'2024-02-01 07:27:50',NULL,1048585,5),(79,1,3,2,16777254,'2024-02-01 07:27:50','2024-02-01 07:27:55',1048585,5),(80,1,4,2,16777254,'2024-02-01 07:27:50',NULL,1048585,5),(81,1,5,2,16777254,'2024-02-01 07:27:50',NULL,1048585,5),(84,1,3,2,16777217,'2024-02-01 07:28:19',NULL,1048585,6),(85,1,4,2,16777217,'2024-02-01 07:28:19',NULL,1048585,6),(86,1,5,2,16777217,'2024-02-01 07:28:19',NULL,1048585,6),(87,1,NULL,2,16777236,'2024-02-01 07:28:32','2024-02-01 07:28:36',523,5),(89,1,7,3,16777227,'2024-02-01 07:28:42',NULL,517,8),(91,1,10,3,16777227,'2024-02-01 07:28:49',NULL,517,9),(98,1,22,2,16777235,'2024-02-01 07:29:07',NULL,1048585,6),(99,1,3,2,16777254,'2024-02-01 07:29:07','2024-02-01 07:29:12',1048585,6),(100,1,4,2,16777254,'2024-02-01 07:29:07',NULL,1048585,6),(101,1,5,2,16777254,'2024-02-01 07:29:07',NULL,1048585,6),(103,1,3,2,16777217,'2024-02-01 07:29:32',NULL,1048585,7),(104,1,4,2,16777217,'2024-02-01 07:29:32',NULL,1048585,7),(105,1,5,2,16777217,'2024-02-01 07:29:32',NULL,1048585,7),(106,1,NULL,2,16777236,'2024-02-01 07:29:45','2024-02-01 07:29:49',523,6),(107,1,23,2,16777231,'2024-02-01 07:29:45',NULL,1048585,7),(110,1,9,3,16777227,'2024-02-01 07:30:01',NULL,517,11),(112,1,10,3,16777227,'2024-02-01 07:30:08',NULL,517,12),(114,1,3,2,16777219,'2024-02-01 07:30:20',NULL,517,10),(115,1,4,2,16777219,'2024-02-01 07:30:20',NULL,517,10),(116,1,5,2,16777219,'2024-02-01 07:30:20',NULL,517,10),(117,1,3,2,16777217,'2024-02-01 07:30:37',NULL,1048585,8),(118,1,4,2,16777217,'2024-02-01 07:30:37',NULL,1048585,8),(119,1,5,2,16777217,'2024-02-01 07:30:37',NULL,1048585,8),(120,1,3,2,16777217,'2024-02-01 07:30:52',NULL,1048585,9),(121,1,6,2,16777217,'2024-02-01 07:30:52',NULL,1048585,9),(122,1,NULL,2,16777236,'2024-02-01 07:31:05','2024-02-01 07:31:09',523,7),(124,1,7,3,16777227,'2024-02-01 07:31:15',NULL,517,13),(126,1,10,3,16777227,'2024-02-01 07:31:22',NULL,517,14),(132,1,25,2,16777235,'2024-02-01 07:31:40',NULL,1048585,9),(133,1,3,2,16777254,'2024-02-01 07:31:40','2024-02-01 07:31:45',1048585,9),(134,1,6,2,16777254,'2024-02-01 07:31:40',NULL,1048585,9),(137,1,3,2,16777217,'2024-02-01 07:32:10',NULL,1048585,10),(138,1,4,2,16777217,'2024-02-01 07:32:10',NULL,1048585,10),(139,1,5,2,16777217,'2024-02-01 07:32:10',NULL,1048585,10),(140,1,NULL,2,16777236,'2024-02-01 07:32:24','2024-02-01 07:32:28',523,8),(141,1,26,2,16777231,'2024-02-01 07:32:24',NULL,1048585,10),(146,1,3,2,16777219,'2024-02-01 07:32:51',NULL,517,15),(147,1,4,2,16777219,'2024-02-01 07:32:51',NULL,517,15),(148,1,5,2,16777219,'2024-02-01 07:32:51',NULL,517,15),(149,1,3,2,16777219,'2024-02-01 07:33:03',NULL,517,16),(150,1,4,2,16777219,'2024-02-01 07:33:03',NULL,517,16),(151,1,5,2,16777219,'2024-02-01 07:33:03',NULL,517,16),(152,1,3,2,16777217,'2024-02-01 07:33:19',NULL,1048585,11),(153,1,4,2,16777217,'2024-02-01 07:33:19',NULL,1048585,11),(154,1,5,2,16777217,'2024-02-01 07:33:19',NULL,1048585,11),(155,1,3,2,16777217,'2024-02-01 07:33:34',NULL,1048585,12),(156,1,4,2,16777217,'2024-02-01 07:33:34',NULL,1048585,12),(157,1,5,2,16777217,'2024-02-01 07:33:34',NULL,1048585,12),(158,1,NULL,2,16777236,'2024-02-01 07:33:47','2024-02-01 07:33:51',523,9),(159,1,28,2,16777231,'2024-02-01 07:33:47',NULL,1048585,12),(160,1,7,3,16777227,'2024-02-01 07:33:57',NULL,517,17),(162,1,8,3,16777227,'2024-02-01 07:34:04',NULL,517,18),(164,1,3,2,16777217,'2024-02-01 07:34:19',NULL,1048585,13),(165,1,4,2,16777217,'2024-02-01 07:34:19',NULL,1048585,13),(166,1,5,2,16777217,'2024-02-01 07:34:19',NULL,1048585,13),(167,1,NULL,2,16777236,'2024-02-01 07:34:33','2024-02-01 07:34:37',523,10),(175,1,3,2,16777219,'2024-02-01 07:35:09',NULL,517,19),(176,1,4,2,16777219,'2024-02-01 07:35:09',NULL,517,19),(177,1,5,2,16777219,'2024-02-01 07:35:09',NULL,517,19),(178,1,3,2,16777219,'2024-02-01 07:35:21',NULL,517,20),(179,1,4,2,16777219,'2024-02-01 07:35:21',NULL,517,20),(180,1,5,2,16777219,'2024-02-01 07:35:21',NULL,517,20),(181,1,3,2,16777219,'2024-02-01 07:35:33',NULL,517,21),(182,1,4,2,16777219,'2024-02-01 07:35:34',NULL,517,21),(183,1,5,2,16777219,'2024-02-01 07:35:34',NULL,517,21),(184,1,29,3,16777232,'2024-02-01 07:35:52',NULL,1048585,13),(185,1,3,2,16777217,'2024-02-01 07:36:13',NULL,1048585,14),(186,1,4,2,16777217,'2024-02-01 07:36:13',NULL,1048585,14),(187,1,5,2,16777217,'2024-02-01 07:36:13',NULL,1048585,14),(188,1,3,2,16777217,'2024-02-01 07:36:27',NULL,1048585,15),(189,1,4,2,16777217,'2024-02-01 07:36:27',NULL,1048585,15),(190,1,5,2,16777217,'2024-02-01 07:36:27',NULL,1048585,15),(191,1,NULL,2,16777236,'2024-02-01 07:36:42','2024-02-01 07:36:46',523,11),(193,1,8,3,16777227,'2024-02-01 07:36:51',NULL,517,22),(195,1,9,3,16777227,'2024-02-01 07:36:58',NULL,517,23),(202,1,31,2,16777235,'2024-02-01 07:37:16',NULL,1048585,15),(203,1,3,2,16777254,'2024-02-01 07:37:16','2024-02-01 07:37:21',1048585,15),(204,1,4,2,16777254,'2024-02-01 07:37:16',NULL,1048585,15),(205,1,5,2,16777254,'2024-02-01 07:37:16',NULL,1048585,15),(207,1,3,2,16777217,'2024-02-01 07:37:41',NULL,1048585,16),(208,1,4,2,16777217,'2024-02-01 07:37:41',NULL,1048585,16),(209,1,5,2,16777217,'2024-02-01 07:37:41',NULL,1048585,16),(210,1,3,2,16777217,'2024-02-01 07:37:56',NULL,1048585,17),(211,1,4,2,16777217,'2024-02-01 07:37:56',NULL,1048585,17),(212,1,5,2,16777217,'2024-02-01 07:37:56',NULL,1048585,17),(213,1,NULL,2,16777236,'2024-02-01 07:38:11','2024-02-01 07:38:15',523,12),(215,1,7,3,16777227,'2024-02-01 07:38:21',NULL,517,24),(217,1,8,3,16777227,'2024-02-01 07:38:28',NULL,517,25),(224,1,33,2,16777235,'2024-02-01 07:38:47',NULL,1048585,17),(230,1,3,2,16777217,'2024-02-01 07:41:11',NULL,1048585,18),(231,1,4,2,16777217,'2024-02-01 07:41:11',NULL,1048585,18),(232,1,5,2,16777217,'2024-02-01 07:41:11',NULL,1048585,18),(233,1,34,2,16777234,'2024-02-01 07:41:26',NULL,1048585,18),(234,1,3,2,16777217,'2024-02-01 07:41:44',NULL,1048585,19),(235,1,6,2,16777217,'2024-02-01 07:41:44',NULL,1048585,19),(236,1,NULL,2,16777236,'2024-02-01 07:41:59','2024-02-01 07:42:03',523,13),(238,1,8,3,16777227,'2024-02-01 07:42:08',NULL,517,26),(240,1,9,3,16777227,'2024-02-01 07:42:15',NULL,517,27),(242,1,35,2,16777230,'2024-02-01 07:42:20',NULL,1048585,19),(243,1,3,2,16777251,'2024-02-01 07:42:20','2024-02-01 07:42:24',1048585,19),(244,1,6,2,16777251,'2024-02-01 07:42:20',NULL,1048585,19); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oai_resumption_tokens` ( `oai_resumption_token_id` bigint unsigned NOT NULL AUTO_INCREMENT, `token` varchar(32) NOT NULL, `expire` bigint NOT NULL, `record_offset` int NOT NULL, `params` text, PRIMARY KEY (`oai_resumption_token_id`), UNIQUE KEY `oai_resumption_tokens_unique` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 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 `plugin_settings` -- DROP TABLE IF EXISTS `plugin_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `plugin_settings` ( `plugin_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `plugin_name` varchar(80) NOT NULL, `context_id` bigint NOT NULL, `setting_name` varchar(80) NOT NULL, `setting_value` mediumtext, `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=36 DEFAULT CHARSET=utf8mb3 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,'tinymceplugin',0,'enabled','1','bool'),(2,'defaultthemeplugin',0,'enabled','1','bool'),(3,'acronplugin',0,'enabled','1','bool'),(4,'acronplugin',0,'crontab','[{\"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\":[]},{\"className\":\"PKP\\\\task\\\\RemoveExpiredInvitations\",\"frequency\":{\"day\":\"1\"},\"args\":[]}]','object'),(5,'usageeventplugin',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,'tinymceplugin',1,'enabled','1','bool'),(11,'defaultthemeplugin',1,'enabled','1','bool'),(12,'informationblockplugin',1,'enabled','1','bool'),(13,'informationblockplugin',1,'seq','7','int'),(14,'subscriptionblockplugin',1,'enabled','1','bool'),(15,'subscriptionblockplugin',1,'seq','2','int'),(16,'languagetoggleblockplugin',1,'enabled','1','bool'),(17,'languagetoggleblockplugin',1,'seq','4','int'),(18,'developedbyblockplugin',1,'enabled','0','bool'),(19,'developedbyblockplugin',1,'seq','0','int'),(20,'resolverplugin',1,'enabled','1','bool'),(21,'googlescholarplugin',1,'enabled','1','bool'),(22,'webfeedplugin',1,'enabled','1','bool'),(23,'webfeedplugin',1,'displayPage','homepage','string'),(24,'webfeedplugin',1,'displayItems','1','bool'),(25,'webfeedplugin',1,'recentItems','30','int'),(26,'webfeedplugin',1,'includeIdentifiers','0','bool'),(27,'lensgalleyplugin',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','false','string'),(35,'defaultthemeplugin',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `publication_categories` ( `publication_category_id` bigint unsigned NOT NULL AUTO_INCREMENT, `publication_id` bigint NOT NULL, `category_id` bigint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `publication_galley_settings` ( `publication_galley_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `galley_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `publication_galleys` ( `galley_id` bigint NOT NULL AUTO_INCREMENT, `locale` varchar(14) DEFAULT NULL, `publication_id` bigint NOT NULL, `label` varchar(255) DEFAULT NULL, `submission_file_id` bigint unsigned DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT '0.00', `remote_url` varchar(2047) DEFAULT NULL, `is_approved` smallint NOT NULL DEFAULT '0', `url_path` varchar(64) DEFAULT NULL, `doi_id` bigint 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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `publication_galleys` VALUES (1,'en',1,'PDF',12,0.00,NULL,0,NULL,NULL),(2,'en',2,'PDF Version 2',12,0.00,NULL,0,'pdf',NULL),(3,'en',18,'PDF',40,0.00,NULL,0,NULL,NULL); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `publication_settings` ( `publication_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `publication_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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 AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `publication_settings` VALUES (1,1,'','categoryIds','[]'),(2,1,'en','title','Signalling Theory Dividends'),(3,1,'en','abstract','The signaling theory suggests that dividends signal future prospects of a firm. However, recent empirical evidence from the US and the Uk does not offer a conclusive evidence on this issue. There are conflicting policy implications among financial economists so much that there is no practical dividend policy guidance to management, existing and potential investors in shareholding. Since corporate investment, financing and distribution decisions are a continuous function of management, the dividend decisions seem to rely on intuitive evaluation.
'),(4,1,'fr_CA','title',''),(5,1,'en','prefix','The'),(6,1,'en','subtitle','A Review Of The Literature And Empirical Evidence'),(7,1,'fr_CA','subtitle',''),(8,1,'','pages','71-98'),(9,1,'','issueId','1'),(10,1,'en','copyrightHolder','Journal of Public Knowledge'),(11,1,'fr_CA','copyrightHolder','Journal de la connaissance du public'),(12,1,'','copyrightYear','2024'),(13,2,'en','abstract','The signaling theory suggests that dividends signal future prospects of a firm. However, recent empirical evidence from the US and the Uk does not offer a conclusive evidence on this issue. There are conflicting policy implications among financial economists so much that there is no practical dividend policy guidance to management, existing and potential investors in shareholding. Since corporate investment, financing and distribution decisions are a continuous function of management, the dividend decisions seem to rely on intuitive evaluation.
'),(14,2,'','categoryIds','[]'),(15,2,'en','copyrightHolder','Journal of Public Knowledge'),(16,2,'fr_CA','copyrightHolder','Journal de la connaissance du public'),(17,2,'','copyrightYear','2024'),(18,2,'en','prefix','The'),(19,2,'en','subtitle','A Review Of The Literature And Empirical Evidence'),(20,2,'fr_CA','subtitle',''),(21,2,'en','title','The Signalling Theory Dividends Version 2'),(22,2,'fr_CA','title',''),(23,2,'','issueId','1'),(24,2,'','pages','71-98'),(25,3,'en','abstract','The effects of pressed beet pulp silage (PBPS) replacing barley for 10% and 20% (DM basis) were studied on heavy pigs fed dairy whey-diluted diets. 60 Hypor pigs (average initial weight of 28 kg), 30 barrows and 30 gilts, were homogeneously allocated to three exper- imental groups: T1 (control) in which pigs were fed a traditional sweet whey- diluted diet (the ratio between whey and dry matter was 4.5/1); T2 in which PBPS replaced barley for 10% (DM basis) during a first period (from the beginning to the 133rd day of trial) and thereafter for 20% (DM basis); T3 in which PBPS replaced barley for 20% (DM basis) throughout the experimental period. In diets T2 and T3 feed was dairy whey-diluted as in group T1. No significant (P>0.05) differences were observed concerning growth parameters (ADG and FCR). Pigs on diets contain- ing PBPS showed significantly higher (P<0.05) percentages of lean cuts and lower percentages of fat cuts. On the whole, ham weight losses during seasoning were moderate but significantly (P<0.05) more marked for PBPS-fed pigs as a prob- able consequence of their lower adiposity degree. Fatty acid composition of ham fat was unaffected by diets. With regard to m. Semimembranosus colour, pigs receiving PBPS showed lower (P<0.05) \"L\", \"a\" and \"Chroma\" values. From an economical point of view it can be concluded that the use of PBPS (partially replacing barley) and dairy whey in heavy pig production could be of particular interest in areas where both these by products are readily available.'),(26,3,'','categoryIds','[]'),(27,3,'en','title','The influence of lactation on the quantity and quality of cashmere production'),(28,4,'en','abstract','Archival data from an attitude survey of employees in a single multinational organization were used to examine the degree to which national culture affects the nature of job satisfaction. Responses from nine countries were compiled to create a benchmark against which nations could be individually compared. Factor analysis revealed four factors: Organizational Communication, Organizational Efficiency/Effectiveness, Organizational Support, and Personal Benefit. Comparisons of factor structures indicated that Organizational Communication exhibited the most construct equivalence, and Personal Benefit the least. The most satisfied employees were those from China, and the least satisfied from Brazil, consistent with previous findings that individuals in collectivistic nations report higher satisfaction. The research findings suggest that national cultural context exerts an effect on the nature of job satisfaction.'),(29,4,'','categoryIds','[]'),(30,4,'en','title','The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence'),(31,5,'en','abstract','The integration of technology into the classroom is a major issue in education today. Many national and provincial initiatives specify the technology skills that students must demonstrate at each grade level. The Government of the Province of Alberta in Canada, has mandated the implementation of a new curriculum which began in September of 2000, called Information and Communication Technology. This curriculum is infused within core courses and specifies what students are “expected to know, be able to do, and be like with respect to technology” (Alberta Learning, 2000). Since teachers are required to implement this new curriculum, school jurisdictions are turning to professional development strategies and hiring standards to upgrade teachers’ computer skills to meet this goal. This paper summarizes the results of a telephone survey administered to all public school jurisdictions in the Province of Alberta with a 100% response rate. We examined the computer skills that school jurisdictions require of newly hired teachers, and the support strategies employed for currently employed teachers.'),(32,5,'','categoryIds','[]'),(33,5,'en','title','Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice'),(34,6,'en','abstract','In this review, the recent progress on genetic transformation of forest trees were discussed. Its described also, different applications of genetic engineering for improving forest trees or understanding the mechanisms governing genes expression in woody plants.'),(35,6,'','categoryIds','[]'),(36,6,'en','title','Genetic transformation of forest trees'),(37,7,'en','abstract','Robert Fogelin claims that interlocutors must share a framework of background beliefs and commitments in order to fruitfully pursue argument. I refute Fogelin’s claim by investigating more thoroughly the shared background required for productive argument. I find that this background consists not in any common beliefs regarding the topic at hand, but rather in certain shared pro-cedural commitments and competencies. I suggest that Fogelin and his supporters mistakenly view shared beliefs as part of the required background for productive argument because these procedural com-mitments become more difficult to uphold when people’s beliefs diverge widely regarding the topic at hand.'),(38,7,'','categoryIds','[]'),(39,7,'en','title','Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement'),(40,8,'en','abstract','A major goal of education is to equip children with the knowledge, skills and self-belief to be confident and informed citizens - citizens who continue to see themselves as learners beyond graduation. This paper looks at the key role of nurturing efficacy beliefs in order to learn and participate in school and society. Research findings conducted within a social studies context are presented, showing how strategy instruction can enhance self-efficacy for learning. As part of this research, Creative Problem Solving (CPS) was taught to children as a means to motivate and support learning. It is shown that the use of CPS can have positive effects on self-efficacy for learning, and be a valuable framework to involve children in decision-making that leads to social action. Implications for enhancing self-efficacy and motivation to learn in the classroom are discussed.'),(41,8,'','categoryIds','[]'),(42,8,'en','title','Developing efficacy beliefs in the classroom'),(43,9,'en','abstract','The study of the commons has expe- rienced substantial growth and development over the past decades.1 Distinguished scholars in many disciplines had long studied how specific resources were managed or mismanaged at particular times and places (Coward 1980; De los Reyes 1980; MacKenzie 1979; Wittfogel 1957), but researchers who studied specific commons before the mid-1980s were, however, less likely than their contemporary colleagues to be well informed about the work of scholars in other disciplines, about other sec- tors in their own region of interest, or in other regions of the world.'),(44,9,'','categoryIds','[]'),(45,9,'en','title','Traditions and Trends in the Study of the Commons'),(46,10,'en','abstract','None.'),(47,10,'','categoryIds','[]'),(48,10,'en','title','Hansen & Pinto: Reason Reclaimed'),(49,11,'en','abstract','The Texas Water Availability Modeling System is routinely applied in administration of the water rights permit system, regional and statewide planning, and an expanding variety of other endeavors. Modeling water management in the 23 river basins of the state reflects about 8,000 water right permits and 3,400 reservoirs. Datasets are necessarily large and complex to provide the decision-support capabilities for which the modeling system was developed. New modeling features are being added, and the different types of applications are growing. Certain applications are enhanced by simplifying the simulation input datasets to focus on particular water management systems. A methodology is presented for developing a condensed dataset for a selected reservoir system that reflects the impacts of all the water rights and accompanying reservoirs removed from the original complete dataset. A set of streamflows is developed that represents flows available to the selected system considering the effects of all the other water rights in the river basin contained in the original complete model input dataset that are not included in the condensed dataset. The methodology is applied to develop a condensed model of the Brazos River Authority reservoir system based on modifying the Texas Water Availability Modeling System dataset for the Brazos River Basin.'),(50,11,'','categoryIds','[]'),(51,11,'en','title','Condensing Water Availability Models to Focus on Specific Water Management Systems'),(52,12,'en','abstract','Environmental sustainability and sustainable development principles are vital topics that engineering education has largely failed to address. Service-learning, which integrates social service into an academic setting, is an emerging tool that can be leveraged to teach sustainable design to future engineers. We present a model of using service-learning to teach sustainable design based on the experiences of the Stanford chapter of Engineers for a Sustainable World. The model involves the identification of projects and partner organizations, a student led, project-based design course, and internships coordinated with partner organizations. The model has been very successful, although limitations and challenges exist. These are discussed along with future directions for expanding the model.'),(53,12,'','categoryIds','[]'),(54,12,'en','title','Learning Sustainable Design through Service'),(55,13,'en','abstract','The aim of this study was to assess the influence of long-term fat supplementation on the fatty acid profile of heavy pig adipose tissue. Fifty-four Large White barrows, averaging 25 kg LW, were randomized (matched weights) to one of three isoenergetic diets supplemented with either tallow (TA), maize oil (MO), or rapeseed oil (RO). The fats were supplement- ed at 3% as fed from 25 to 110 kg LW, and at 2.5 % from 110 kg to slaughtering. Following slaughter at about 160 kg LW, backfat samples were collected from ten animals per treatment and analyzed. Fatty acid composition of backfat close- ly reflected the fatty acid composition of the supplemented fats. The backfat of pigs fed TA had the highest saturated fatty acid content (SFA) (P<0.01); those fed MO had the highest content in polyunsaturated fatty acid (PUFA) and the lowest in monounsaturated fatty acid (MUFA) content; those fed RO had the highest content of linolenic acid (C18:3) and cis 11- ecosenoic acid (C20:1). Only MO treatment had an effect on linoleic acid levels and the iodine value (IV) of backfat, result- ing in levels higher than those (IV = 70; C18:2 = 15%) accepted by the Parma Consortium for dry-cured ham. The IV and unsaturation index in both layers of subcutaneous backfat tissue differed significantly between treatments. These results show that long-term dietary supplementation with different fats changes the fatty acid profile of heavy pig adipose tissue. Supplementation with rapeseed oil increases the proportion of “healthy” fatty acids in pig fat, thereby improving the nutritional quality, however the effects on the technological quality of the fat must be carefully assessed.'),(56,13,'','categoryIds','[]'),(57,13,'en','title','Sodium butyrate improves growth performance of weaned piglets during the first period after weaning'),(58,14,'en','abstract','The Edwards Aquifer serves as the primary water supply in South-Central Texas and is the source for several major springs. In developing a plan to protect endangered species immediately downstream of San Marcos Springs, questions have been raised regarding the established concept of a hydrologic divide between the San Antonio and Barton Springs segments of the Edwards Aquifer during drought conditions. To address these questions, a water-level data collection program and a hydrogeologic study was conducted. An analysis of groundwater-level data indicate that a groundwater divide exists in the vicinity of the surface drainage divide between Onion Creek and Blanco River during wet and normal hydrologic conditions. However, analysis of data collected during the 2009 drought suggests that the groundwater divide dissipated and no longer hydrologically separated the two segments. As a result, there is potential for groundwater to flow past San Marcos Springs toward Barton Springs during major droughts. The implications for this have bearings on the management and availability of groundwater in the Edwards Aquifer. Assessments of simulations from a numerical model suggest 5 cfs could be flowing past San Marcos toward Barton springs under drought conditions. The groundwater divide appears to be influenced by recharge along Onion Creek and Blanco River and appears to be vulnerable to extended periods of little or no recharge and extensive pumping in the vicinity of Kyle and Buda. The 2009 data set shows a very low gradient in the potentiometric surface between San Marcos Springs and Kyle with very little variation in levels between drought and non-drought periods. From Kyle toward Barton Springs, the potentiometric surface slopes significantly to the north and has dramatic changes in levels between drought and non-drought periods. The source and nature of the discontinuity of the change in potentiometric gradients and dynamic water level response at Kyle is unknown. Structural influences or hydraulic properties inherent in the aquifer could be the cause of this discontinuity and may also influence the degree of hydrologic connection between San Marcos and Barton Springs. Rapid population growth and increased water demands in the Kyle and Buda areas necessitates a continual groundwater level monitoring program between San Marcos Springs and Buda to provide data for future hydrogeologic and trend analyses.'),(59,14,'','categoryIds','[]'),(60,14,'en','title','Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions'),(61,15,'en','abstract','One of the challenges still to be met in the 21st century is that of genuinely embracing diversity. How can education help to overcome the barriers that continue to exist between people on the basis of language, culture and gender? This case study takes the Atlantic Coast of Nicaragua as an example of a multilingual/multiethnic region and examines how the community university URACCAN is contributing to the development of interculturality. It describes participatory research that was carried out with university staff and students with the intention of defining an intercultural curriculum and appropriate strategies for delivering such. One model used as a basis for discussions was the Model for Community Understanding from the Wales Curriculum Council, which emphasises the belonging of the individual to different communities or cultures at the same time. Factors supporting the development of an intercultural curriculum include the university’s close involvement with the ethnic communities it serves. However, ethno-linguistic power relations within the region and the country as a whole, still militate against egalitarianism within the university. The research highlights the importance of participatory pedagogy as the basis for promoting interculturality and achieving lasting social transformation.'),(62,15,'','categoryIds','[]'),(63,15,'en','title','Towards Designing an Intercultural Curriculum: A Case Study from the Atlantic Coast of Nicaragua'),(64,16,'en','abstract','This review presents different diseases associated with yam and the management strategies employed in combating its menace in Nigeria. The field and storage diseases are presented, anthracnose is regarded as the most widely spread of all the field diseases, while yam mosaic virus disease is considered to cause the most severe losses in yams. Dry rot is considered as the most devastating of all the storage diseases of yam. Dry rot of yams alone causes a marked reduction in the quantity, marketable value and edible portions of tubers and those reductions are more severe in stored yams. The management strategies adopted and advocated for combating the field diseases includes the use of crop rotation, fallowing, planting of healthy material, the destruction of infected crop cultivars and the use of resistant cultivars. With regards to the storage diseases, the use of Tecto (Thiabendazole), locally made dry gins or wood ash before storage has been found to protect yam tubers against fungal infection in storage. Finally, processing of yam tubers into chips or cubes increases its shelf live for a period of between 6 months and one year.'),(65,16,'','categoryIds','[]'),(66,16,'en','title','Yam diseases and its management in Nigeria'),(67,17,'en','abstract','Aim of this research is to provide a general situation of cattle slaughtered in Cameroon, as a representative example for the Central African Sub-region. The quality and safety of beef from the abattoir of Yaoundé, the largest in Cameroon, were considered. From January 2009 to March 2012, the pre-slaughter conditions and characteristics of 1953 cattle carcasses were recorded, as well as the pH of m. longissimus thoracis 24 h after slaughter. From these carcasses, 60 were selected to represent the bulls slaughtered. The quality parameters and composition of m. longissimus thoracis were carried out. The origin of most of the cattle was the Guinea High Savannah (74.6%), and transhumance was the common production system (75.5%). Gudali (45.6%), White Fulani (33.3%) and Red Mbororo (20.3%) breeds were predominant. Carcass weight was affected by rearing system and cattle category, and it markedly varied during year. Considering meat quality, the fat content was low (1.2%) and similar between breeds, moreover Gudali showed the toughest meat. Of the cows slaughtered, 27% were pregnant and the most common abnormal conditions encountered were ectoparasites, fatigue, lameness, fungal-like skin lesions, enlarged lymph nodes, respiratory distress, nodular lesions. More than 20% of the carcasses had some organs condemned, mainly for liver flukes (5.17%), and 1.0% of them were completely condemned due to tuberculosis, that also affected 3.28% of lungs. These data could aid authorities draw up programmes with the aim to strengthen cattle production, improve beef supply, control and prevent the observed diseases, and promote the regional trade.'),(68,17,'','categoryIds','[]'),(69,17,'en','title','Influence of long-term nutrition with different dietary fats on fatty acid composition of heavy pigs backfat'),(70,18,'en','abstract','The antimicrobial, heavy metal resistance patterns and plasmid profiles of Coliforms (Enterobacteriacea) isolated from nosocomial infections and healthy human faeces were compared. Fifteen of the 25 isolates from nosocomial infections were identified as Escherichia coli, and remaining as Kelebsiella pneumoniae. Seventy two percent of the strains isolated from nosocomial infections possess multiple resistance to antibiotics compared to 45% of strains from healthy human faeces. The difference between minimal inhibitory concentration (MIC) values of strains from clinical cases and from faeces for four heavy metals (Hg, Cu, Pb, Cd) was not significant. However most strains isolated from hospital were more tolerant to heavy metal than those from healthy persons. There was no consistent relationship between plasmid profile group and antimicrobial resistance pattern, although a conjugative plasmid (>56.4 kb) encoding resistance to heavy metals and antibiotics was recovered from eight of the strains isolated from nosocomial infections. The results indicate multidrug-resistance coliforms as a potential cause of nosocomial infection in this region.'),(71,18,'','categoryIds','[]'),(72,18,'en','title','Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran'),(73,18,'','issueId','1'),(74,18,'en','copyrightHolder','Journal of Public Knowledge'),(75,18,'fr_CA','copyrightHolder','Journal de la connaissance du public'),(76,18,'','copyrightYear','2024'),(77,19,'en','abstract','We compare a setting where actors individually decide whom to sanction with a setting where sanctions are only implemented when actors collectively agree that a certain actor should be sanctioned. Collective sanctioning decisions are problematic due to the difficulty of reaching consensus. However, when a decision is made collectively, perverse sanctioning (e.g. punishing high contributors) by individual actors is ruled out. Therefore, collective sanctioning decisions are likely to be in the interest of the whole group.'),(78,19,'','categoryIds','[]'),(79,19,'en','title','Self-Organization in Multi-Level Institutions in Networked Environments'),(80,20,'en','abstract','None.'),(81,20,'','categoryIds','[]'),(82,20,'en','title','Finocchiaro: Arguments About Arguments'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `publications` ( `publication_id` bigint NOT NULL AUTO_INCREMENT, `access_status` bigint DEFAULT '0', `date_published` date DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `primary_contact_id` bigint DEFAULT NULL, `section_id` bigint DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT '0.00', `submission_id` bigint NOT NULL, `status` smallint NOT NULL DEFAULT '1', `url_path` varchar(64) DEFAULT NULL, `version` bigint DEFAULT NULL, `doi_id` bigint 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 AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `publications` VALUES (1,0,'2024-02-01','2024-02-01 07:23:20',1,1,0.00,1,3,'mwandenga-signalling-theory',1,NULL),(2,0,'2024-02-01','2024-02-01 07:24:06',5,1,0.00,1,1,'mwandenga',2,NULL),(3,0,NULL,'2024-02-01 07:25:12',8,1,0.00,2,1,NULL,1,NULL),(4,0,NULL,'2024-02-01 07:25:46',9,1,0.00,3,1,NULL,1,NULL),(5,0,NULL,'2024-02-01 07:26:43',10,1,0.00,4,1,NULL,1,NULL),(6,0,NULL,'2024-02-01 07:26:58',12,1,0.00,5,1,NULL,1,NULL),(7,0,NULL,'2024-02-01 07:28:15',13,1,0.00,6,1,NULL,1,NULL),(8,0,NULL,'2024-02-01 07:29:27',14,1,0.00,7,1,NULL,1,NULL),(9,0,NULL,'2024-02-01 07:30:32',15,1,0.00,8,1,NULL,1,NULL),(10,0,NULL,'2024-02-01 07:30:47',17,2,0.00,9,1,NULL,1,NULL),(11,0,NULL,'2024-02-01 07:32:05',18,1,0.00,10,1,NULL,1,NULL),(12,0,NULL,'2024-02-01 07:33:14',19,1,0.00,11,1,NULL,1,NULL),(13,0,NULL,'2024-02-01 07:33:29',21,1,0.00,12,1,NULL,1,NULL),(14,0,NULL,'2024-02-01 07:34:14',22,1,0.00,13,1,NULL,1,NULL),(15,0,NULL,'2024-02-01 07:36:08',23,1,0.00,14,1,NULL,1,NULL),(16,0,NULL,'2024-02-01 07:36:23',24,1,0.00,15,1,NULL,1,NULL),(17,0,NULL,'2024-02-01 07:37:37',25,1,0.00,16,1,NULL,1,NULL),(18,0,'2024-02-01','2024-02-01 07:40:44',26,1,0.00,17,3,NULL,1,NULL),(19,0,NULL,'2024-02-01 07:41:06',27,1,0.00,18,1,NULL,1,NULL),(20,0,NULL,'2024-02-01 07:41:39',28,2,0.00,19,1,NULL,1,NULL); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queries` ( `query_id` bigint NOT NULL AUTO_INCREMENT, `assoc_type` bigint NOT NULL, `assoc_id` bigint NOT NULL, `stage_id` smallint NOT NULL, `seq` double(8,2) NOT NULL DEFAULT '0.00', `date_posted` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `closed` smallint NOT NULL DEFAULT '0', PRIMARY KEY (`query_id`), KEY `queries_assoc_id` (`assoc_type`,`assoc_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `queries` VALUES (1,1048585,2,3,1.00,NULL,NULL,0); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `query_participants` ( `query_participant_id` bigint unsigned NOT NULL AUTO_INCREMENT, `query_id` bigint NOT NULL, `user_id` bigint 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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `query_participants` VALUES (1,1,3),(2,1,4),(3,1,5); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queued_payments` ( `queued_payment_id` bigint NOT NULL AUTO_INCREMENT, `date_created` datetime NOT NULL, `date_modified` datetime NOT NULL, `expiry_date` date DEFAULT NULL, `payment_data` text, PRIMARY KEY (`queued_payment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_assignments` ( `review_id` bigint NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `reviewer_id` bigint NOT NULL, `competing_interests` text, `recommendation` smallint 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 NOT NULL DEFAULT '0', `declined` smallint NOT NULL DEFAULT '0', `cancelled` smallint NOT NULL DEFAULT '0', `date_rated` datetime DEFAULT NULL, `date_reminded` datetime DEFAULT NULL, `quality` smallint DEFAULT NULL, `review_round_id` bigint NOT NULL, `stage_id` smallint NOT NULL, `review_method` smallint NOT NULL DEFAULT '1', `round` smallint NOT NULL DEFAULT '1', `step` smallint NOT NULL DEFAULT '1', `review_form_id` bigint DEFAULT NULL, `considered` smallint DEFAULT NULL, `request_resent` smallint 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 AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `review_assignments` VALUES (1,1,7,NULL,NULL,'2024-02-01 07:19:33','2024-02-01 07:19:33',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:19:33',0,0,0,NULL,NULL,NULL,1,3,2,1,1,NULL,NULL,0),(2,1,9,NULL,NULL,'2024-02-01 07:19:40','2024-02-01 07:19:40',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:19:40',0,0,0,NULL,NULL,NULL,1,3,2,1,1,NULL,NULL,0),(3,1,10,NULL,NULL,'2024-02-01 07:19:47','2024-02-01 07:19:47',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:19:47',0,0,0,NULL,NULL,NULL,1,3,2,1,1,NULL,NULL,0),(4,3,9,NULL,NULL,'2024-02-01 07:26:13','2024-02-01 07:26:13',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:26:13',0,0,0,NULL,NULL,NULL,3,3,2,1,1,NULL,NULL,0),(5,3,10,NULL,NULL,'2024-02-01 07:26:20','2024-02-01 07:26:20',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:26:20',0,0,0,NULL,NULL,NULL,3,3,2,1,1,NULL,NULL,0),(6,5,8,NULL,NULL,'2024-02-01 07:27:24','2024-02-01 07:27:25',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:27:25',0,0,0,NULL,NULL,NULL,4,3,2,1,1,NULL,NULL,0),(7,5,10,NULL,NULL,'2024-02-01 07:27:31','2024-02-01 07:27:31',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:27:31',0,0,0,NULL,NULL,NULL,4,3,2,1,1,NULL,NULL,0),(8,6,7,NULL,NULL,'2024-02-01 07:28:42','2024-02-01 07:28:42',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:28:42',0,0,0,NULL,NULL,NULL,5,3,2,1,1,NULL,NULL,0),(9,6,10,NULL,NULL,'2024-02-01 07:28:49','2024-02-01 07:28:49',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:28:49',0,0,0,NULL,NULL,NULL,5,3,2,1,1,NULL,NULL,0),(10,7,8,NULL,5,'2024-02-01 07:29:54','2024-02-01 07:29:54','2024-02-01 07:30:15','2024-02-01 07:30:20',NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:30:20',0,0,0,NULL,NULL,NULL,6,3,2,1,4,NULL,NULL,0),(11,7,9,NULL,NULL,'2024-02-01 07:30:01','2024-02-01 07:30:01',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:30:01',0,0,0,NULL,NULL,NULL,6,3,2,1,1,NULL,NULL,0),(12,7,10,NULL,NULL,'2024-02-01 07:30:08','2024-02-01 07:30:08',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:30:08',0,0,0,NULL,NULL,NULL,6,3,2,1,1,NULL,NULL,0),(13,9,7,NULL,NULL,'2024-02-01 07:31:15','2024-02-01 07:31:15',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:31:15',0,0,0,NULL,NULL,NULL,7,3,2,1,1,NULL,NULL,0),(14,9,10,NULL,NULL,'2024-02-01 07:31:22','2024-02-01 07:31:22',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:31:22',0,0,0,NULL,NULL,NULL,7,3,2,1,1,NULL,NULL,0),(15,10,9,NULL,2,'2024-02-01 07:32:33','2024-02-01 07:32:33','2024-02-01 07:32:47','2024-02-01 07:32:51',NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:32:51',0,0,0,NULL,NULL,NULL,8,3,2,1,4,NULL,NULL,0),(16,10,10,NULL,3,'2024-02-01 07:32:40','2024-02-01 07:32:40','2024-02-01 07:32:58','2024-02-01 07:33:03',NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:33:03',0,0,0,NULL,NULL,NULL,8,3,2,1,4,NULL,NULL,0),(17,12,7,NULL,NULL,'2024-02-01 07:33:57','2024-02-01 07:33:57',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:33:57',0,0,0,NULL,NULL,NULL,9,3,1,1,1,NULL,NULL,0),(18,12,8,NULL,NULL,'2024-02-01 07:34:04','2024-02-01 07:34:04',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:34:04',0,0,0,NULL,NULL,NULL,9,3,2,1,1,NULL,NULL,0),(19,13,7,NULL,2,'2024-02-01 07:34:43','2024-02-01 07:34:43','2024-02-01 07:35:04','2024-02-01 07:35:09','2024-02-01 07:35:52','2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:35:52',0,0,0,NULL,NULL,NULL,10,3,2,1,4,NULL,NULL,0),(20,13,9,NULL,2,'2024-02-01 07:34:49','2024-02-01 07:34:49','2024-02-01 07:35:16','2024-02-01 07:35:21','2024-02-01 07:35:52','2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:35:52',0,0,0,NULL,NULL,NULL,10,3,2,1,4,NULL,NULL,0),(21,13,10,NULL,3,'2024-02-01 07:34:56','2024-02-01 07:34:57','2024-02-01 07:35:29','2024-02-01 07:35:33','2024-02-01 07:35:52','2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:35:52',0,0,0,NULL,NULL,NULL,10,3,2,1,4,NULL,NULL,0),(22,15,8,NULL,NULL,'2024-02-01 07:36:51','2024-02-01 07:36:51',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:36:51',0,0,0,NULL,NULL,NULL,11,3,2,1,1,NULL,NULL,0),(23,15,9,NULL,NULL,'2024-02-01 07:36:58','2024-02-01 07:36:58',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:36:58',0,0,0,NULL,NULL,NULL,11,3,2,1,1,NULL,NULL,0),(24,17,7,NULL,NULL,'2024-02-01 07:38:21','2024-02-01 07:38:21',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:38:21',0,0,0,NULL,NULL,NULL,12,3,2,1,1,NULL,NULL,0),(25,17,8,NULL,NULL,'2024-02-01 07:38:28','2024-02-01 07:38:28',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:38:28',0,0,0,NULL,NULL,NULL,12,3,2,1,1,NULL,NULL,0),(26,19,8,NULL,NULL,'2024-02-01 07:42:08','2024-02-01 07:42:08',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:42:08',0,0,0,NULL,NULL,NULL,13,3,2,1,1,NULL,NULL,0),(27,19,9,NULL,NULL,'2024-02-01 07:42:15','2024-02-01 07:42:15',NULL,NULL,NULL,'2024-02-29 00:00:00','2024-02-29 00:00:00','2024-02-01 07:42:15',0,0,0,NULL,NULL,NULL,13,3,2,1,1,NULL,NULL,0); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_files` ( `review_file_id` bigint unsigned NOT NULL AUTO_INCREMENT, `review_id` bigint NOT NULL, `submission_file_id` bigint 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 AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `review_files` VALUES (4,1,7),(5,1,8),(1,1,9),(2,1,10),(3,1,11),(9,2,7),(10,2,8),(6,2,9),(7,2,10),(8,2,11),(14,3,7),(15,3,8),(11,3,9),(12,3,10),(13,3,11),(16,4,16),(17,5,16),(18,6,19),(19,7,19),(20,8,21),(21,9,21),(22,10,23),(23,11,23),(24,12,23),(25,13,26),(26,14,26),(27,15,28),(28,16,28),(29,17,31),(30,18,31),(31,19,33),(32,20,33),(33,21,33),(34,22,36),(35,23,36),(36,24,39),(37,25,39),(38,26,43),(39,27,43); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_form_element_settings` ( `review_form_element_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `review_form_element_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_form_elements` ( `review_form_element_id` bigint NOT NULL AUTO_INCREMENT, `review_form_id` bigint NOT NULL, `seq` double(8,2) DEFAULT NULL, `element_type` bigint DEFAULT NULL, `required` smallint DEFAULT NULL, `included` smallint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_form_responses` ( `review_form_response_id` bigint unsigned NOT NULL AUTO_INCREMENT, `review_form_element_id` bigint NOT NULL, `review_id` bigint NOT NULL, `response_type` varchar(6) DEFAULT NULL, `response_value` text, 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_form_settings` ( `review_form_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `review_form_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_forms` ( `review_form_id` bigint NOT NULL AUTO_INCREMENT, `assoc_type` bigint NOT NULL, `assoc_id` bigint NOT NULL, `seq` double(8,2) DEFAULT NULL, `is_active` smallint DEFAULT NULL, PRIMARY KEY (`review_form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_round_files` ( `review_round_file_id` bigint unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `review_round_id` bigint NOT NULL, `stage_id` smallint NOT NULL, `submission_file_id` bigint 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 AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `review_round_files` VALUES (1,1,1,3,7),(2,1,1,3,8),(3,1,1,3,9),(4,1,1,3,10),(5,1,1,3,11),(6,2,2,3,14),(7,3,3,3,16),(8,5,4,3,19),(9,6,5,3,21),(10,7,6,3,23),(11,9,7,3,26),(12,10,8,3,28),(13,12,9,3,31),(14,13,10,3,33),(15,15,11,3,36),(16,17,12,3,39),(17,19,13,3,43); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_rounds` ( `review_round_id` bigint NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `stage_id` bigint DEFAULT NULL, `round` smallint NOT NULL, `review_revision` bigint DEFAULT NULL, `status` bigint 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 AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `review_rounds` VALUES (1,1,3,1,NULL,4),(2,2,3,1,NULL,14),(3,3,3,1,NULL,4),(4,5,3,1,NULL,4),(5,6,3,1,NULL,4),(6,7,3,1,NULL,6),(7,9,3,1,NULL,4),(8,10,3,1,NULL,8),(9,12,3,1,NULL,8),(10,13,3,1,NULL,1),(11,15,3,1,NULL,4),(12,17,3,1,NULL,4),(13,19,3,1,NULL,4); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `scheduled_tasks` ( `scheduled_task_id` bigint 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=13 DEFAULT CHARSET=utf8mb3 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','2024-02-01 07:12:51'),(2,'PKP\\task\\StatisticsReport','2024-02-01 07:12:51'),(3,'APP\\tasks\\SubscriptionExpiryReminder','2024-02-01 07:12:51'),(4,'PKP\\task\\DepositDois','2024-02-01 07:12:51'),(5,'PKP\\task\\RemoveUnvalidatedExpiredUsers','2024-02-01 07:12:51'),(6,'PKP\\task\\EditorialReminders','2024-02-01 07:12:51'),(7,'PKP\\task\\UpdateIPGeoDB','2024-02-01 07:12:51'),(8,'APP\\tasks\\UsageStatsLoader','2024-02-01 07:12:52'),(9,'PKP\\task\\ProcessQueueJobs','2024-02-01 07:12:52'),(10,'PKP\\task\\RemoveFailedJobs','2024-02-01 07:12:52'),(11,'APP\\tasks\\OpenAccessNotification','2024-02-01 07:12:52'),(12,'PKP\\task\\RemoveExpiredInvitations','2024-02-01 07:12:52'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `section_settings` ( `section_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `section_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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=17 DEFAULT CHARSET=utf8mb3 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
'),(4,1,'fr_CA','title',''),(5,1,'fr_CA','abbrev',''),(6,1,'en','identifyType',''),(7,1,'fr_CA','identifyType',''),(8,1,'fr_CA','policy',''),(9,2,'en','title','Reviews'),(10,2,'fr_CA','title',''),(11,2,'en','abbrev','REV'),(12,2,'fr_CA','abbrev',''),(13,2,'en','identifyType','Review Article'),(14,2,'fr_CA','identifyType',''),(15,2,'en','policy',''),(16,2,'fr_CA','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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sections` ( `section_id` bigint NOT NULL AUTO_INCREMENT, `journal_id` bigint NOT NULL, `review_form_id` bigint DEFAULT NULL, `seq` double(8,2) NOT NULL DEFAULT '0.00', `editor_restricted` smallint NOT NULL DEFAULT '0', `meta_indexed` smallint NOT NULL DEFAULT '0', `meta_reviewed` smallint NOT NULL DEFAULT '1', `abstracts_not_required` smallint NOT NULL DEFAULT '0', `hide_title` smallint NOT NULL DEFAULT '0', `hide_author` smallint NOT NULL DEFAULT '0', `is_inactive` smallint NOT NULL DEFAULT '0', `abstract_word_count` bigint 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=3 DEFAULT CHARSET=utf8mb3 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,500),(2,1,NULL,1.00,0,1,1,1,0,0,0,0); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sessions` ( `session_id` varchar(128) NOT NULL, `user_id` bigint DEFAULT NULL, `ip_address` varchar(39) NOT NULL, `user_agent` varchar(255) DEFAULT NULL, `created` bigint NOT NULL DEFAULT '0', `last_used` bigint NOT NULL DEFAULT '0', `remember` smallint 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=utf8mb3 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 ('0jqjbcar71eq2hh6cmeghb22h2',5,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772249,1706772262,0,'userId|i:5;username|s:8:\"sberardo\";csrf|a:2:{s:9:\"timestamp\";i:1706772261;s:5:\"token\";s:32:\"0f42961e428862be182d198f4f9a2219\";}signedInAs|i:3;','localhost'),('0kall0ngnef9598lemohlkuvf8',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772653,1706772715,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772715;s:5:\"token\";s:32:\"e295837aca5c8219b65581742301eefc\";}','localhost'),('11ivogc2prob0hqd75eceo9p32',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772291,1706772313,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772313;s:5:\"token\";s:32:\"775ce2d1b66b11133748f3b9474e3c82\";}','localhost'),('1keoqp6dnrsi5h46n8ntohjjac',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773168,1706773183,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773183;s:5:\"token\";s:32:\"605afe1d18e538742e367bd4d58c189e\";}','localhost'),('2gnekomna46de39v5aegib8d7o',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773199,1706773214,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773214;s:5:\"token\";s:32:\"943138bb22bf28371addb5f0db8c7b92\";}','localhost'),('2hecafc7512r2bdgcc5on42o1o',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773305,1706773349,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773349;s:5:\"token\";s:32:\"ed6fc3dcae0c7f2c132b1ce58f7f07b6\";}','localhost'),('2vcmcppjo9bvmnr05eab0tsj1v',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773215,1706773230,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773230;s:5:\"token\";s:32:\"187d6ecceb9376bb8dea69a18f4c39ba\";}','localhost'),('34n6pbf2b6kldmjnlnef4pgfoc',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772501,1706772557,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772557;s:5:\"token\";s:32:\"54cd082e0e06e464dfbf55e6d05d1281\";}','localhost'),('43ur8u1fr8e1m0pai8m06pbqq2',27,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772787,1706772799,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772799;s:5:\"token\";s:32:\"355476422a0c45768253315150fc6e69\";}username|s:10:\"kalkhafaji\";userId|i:27;','localhost'),('45ma0jenj2mjca0dvdl07rkbed',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773273,1706773290,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773290;s:5:\"token\";s:32:\"35c43848a7e58757182341c6ee7087cf\";}','localhost'),('4a4mshmhddga3qvl4nkcsau17e',26,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772719,1706772730,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772730;s:5:\"token\";s:32:\"20dd420945c65d3dddfea9bbc2d98049\";}username|s:6:\"jnovak\";userId|i:26;','localhost'),('51e02gfeq38qlj8pn03g838mvg',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772610,1706772620,0,'username|s:7:\"phudson\";csrf|a:2:{s:9:\"timestamp\";i:1706772620;s:5:\"token\";s:32:\"e9abf0e3e986b7e1644af5c347037f4d\";}','localhost'),('5g1pntavvrf0mc314oj7dit79v',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772202,1706772233,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772233;s:5:\"token\";s:32:\"4f12528c1f8e573c416005b5abb5c2e0\";}','localhost'),('5j5d0sieiocfif7sb3j6p57k75',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771857,1706771870,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771870;s:5:\"token\";s:32:\"3d5dc9beb7d5f42265d946f22010a9cb\";}','localhost'),('66v6r1k9csvetug5dfo7lnlojs',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771564,1706771564,0,'','localhost'),('6c2v21etka4ctb61d0shvon860',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772815,1706772845,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772844;s:5:\"token\";s:32:\"f1a3c0ef263d1646b0f8904dc92adaad\";}','localhost'),('6kdc9kl8v13662nv778fvdcvt9',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772772,1706772783,0,'username|s:8:\"agallego\";csrf|a:2:{s:9:\"timestamp\";i:1706772783;s:5:\"token\";s:32:\"d49a36f183aec6c71aad965df1e8e534\";}','localhost'),('839h922d7hohut6bt023c97oj1',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772233,1706772239,0,'','localhost'),('8acmr0ca696v90t2780leqhk85',17,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771874,1706771950,0,'csrf|a:2:{s:9:\"timestamp\";i:1706771950;s:5:\"token\";s:32:\"687d0dc47132246be9d2f6b68b228ce1\";}username|s:10:\"amwandenga\";userId|i:17;','localhost'),('8r4ia8udheucc1a3gusscoopsr',23,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772561,1706772572,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772572;s:5:\"token\";s:32:\"aa65fd8326e15814364f8001b4006e0c\";}username|s:9:\"dsokoloff\";userId|i:23;','localhost'),('8ufsjjob0p19sm3loum1uhcijg',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772425,1706772484,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772485;s:5:\"token\";s:32:\"c0071dcd63a018547bfad7951dc10a6f\";}','localhost'),('9eldsmisbjvionu923r044m3kl',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771597,1706771617,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771617;s:5:\"token\";s:32:\"a141b34c1e6109361705b8935a0c830c\";}','localhost'),('9ff1u2ve7int25ra55uam7l4l6',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772194,1706772201,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772201;s:5:\"token\";s:32:\"03180abb8ad358431767f5ad3bfd2ba4\";}','localhost'),('9q7ork56quboaq3udggeh254co',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771634,1706771646,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771646;s:5:\"token\";s:32:\"455f3fe478df08268714575689262420\";}','localhost'),('ammhfd5ohr1a48gsph15og054d',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772922,1706772934,0,'username|s:8:\"agallego\";csrf|a:2:{s:9:\"timestamp\";i:1706772934;s:5:\"token\";s:32:\"791c84ead72550378ed4b14e44505abe\";}','localhost'),('amncc8a4t6q09b9ga5a6s1d035',17,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772166,1706772170,0,'userId|i:17;username|s:10:\"amwandenga\";csrf|a:2:{s:9:\"timestamp\";i:1706772170;s:5:\"token\";s:32:\"2ac07d004682faa6a323c4f86c426fa0\";}','localhost'),('bhjs4gj9vck708oc4jng1qsrvf',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773184,1706773198,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773199;s:5:\"token\";s:32:\"94951ba9548fa88a3c089347093a5f29\";}','localhost'),('bi26lhg4ro21j7b7e6sj315cv7',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771618,1706771629,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771629;s:5:\"token\";s:32:\"41e95388ba5a6c14d16b68e9c1083cee\";}','localhost'),('bnd1lac70mdppsk872kflgqdj5',31,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772977,1706772987,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772987;s:5:\"token\";s:32:\"5390f63cedd78b04a93057bcc48c905c\";}username|s:8:\"rbaiyewu\";userId|i:31;','localhost'),('bnh40466qo944pc1jtoevnntfq',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771951,1706772020,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772020;s:5:\"token\";s:32:\"d5945242ea754079fcaad1f4962dcba1\";}','localhost'),('bu5dnevmennh6t8b9jq8k9jf7t',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772156,1706772164,0,'username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772164;s:5:\"token\";s:32:\"a0695c24fb31f7d131e1f4e6935ad5eb\";}','localhost'),('bubl5do3irbipc5la4dalvmfcq',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773150,1706773167,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773167;s:5:\"token\";s:32:\"ae8bbf89c9daa3651e78cfe9e8972331\";}','localhost'),('dklovv6obmsgbsdae2gl9t4bjh',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772172,1706772184,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772185;s:5:\"token\";s:32:\"e2ed324241f718bb19942903fd588b3e\";}','localhost'),('dskv44i0bi8n597oag4dghmrqb',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772732,1706772761,0,'username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772761;s:5:\"token\";s:32:\"0b64724aaa28caba5668aa332594ef5e\";}','localhost'),('ee54g2559gs0hr3q0lg6q8lu3k',5,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772263,1706772275,0,'userId|i:5;username|s:8:\"sberardo\";csrf|a:2:{s:9:\"timestamp\";i:1706772275;s:5:\"token\";s:32:\"d7530d842fed4556059b6ab827b40add\";}signedInAs|i:3;','localhost'),('elgr4fgndrva33thapqegc1qna',18,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772278,1706772289,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772289;s:5:\"token\";s:32:\"78fb453cddfaacb24d55dba88d0d258f\";}username|s:7:\"ccorino\";userId|i:18;','localhost'),('f5mo9bhq89h86cn9rns037oruj',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772573,1706772609,0,'username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772609;s:5:\"token\";s:32:\"7e50492a470510e7f0db655f955eaa4a\";}','localhost'),('fht8mgv5majl4jpgqhdak16c3l',34,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773260,1706773271,0,'csrf|a:2:{s:9:\"timestamp\";i:1706773271;s:5:\"token\";s:32:\"bbcc5ae9e20ab10b63f543b779ababd4\";}username|s:11:\"vwilliamson\";userId|i:34;','localhost'),('fnl6g5r6na1gmkn0s44uqkom0k',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772353,1706772392,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772393;s:5:\"token\";s:32:\"898f0acc577fb510fc949a6afb30f60c\";}','localhost'),('fvl7s5crp08uo81gjdadvdopid',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772314,1706772329,0,'username|s:6:\"minoue\";csrf|a:2:{s:9:\"timestamp\";i:1706772328;s:5:\"token\";s:32:\"d05bee9ad616f687c757e0789566dad8\";}','localhost'),('gm1hbl9vb7qja5i5fhdg9q7sja',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772935,1706772958,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772959;s:5:\"token\";s:32:\"1ce722b286bc9e67bae0990a292e9ca5\";}','localhost'),('hmg0s0ebthfetjjsfim6qpnm49',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771651,1706771799,0,'username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771798;s:5:\"token\";s:32:\"08884622aa035f94610e2c62db843236\";}','localhost'),('jvrrku6fv8cifg8gcro2b2g2hu',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772899,1706772910,0,'username|s:8:\"jjanssen\";csrf|a:2:{s:9:\"timestamp\";i:1706772910;s:5:\"token\";s:32:\"76eb5302eca8800675dd7751bd8533e7\";}','localhost'),('k0jin5k4mg4ojj9k5ro4k6n6k7',21,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772412,1706772423,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772423;s:5:\"token\";s:32:\"d872fdfb4cc8af9fe343f8b2b9e65874\";}username|s:6:\"ddiouf\";userId|i:21;','localhost'),('kbnilodbh08u664put4ee76am7',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771800,1706771809,0,'username|s:5:\"rvaca\";csrf|a:2:{s:9:\"timestamp\";i:1706771809;s:5:\"token\";s:32:\"adf564706b189c6f7ea5ea280f675d6e\";}','localhost'),('l3g55b7fa9o3hk5odilvb5jo4a',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772241,1706772248,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772248;s:5:\"token\";s:32:\"1ce025c9f96bf0079f5964b967146741\";}','localhost'),('lbtf9jfla9ask2h80t5uk8alq2',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773078,1706773148,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773148;s:5:\"token\";s:32:\"877e600f985fdfa936cfe82c1cac16b8\";}','localhost'),('lhar708dj1opcebq4u1u7hkbmb',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772186,1706772194,0,'username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772194;s:5:\"token\";s:32:\"8e865f7906c64d45335184d149ea5bf6\";}','localhost'),('lnpc1ecde1vgf0tli31j50bf66',22,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772488,1706772499,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772499;s:5:\"token\";s:32:\"b893105a1b012d6bb40b5bc99421b48b\";}username|s:9:\"dphillips\";userId|i:22;','localhost'),('lr371g1lutqjdvfdqslk8n5460',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771571,1706771597,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771597;s:5:\"token\";s:32:\"75993d8fccaf61e19685a5a0b36cdd52\";}','localhost'),('neu2d00cobq5ag37q633kqte7s',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772861,1706772898,0,'username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772898;s:5:\"token\";s:32:\"c192ea1ab1e5061edd01d149fd11eafa\";}','localhost'),('ni9m4t6ts15j7lfvtsa06ki3hs',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773231,1706773256,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773256;s:5:\"token\";s:32:\"5e7cec4710ff14f2d365a2dbde34e2ea\";}','localhost'),('p01qfejhti3t0crpf1d8ehtoc3',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772911,1706772921,0,'username|s:7:\"amccrae\";csrf|a:2:{s:9:\"timestamp\";i:1706772921;s:5:\"token\";s:32:\"56e38c1104481fb96b0e5e19e838fb1f\";}','localhost'),('pa045kr75kaug0tie8eqei8vjm',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772762,1706772772,0,'username|s:7:\"amccrae\";csrf|a:2:{s:9:\"timestamp\";i:1706772772;s:5:\"token\";s:32:\"3145735e669e85e0b4f767357580ad3d\";}','localhost'),('pf93e409vbhvctkm8g2a5pk01g',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772329,1706772336,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772337;s:5:\"token\";s:32:\"870d41efb31db6eb2ad43e46e6c61d58\";}','localhost'),('pp4prcecioucuegm5madoibe9i',29,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772848,1706772859,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772859;s:5:\"token\";s:32:\"ad303802472d5a98fee209cc8ebf1a7e\";}username|s:8:\"lkumiega\";userId|i:29;','localhost'),('prvr47dugtl3rio1mbhbk4ludp',20,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772396,1706772408,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772408;s:5:\"token\";s:32:\"b43da2a0a86e05a501ac8464cd09a3dc\";}username|s:12:\"cmontgomerie\";userId|i:20;','localhost'),('q04m6k23v4mmeocnju32n3sui8',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771841,1706771854,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771854;s:5:\"token\";s:32:\"d7650b3ad93350909ab381619fe9071c\";}','localhost'),('rre6eql7f614kcemv9t207i4qc',25,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772641,1706772652,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772652;s:5:\"token\";s:32:\"cdf659de8f57a28776525bf6a80f7e4d\";}username|s:9:\"fpaglieri\";userId|i:25;','localhost'),('s1fp742m4ebtlpa4p45r2dv5i3',30,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772961,1706772973,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772973;s:5:\"token\";s:32:\"ea5261800c0a125c2e852b123023e472\";}username|s:7:\"pdaniel\";userId|i:30;','localhost'),('sn13l2ktr7ajmctubrupp9iu30',28,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772803,1706772813,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772813;s:5:\"token\";s:32:\"5a0b003b859ca7b13c2ca76b94ad7620\";}username|s:12:\"lchristopher\";userId|i:28;','localhost'),('t9jkmgdol50m4iiil901et33vp',19,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772340,1706772351,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772351;s:5:\"token\";s:32:\"d4c47b115e88949527e86128e4ae6b7b\";}username|s:8:\"ckwantes\";userId|i:19;','localhost'),('trj508h82esgoqggjulaa9aoto',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772989,1706773046,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706773046;s:5:\"token\";s:32:\"aa86d8044dce70363c88a41358d2c886\";}','localhost'),('tvrt8sqitf1hapdtgbhrjiiu7s',3,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772022,1706772145,0,'userId|i:3;username|s:7:\"dbarnes\";csrf|a:2:{s:9:\"timestamp\";i:1706772145;s:5:\"token\";s:32:\"0a928ab33b7314d34156ab373b3ab4a4\";}','localhost'),('ueo5kjs6hhvrtr2j953p0u9tea',35,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773293,1706773303,0,'csrf|a:2:{s:9:\"timestamp\";i:1706773303;s:5:\"token\";s:32:\"2359b752a2d25123c1f09e1f850335f9\";}username|s:6:\"zwoods\";userId|i:35;','localhost'),('ufdd0d2o3c3935kkn1s6ai8e7v',17,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772147,1706772155,0,'userId|i:17;username|s:10:\"amwandenga\";csrf|a:2:{s:9:\"timestamp\";i:1706772155;s:5:\"token\";s:32:\"73fdca4a90cc6d004793f3e3b38b71b1\";}','localhost'),('uqd1fsgl92d552g18k74i8beet',24,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706772625,1706772637,0,'csrf|a:2:{s:9:\"timestamp\";i:1706772637;s:5:\"token\";s:32:\"f0b52fd570e5f1c3eb19cf5dd976894f\";}username|s:7:\"eostrom\";userId|i:24;','localhost'),('uvehck01fp8mekvov1is0fsae0',1,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706771814,1706771838,0,'userId|i:1;username|s:5:\"admin\";csrf|a:2:{s:9:\"timestamp\";i:1706771837;s:5:\"token\";s:32:\"f3d4f4adec3dc13d6e880a729d9970bd\";}','localhost'),('v79913l71laphg6heq6vtvt6h3',32,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773050,1706773061,0,'csrf|a:2:{s:9:\"timestamp\";i:1706773061;s:5:\"token\";s:32:\"6b6346375c55ee9097485997b2f3970b\";}username|s:6:\"rrossi\";userId|i:32;','localhost'),('vcsdh8amho1h7uhiqd8mdi8d4c',33,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/120.0.0.0 Safari/537.36',1706773065,1706773076,0,'csrf|a:2:{s:9:\"timestamp\";i:1706773076;s:5:\"token\";s:32:\"84d0cefad0b542ee2dcbf3ad14872a71\";}username|s:12:\"vkarbasizaed\";userId|i:33;','localhost'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `site` ( `site_id` bigint unsigned NOT NULL AUTO_INCREMENT, `redirect` bigint 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 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=utf8mb3 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\",\"fr_CA\"]','[\"en\",\"fr_CA\"]',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `site_settings` ( `site_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `setting_name` varchar(255) NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_value` mediumtext, PRIMARY KEY (`site_setting_id`), UNIQUE KEY `site_settings_unique` (`setting_name`,`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 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','pkpadmin@mailinator.com'),(2,'contactName','en','Open Journal Systems'),(3,'contactName','fr_CA','Open Journal Systems'),(4,'compressStatsLogs','','0'),(5,'enableGeoUsageStats','','disabled'),(6,'enableInstitutionUsageStats','','0'),(7,'keepDailyUsageStats','','0'),(8,'isSiteSushiPlatform','','0'),(9,'isSushiApiPublic','','1'),(10,'disableSharedReviewerStatistics','','0'),(11,'themePluginPath','','default'),(12,'uniqueSiteId','','33C0E0BB-E84A-4010-90C3-682A186AD86F'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stage_assignments` ( `stage_assignment_id` bigint NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `user_group_id` bigint NOT NULL, `user_id` bigint NOT NULL, `date_assigned` datetime NOT NULL, `recommend_only` smallint NOT NULL DEFAULT '0', `can_change_metadata` smallint 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 AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `stage_assignments` VALUES (1,1,14,17,'2024-02-01 07:22:42',0,1),(2,1,3,3,'2024-02-01 07:19:03',0,1),(3,1,5,4,'2024-02-01 07:19:03',0,1),(4,1,5,5,'2024-02-01 07:24:29',1,0),(5,1,7,12,'2024-02-01 07:19:59',0,0),(6,1,11,14,'2024-02-01 07:20:14',0,0),(7,1,13,16,'2024-02-01 07:20:19',0,0),(8,2,14,18,'2024-02-01 07:24:49',0,0),(9,2,3,3,'2024-02-01 07:24:49',0,1),(10,2,5,4,'2024-02-01 07:24:49',0,1),(11,2,5,5,'2024-02-01 07:24:49',0,1),(12,2,5,6,'2024-02-01 07:25:08',1,0),(13,3,14,19,'2024-02-01 07:25:51',0,0),(14,3,3,3,'2024-02-01 07:25:51',0,1),(15,3,5,4,'2024-02-01 07:25:51',0,1),(16,3,5,5,'2024-02-01 07:25:51',0,1),(17,3,7,11,'2024-02-01 07:26:31',0,0),(18,4,14,20,'2024-02-01 07:26:48',0,0),(19,4,3,3,'2024-02-01 07:26:48',0,1),(20,4,5,4,'2024-02-01 07:26:48',0,1),(21,4,5,5,'2024-02-01 07:26:48',0,1),(22,5,14,21,'2024-02-01 07:27:03',0,0),(23,5,3,3,'2024-02-01 07:27:03',0,1),(24,5,5,4,'2024-02-01 07:27:03',0,1),(25,5,5,5,'2024-02-01 07:27:03',0,1),(26,5,7,11,'2024-02-01 07:27:44',0,0),(27,5,11,13,'2024-02-01 07:27:59',0,0),(28,5,13,15,'2024-02-01 07:28:03',0,0),(29,6,14,22,'2024-02-01 07:28:19',0,0),(30,6,3,3,'2024-02-01 07:28:19',0,1),(31,6,5,4,'2024-02-01 07:28:19',0,1),(32,6,5,5,'2024-02-01 07:28:19',0,1),(33,6,7,11,'2024-02-01 07:29:01',0,0),(34,6,11,13,'2024-02-01 07:29:16',0,0),(35,7,14,23,'2024-02-01 07:29:32',0,0),(36,7,3,3,'2024-02-01 07:29:32',0,1),(37,7,5,4,'2024-02-01 07:29:32',0,1),(38,7,5,5,'2024-02-01 07:29:32',0,1),(39,8,14,24,'2024-02-01 07:30:37',0,0),(40,8,3,3,'2024-02-01 07:30:37',0,1),(41,8,5,4,'2024-02-01 07:30:37',0,1),(42,8,5,5,'2024-02-01 07:30:37',0,1),(43,9,14,25,'2024-02-01 07:30:52',0,0),(44,9,3,3,'2024-02-01 07:30:52',0,1),(45,9,5,6,'2024-02-01 07:30:52',0,1),(46,9,7,12,'2024-02-01 07:31:34',0,0),(47,9,11,14,'2024-02-01 07:31:49',0,0),(48,9,13,16,'2024-02-01 07:31:54',0,0),(49,10,14,26,'2024-02-01 07:32:10',0,0),(50,10,3,3,'2024-02-01 07:32:10',0,1),(51,10,5,4,'2024-02-01 07:32:10',0,1),(52,10,5,5,'2024-02-01 07:32:10',0,1),(53,11,14,27,'2024-02-01 07:33:19',0,0),(54,11,3,3,'2024-02-01 07:33:19',0,1),(55,11,5,4,'2024-02-01 07:33:19',0,1),(56,11,5,5,'2024-02-01 07:33:19',0,1),(57,12,14,28,'2024-02-01 07:33:34',0,0),(58,12,3,3,'2024-02-01 07:33:34',0,1),(59,12,5,4,'2024-02-01 07:33:34',0,1),(60,12,5,5,'2024-02-01 07:33:34',0,1),(61,13,14,29,'2024-02-01 07:34:19',0,0),(62,13,3,3,'2024-02-01 07:34:19',0,1),(63,13,5,4,'2024-02-01 07:34:19',0,1),(64,13,5,5,'2024-02-01 07:34:19',0,1),(65,14,14,30,'2024-02-01 07:36:13',0,0),(66,14,3,3,'2024-02-01 07:36:13',0,1),(67,14,5,4,'2024-02-01 07:36:13',0,1),(68,14,5,5,'2024-02-01 07:36:13',0,1),(69,15,14,31,'2024-02-01 07:36:27',0,0),(70,15,3,3,'2024-02-01 07:36:27',0,1),(71,15,5,4,'2024-02-01 07:36:27',0,1),(72,15,5,5,'2024-02-01 07:36:27',0,1),(73,15,7,12,'2024-02-01 07:37:11',0,0),(74,15,11,14,'2024-02-01 07:37:25',0,0),(75,16,14,32,'2024-02-01 07:37:41',0,0),(76,16,3,3,'2024-02-01 07:37:41',0,1),(77,16,5,4,'2024-02-01 07:37:41',0,1),(78,16,5,5,'2024-02-01 07:37:41',0,1),(79,17,14,33,'2024-02-01 07:37:56',0,0),(80,17,3,3,'2024-02-01 07:37:56',0,1),(81,17,5,4,'2024-02-01 07:37:56',0,1),(82,17,5,5,'2024-02-01 07:37:56',0,1),(83,17,7,11,'2024-02-01 07:38:40',0,0),(84,17,11,13,'2024-02-01 07:38:55',0,0),(85,17,13,15,'2024-02-01 07:39:00',0,0),(86,18,14,34,'2024-02-01 07:41:11',0,0),(87,18,3,3,'2024-02-01 07:41:11',0,1),(88,18,5,4,'2024-02-01 07:41:11',0,1),(89,18,5,5,'2024-02-01 07:41:11',0,1),(90,19,14,35,'2024-02-01 07:41:44',0,0),(91,19,3,3,'2024-02-01 07:41:44',0,1),(92,19,5,6,'2024-02-01 07:41:44',0,1),(93,19,7,12,'2024-02-01 07:42:28',0,0); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `static_page_settings` ( `static_page_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `static_page_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` longtext, `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=utf8mb3; /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `static_pages` ( `static_page_id` bigint NOT NULL AUTO_INCREMENT, `path` varchar(255) NOT NULL, `context_id` bigint 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=utf8mb3; /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `subeditor_submission_group` ( `subeditor_submission_group_id` bigint unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `assoc_id` bigint NOT NULL, `assoc_type` bigint NOT NULL, `user_id` bigint NOT NULL, `user_group_id` bigint 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 AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `subeditor_submission_group` VALUES (1,1,1,530,3,3),(2,1,1,530,4,5),(3,1,1,530,5,5),(4,1,2,530,3,3),(5,1,2,530,6,5); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_comments` ( `comment_id` bigint NOT NULL AUTO_INCREMENT, `comment_type` bigint DEFAULT NULL, `role_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `assoc_id` bigint NOT NULL, `author_id` bigint NOT NULL, `comment_title` text NOT NULL, `comments` text, `date_posted` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `viewable` smallint 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 AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_comments` VALUES (1,1,4096,7,10,8,'','Here are my review comments
','2024-02-01 07:30:20',NULL,1),(2,1,4096,10,15,9,'','Here are my review comments
','2024-02-01 07:32:51',NULL,1),(3,1,4096,10,16,10,'','Here are my review comments
','2024-02-01 07:33:03',NULL,1),(4,1,4096,13,19,7,'','Here are my review comments
','2024-02-01 07:35:09',NULL,1),(5,1,4096,13,20,9,'','Here are my review comments
','2024-02-01 07:35:21',NULL,1),(6,1,4096,13,21,10,'','Here are my review comments
','2024-02-01 07:35:33',NULL,1); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_file_revisions` ( `revision_id` bigint unsigned NOT NULL AUTO_INCREMENT, `submission_file_id` bigint unsigned NOT NULL, `file_id` bigint 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 AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_file_revisions` VALUES (1,1,1),(2,2,2),(3,3,3),(4,4,4),(5,5,5),(7,7,5),(8,8,4),(9,9,3),(10,10,1),(11,11,2),(12,12,7),(13,13,8),(14,14,8),(15,15,9),(16,16,9),(17,17,10),(18,18,11),(19,19,11),(20,20,12),(21,21,12),(22,22,13),(23,23,13),(24,24,14),(25,25,15),(26,26,15),(27,27,16),(28,28,16),(29,29,17),(30,30,18),(31,31,18),(32,32,19),(33,33,19),(34,34,20),(35,35,21),(36,36,21),(37,37,22),(38,38,23),(39,39,23),(40,40,24),(41,41,25),(42,42,26),(43,43,26); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_file_settings` ( `submission_file_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `submission_file_id` bigint unsigned NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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 AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_file_settings` VALUES (1,1,'en','name','Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence.pdf'),(2,2,'en','name','structured-interview-guide.odt'),(3,3,'en','name','response-evaluation-all-team-members-draft-after-edits-final-version-final.ods'),(4,4,'en','name','signalling-theory-dataset.pdf'),(5,5,'en','name','author-disclosure-form.docx'),(7,7,'en','name','author-disclosure-form.docx'),(8,8,'en','name','signalling-theory-dataset.pdf'),(9,9,'en','name','response-evaluation-all-team-members-draft-after-edits-final-version-final.ods'),(10,10,'en','name','Signalling Theory Dividends: A Review Of The Literature And Empirical Evidence.pdf'),(11,11,'en','name','structured-interview-guide.odt'),(12,12,'en','name','article.pdf'),(13,12,'fr_CA','name',''),(14,13,'en','name','The influence of lactation on the quantity and quality of cashmere production.pdf'),(15,14,'en','name','The influence of lactation on the quantity and quality of cashmere production.pdf'),(16,15,'en','name','The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence.pdf'),(17,16,'en','name','The Facets Of Job Satisfaction: A Nine-Nation Comparative Study Of Construct Equivalence.pdf'),(18,17,'en','name','Computer Skill Requirements for New and Existing Teachers: Implications for Policy and Practice.pdf'),(19,18,'en','name','Genetic transformation of forest trees.pdf'),(20,19,'en','name','Genetic transformation of forest trees.pdf'),(21,20,'en','name','Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement.pdf'),(22,21,'en','name','Investigating the Shared Background Required for Argument: A Critique of Fogelin\'s Thesis on Deep Disagreement.pdf'),(23,22,'en','name','Developing efficacy beliefs in the classroom.pdf'),(24,23,'en','name','Developing efficacy beliefs in the classroom.pdf'),(25,24,'en','name','Traditions and Trends in the Study of the Commons.pdf'),(26,25,'en','name','Hansen & Pinto: Reason Reclaimed.pdf'),(27,26,'en','name','Hansen & Pinto: Reason Reclaimed.pdf'),(28,27,'en','name','Condensing Water Availability Models to Focus on Specific Water Management Systems.pdf'),(29,28,'en','name','Condensing Water Availability Models to Focus on Specific Water Management Systems.pdf'),(30,29,'en','name','Learning Sustainable Design through Service.pdf'),(31,30,'en','name','Sodium butyrate improves growth performance of weaned piglets during the first period after weaning.pdf'),(32,31,'en','name','Sodium butyrate improves growth performance of weaned piglets during the first period after weaning.pdf'),(33,32,'en','name','Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions.pdf'),(34,33,'en','name','Hydrologic Connectivity in the Edwards Aquifer between San Marcos Springs and Barton Springs during 2009 Drought Conditions.pdf'),(35,34,'en','name','Towards Designing an Intercultural Curriculum: A Case Study from the Atlantic Coast of Nicaragua.pdf'),(36,35,'en','name','Yam diseases and its management in Nigeria.pdf'),(37,36,'en','name','Yam diseases and its management in Nigeria.pdf'),(38,37,'en','name','Influence of long-term nutrition with different dietary fats on fatty acid composition of heavy pigs backfat.pdf'),(39,38,'en','name','Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran.pdf'),(40,39,'en','name','Antimicrobial, heavy metal resistance and plasmid profile of coliforms isolated from nosocomial infections in a hospital in Isfahan, Iran.pdf'),(41,40,'en','name','article.pdf'),(42,40,'fr_CA','name',''),(43,41,'en','name','Self-Organization in Multi-Level Institutions in Networked Environments.pdf'),(44,42,'en','name','Finocchiaro: Arguments About Arguments.pdf'),(45,43,'en','name','Finocchiaro: Arguments About Arguments.pdf'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_files` ( `submission_file_id` bigint unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `file_id` bigint unsigned NOT NULL, `source_submission_file_id` bigint unsigned DEFAULT NULL, `genre_id` bigint DEFAULT NULL, `file_stage` bigint NOT NULL, `direct_sales_price` varchar(255) DEFAULT NULL, `sales_type` varchar(255) DEFAULT NULL, `viewable` smallint DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `uploader_user_id` bigint DEFAULT NULL, `assoc_type` bigint DEFAULT NULL, `assoc_id` bigint 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 AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_files` VALUES (1,1,1,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:18:16','2024-02-01 07:18:16',17,NULL,NULL),(2,1,2,NULL,12,2,NULL,NULL,NULL,'2024-02-01 07:18:17','2024-02-01 07:18:18',17,NULL,NULL),(3,1,3,NULL,7,2,NULL,NULL,NULL,'2024-02-01 07:18:19','2024-02-01 07:18:20',17,NULL,NULL),(4,1,4,NULL,7,2,NULL,NULL,NULL,'2024-02-01 07:18:20','2024-02-01 07:18:21',17,NULL,NULL),(5,1,5,NULL,12,2,NULL,NULL,NULL,'2024-02-01 07:18:21','2024-02-01 07:18:23',17,NULL,NULL),(7,1,5,5,12,4,NULL,NULL,NULL,'2024-02-01 07:19:22','2024-02-01 07:19:22',17,523,1),(8,1,4,4,7,4,NULL,NULL,NULL,'2024-02-01 07:19:22','2024-02-01 07:19:22',17,523,1),(9,1,3,3,7,4,NULL,NULL,NULL,'2024-02-01 07:19:23','2024-02-01 07:19:23',17,523,1),(10,1,1,1,1,4,NULL,NULL,NULL,'2024-02-01 07:19:23','2024-02-01 07:19:23',17,523,1),(11,1,2,2,12,4,NULL,NULL,NULL,'2024-02-01 07:19:23','2024-02-01 07:19:23',17,523,1),(12,1,7,NULL,1,10,NULL,NULL,NULL,'2024-02-01 07:22:24','2024-02-01 07:22:25',3,521,1),(13,2,8,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:24:48','2024-02-01 07:24:48',18,NULL,NULL),(14,2,8,13,1,4,NULL,NULL,NULL,'2024-02-01 07:25:01','2024-02-01 07:25:01',18,523,2),(15,3,9,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:25:50','2024-02-01 07:25:50',19,NULL,NULL),(16,3,9,15,1,4,NULL,NULL,NULL,'2024-02-01 07:26:03','2024-02-01 07:26:03',19,523,3),(17,4,10,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:26:47','2024-02-01 07:26:47',20,NULL,NULL),(18,5,11,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:27:02','2024-02-01 07:27:02',21,NULL,NULL),(19,5,11,18,1,4,NULL,NULL,NULL,'2024-02-01 07:27:15','2024-02-01 07:27:15',21,523,4),(20,6,12,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:28:18','2024-02-01 07:28:19',22,NULL,NULL),(21,6,12,20,1,4,NULL,NULL,NULL,'2024-02-01 07:28:32','2024-02-01 07:28:32',22,523,5),(22,7,13,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:29:31','2024-02-01 07:29:31',23,NULL,NULL),(23,7,13,22,1,4,NULL,NULL,NULL,'2024-02-01 07:29:45','2024-02-01 07:29:45',23,523,6),(24,8,14,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:30:35','2024-02-01 07:30:36',24,NULL,NULL),(25,9,15,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:30:50','2024-02-01 07:30:51',25,NULL,NULL),(26,9,15,25,1,4,NULL,NULL,NULL,'2024-02-01 07:31:05','2024-02-01 07:31:05',25,523,7),(27,10,16,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:32:09','2024-02-01 07:32:09',26,NULL,NULL),(28,10,16,27,1,4,NULL,NULL,NULL,'2024-02-01 07:32:24','2024-02-01 07:32:24',26,523,8),(29,11,17,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:33:17','2024-02-01 07:33:17',27,NULL,NULL),(30,12,18,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:33:32','2024-02-01 07:33:33',28,NULL,NULL),(31,12,18,30,1,4,NULL,NULL,NULL,'2024-02-01 07:33:47','2024-02-01 07:33:47',28,523,9),(32,13,19,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:34:18','2024-02-01 07:34:18',29,NULL,NULL),(33,13,19,32,1,4,NULL,NULL,NULL,'2024-02-01 07:34:33','2024-02-01 07:34:33',29,523,10),(34,14,20,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:36:11','2024-02-01 07:36:12',30,NULL,NULL),(35,15,21,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:36:26','2024-02-01 07:36:26',31,NULL,NULL),(36,15,21,35,1,4,NULL,NULL,NULL,'2024-02-01 07:36:42','2024-02-01 07:36:42',31,523,11),(37,16,22,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:37:40','2024-02-01 07:37:40',32,NULL,NULL),(38,17,23,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:37:55','2024-02-01 07:37:55',33,NULL,NULL),(39,17,23,38,1,4,NULL,NULL,NULL,'2024-02-01 07:38:11','2024-02-01 07:38:11',33,523,12),(40,17,24,NULL,1,10,NULL,NULL,NULL,'2024-02-01 07:39:07','2024-02-01 07:39:08',3,521,3),(41,18,25,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:41:10','2024-02-01 07:41:10',34,NULL,NULL),(42,19,26,NULL,1,2,NULL,NULL,NULL,'2024-02-01 07:41:42','2024-02-01 07:41:43',35,NULL,NULL),(43,19,26,42,1,4,NULL,NULL,NULL,'2024-02-01 07:41:59','2024-02-01 07:41:59',35,523,13); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_search_keyword_list` ( `keyword_id` bigint NOT NULL AUTO_INCREMENT, `keyword_text` varchar(60) NOT NULL, PRIMARY KEY (`keyword_id`), UNIQUE KEY `submission_search_keyword_text` (`keyword_text`) ) ENGINE=InnoDB AUTO_INCREMENT=115 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_search_keyword_list` VALUES (1,'alan'),(6,'amina'),(91,'antibiotics'),(58,'antimicrobial'),(4,'cape'),(99,'cases'),(98,'clinical'),(82,'coli'),(64,'coliforms'),(77,'compared'),(95,'concentration'),(25,'conclusive'),(27,'conflicting'),(108,'conjugative'),(104,'consistent'),(45,'continuous'),(40,'corporate'),(44,'decisions'),(51,'development'),(92,'difference'),(43,'distribution'),(33,'dividend'),(12,'dividends'),(31,'economists'),(15,'empirical'),(109,'encoding'),(73,'enterobacteriacea'),(81,'escherichia'),(49,'evaluation'),(16,'evidence'),(36,'existing'),(76,'faeces'),(78,'fifteen'),(30,'financial'),(42,'financing'),(22,'firm'),(46,'function'),(20,'future'),(106,'group'),(34,'guidance'),(74,'healthy'),(59,'heavy'),(68,'hospital'),(75,'human'),(80,'identified'),(29,'implications'),(113,'infection'),(67,'infections'),(94,'inhibitory'),(48,'intuitive'),(41,'investment'),(38,'investors'),(70,'iran'),(69,'isfahan'),(65,'isolated'),(79,'isolates'),(26,'issue'),(56,'karbasizaed'),(84,'kelebsiella'),(14,'literature'),(35,'management'),(7,'mansour'),(60,'metal'),(100,'metals'),(96,'mic'),(93,'minimal'),(112,'multidrug'),(90,'multiple'),(2,'mwandenga'),(8,'nicolas'),(66,'nosocomial'),(24,'offer'),(107,'pattern'),(71,'patterns'),(87,'percent'),(103,'persons'),(62,'plasmid'),(85,'pneumoniae'),(28,'policy'),(89,'possess'),(37,'potential'),(32,'practical'),(50,'professional'),(63,'profile'),(72,'profiles'),(21,'prospects'),(23,'recent'),(110,'recovered'),(114,'region'),(105,'relationship'),(47,'rely'),(83,'remaining'),(61,'resistance'),(111,'results'),(13,'review'),(9,'riouf'),(86,'seventy'),(39,'shareholding'),(19,'signal'),(17,'signaling'),(10,'signalling'),(101,'significant'),(52,'social'),(88,'strains'),(18,'suggests'),(57,'tehran'),(11,'theory'),(102,'tolerant'),(5,'town'),(53,'transformation'),(3,'university'),(55,'vajiheh'),(97,'values'),(54,'version'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_search_object_keywords` ( `submission_search_object_keyword_id` bigint unsigned NOT NULL AUTO_INCREMENT, `object_id` bigint NOT NULL, `keyword_id` bigint NOT NULL, `pos` int 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 AUTO_INCREMENT=741 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_search_object_keywords` VALUES (251,9,1,0),(252,9,2,1),(253,9,3,2),(254,9,4,3),(255,9,5,4),(256,9,6,5),(257,9,7,6),(258,9,8,7),(259,9,9,8),(260,10,10,0),(261,10,11,1),(262,10,12,2),(263,10,13,3),(264,10,14,4),(265,10,15,5),(266,10,16,6),(267,11,17,0),(268,11,11,1),(269,11,18,2),(270,11,12,3),(271,11,19,4),(272,11,20,5),(273,11,21,6),(274,11,22,7),(275,11,23,8),(276,11,15,9),(277,11,16,10),(278,11,24,11),(279,11,25,12),(280,11,16,13),(281,11,26,14),(282,11,27,15),(283,11,28,16),(284,11,29,17),(285,11,30,18),(286,11,31,19),(287,11,32,20),(288,11,33,21),(289,11,28,22),(290,11,34,23),(291,11,35,24),(292,11,36,25),(293,11,37,26),(294,11,38,27),(295,11,39,28),(296,11,40,29),(297,11,41,30),(298,11,42,31),(299,11,43,32),(300,11,44,33),(301,11,45,34),(302,11,46,35),(303,11,35,36),(304,11,33,37),(305,11,44,38),(306,11,47,39),(307,11,48,40),(308,11,49,41),(309,13,50,0),(310,13,51,1),(311,13,52,2),(312,13,53,3),(634,41,55,0),(635,41,56,1),(636,41,3,2),(637,41,57,3),(638,42,58,0),(639,42,59,1),(640,42,60,2),(641,42,61,3),(642,42,62,4),(643,42,63,5),(644,42,64,6),(645,42,65,7),(646,42,66,8),(647,42,67,9),(648,42,68,10),(649,42,69,11),(650,42,70,12),(651,43,58,0),(652,43,59,1),(653,43,60,2),(654,43,61,3),(655,43,71,4),(656,43,62,5),(657,43,72,6),(658,43,64,7),(659,43,73,8),(660,43,65,9),(661,43,66,10),(662,43,67,11),(663,43,74,12),(664,43,75,13),(665,43,76,14),(666,43,77,15),(667,43,78,16),(668,43,79,17),(669,43,66,18),(670,43,67,19),(671,43,80,20),(672,43,81,21),(673,43,82,22),(674,43,83,23),(675,43,84,24),(676,43,85,25),(677,43,86,26),(678,43,87,27),(679,43,88,28),(680,43,65,29),(681,43,66,30),(682,43,67,31),(683,43,89,32),(684,43,90,33),(685,43,61,34),(686,43,91,35),(687,43,77,36),(688,43,88,37),(689,43,74,38),(690,43,75,39),(691,43,76,40),(692,43,92,41),(693,43,93,42),(694,43,94,43),(695,43,95,44),(696,43,96,45),(697,43,97,46),(698,43,88,47),(699,43,98,48),(700,43,99,49),(701,43,76,50),(702,43,59,51),(703,43,100,52),(704,43,101,53),(705,43,88,54),(706,43,65,55),(707,43,68,56),(708,43,102,57),(709,43,59,58),(710,43,60,59),(711,43,74,60),(712,43,103,61),(713,43,104,62),(714,43,105,63),(715,43,62,64),(716,43,63,65),(717,43,106,66),(718,43,58,67),(719,43,61,68),(720,43,107,69),(721,43,108,70),(722,43,62,71),(723,43,109,72),(724,43,61,73),(725,43,59,74),(726,43,100,75),(727,43,91,76),(728,43,110,77),(729,43,88,78),(730,43,65,79),(731,43,66,80),(732,43,67,81),(733,43,111,82),(734,43,112,83),(735,43,61,84),(736,43,64,85),(737,43,37,86),(738,43,66,87),(739,43,113,88),(740,43,114,89); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_search_objects` ( `object_id` bigint NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `type` int NOT NULL COMMENT 'Type of item. E.g., abstract, fulltext, etc.', `assoc_id` bigint 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 AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submission_search_objects` VALUES (9,1,1,NULL),(10,1,2,NULL),(11,1,4,NULL),(12,1,16,NULL),(13,1,17,NULL),(14,1,8,NULL),(15,1,32,NULL),(16,1,64,NULL),(41,17,1,NULL),(42,17,2,NULL),(43,17,4,NULL),(44,17,16,NULL),(45,17,17,NULL),(46,17,8,NULL),(47,17,32,NULL),(48,17,64,NULL); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submission_settings` ( `submission_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `submissions` ( `submission_id` bigint NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `current_publication_id` bigint DEFAULT NULL, `date_last_activity` datetime DEFAULT NULL, `date_submitted` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `stage_id` bigint NOT NULL DEFAULT '1', `locale` varchar(14) DEFAULT NULL, `status` smallint NOT NULL DEFAULT '1', `submission_progress` varchar(50) NOT NULL DEFAULT 'start', `work_type` smallint 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 AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb3 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 */; INSERT INTO `submissions` VALUES (1,1,1,'2024-02-01 07:24:29','2024-02-01 07:19:03','2024-02-01 07:19:03',5,'en',3,'',0),(2,1,3,'2024-02-01 07:25:25','2024-02-01 07:24:49','2024-02-01 07:24:49',3,'en',1,'',0),(3,1,4,'2024-02-01 07:26:32','2024-02-01 07:25:51','2024-02-01 07:25:51',4,'en',1,'',0),(4,1,5,'2024-02-01 07:26:48','2024-02-01 07:26:48','2024-02-01 07:26:48',1,'en',1,'',0),(5,1,6,'2024-02-01 07:28:03','2024-02-01 07:27:03','2024-02-01 07:27:03',5,'en',1,'',0),(6,1,7,'2024-02-01 07:29:16','2024-02-01 07:28:19','2024-02-01 07:28:19',5,'en',1,'',0),(7,1,8,'2024-02-01 07:30:20','2024-02-01 07:29:32','2024-02-01 07:29:32',3,'en',1,'',0),(8,1,9,'2024-02-01 07:30:37','2024-02-01 07:30:37','2024-02-01 07:30:37',1,'en',1,'',0),(9,1,10,'2024-02-01 07:31:54','2024-02-01 07:30:52','2024-02-01 07:30:52',5,'en',1,'',0),(10,1,11,'2024-02-01 07:33:03','2024-02-01 07:32:10','2024-02-01 07:32:10',3,'en',1,'',0),(11,1,12,'2024-02-01 07:33:19','2024-02-01 07:33:19','2024-02-01 07:33:19',1,'en',1,'',0),(12,1,13,'2024-02-01 07:34:04','2024-02-01 07:33:33','2024-02-01 07:33:33',3,'en',1,'',0),(13,1,14,'2024-02-01 07:35:52','2024-02-01 07:34:19','2024-02-01 07:34:19',3,'en',1,'',0),(14,1,15,'2024-02-01 07:36:13','2024-02-01 07:36:13','2024-02-01 07:36:13',1,'en',1,'',0),(15,1,16,'2024-02-01 07:37:25','2024-02-01 07:36:27','2024-02-01 07:36:27',5,'en',1,'',0),(16,1,17,'2024-02-01 07:37:41','2024-02-01 07:37:41','2024-02-01 07:37:41',1,'en',1,'',0),(17,1,18,'2024-02-01 07:40:45','2024-02-01 07:37:56','2024-02-01 07:37:56',5,'en',3,'',0),(18,1,19,'2024-02-01 07:41:11','2024-02-01 07:41:11','2024-02-01 07:41:11',1,'en',4,'',0),(19,1,20,'2024-02-01 07:42:28','2024-02-01 07:41:44','2024-02-01 07:41:44',4,'en',1,'',0); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `subscription_type_settings` ( `subscription_type_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `type_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, `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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `subscription_types` ( `type_id` bigint NOT NULL AUTO_INCREMENT, `journal_id` bigint NOT NULL, `cost` double(8,2) NOT NULL, `currency_code_alpha` varchar(3) NOT NULL, `duration` smallint DEFAULT NULL, `format` smallint NOT NULL, `institutional` smallint NOT NULL DEFAULT '0', `membership` smallint NOT NULL DEFAULT '0', `disable_public_display` smallint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `subscriptions` ( `subscription_id` bigint NOT NULL AUTO_INCREMENT, `journal_id` bigint NOT NULL, `user_id` bigint NOT NULL, `type_id` bigint NOT NULL, `date_start` date DEFAULT NULL, `date_end` datetime DEFAULT NULL, `status` smallint NOT NULL DEFAULT '1', `membership` varchar(40) DEFAULT NULL, `reference_number` varchar(40) DEFAULT NULL, `notes` text, 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `temporary_files` ( `file_id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint NOT NULL, `file_name` varchar(90) NOT NULL, `file_type` varchar(255) DEFAULT NULL, `file_size` bigint 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 DEFAULT CHARSET=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `usage_stats_institution_temporary_records` ( `usage_stats_temp_institution_id` bigint unsigned NOT NULL AUTO_INCREMENT, `load_id` varchar(50) NOT NULL, `line_number` bigint NOT NULL, `institution_id` bigint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `usage_stats_total_temporary_records` ( `usage_stats_temp_total_id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL, `ip` varchar(64) NOT NULL, `user_agent` varchar(255) NOT NULL, `line_number` bigint NOT NULL, `canonical_url` varchar(255) NOT NULL, `issue_id` bigint DEFAULT NULL, `issue_galley_id` bigint DEFAULT NULL, `context_id` bigint NOT NULL, `submission_id` bigint DEFAULT NULL, `representation_id` bigint DEFAULT NULL, `submission_file_id` bigint unsigned DEFAULT NULL, `assoc_type` bigint NOT NULL, `file_type` smallint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `usage_stats_unique_item_investigations_temporary_records` ( `usage_stats_temp_unique_item_id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL, `ip` varchar(64) NOT NULL, `user_agent` varchar(255) NOT NULL, `line_number` bigint NOT NULL, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `representation_id` bigint DEFAULT NULL, `submission_file_id` bigint unsigned DEFAULT NULL, `assoc_type` bigint NOT NULL, `file_type` smallint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `usage_stats_unique_item_requests_temporary_records` ( `usage_stats_temp_item_id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL, `ip` varchar(64) NOT NULL, `user_agent` varchar(255) NOT NULL, `line_number` bigint NOT NULL, `context_id` bigint NOT NULL, `submission_id` bigint NOT NULL, `representation_id` bigint DEFAULT NULL, `submission_file_id` bigint unsigned DEFAULT NULL, `assoc_type` bigint NOT NULL, `file_type` smallint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_group_settings` ( `user_group_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_group_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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=105 DEFAULT CHARSET=utf8mb3 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,1,'fr_CA','name','Administrateur-trice du site'),(3,2,'','nameLocaleKey','default.groups.name.manager'),(4,2,'','abbrevLocaleKey','default.groups.abbrev.manager'),(5,2,'en','abbrev','JM'),(6,2,'en','name','Journal manager'),(7,2,'fr_CA','abbrev','DIR'),(8,2,'fr_CA','name','Directeur-trice de la revue'),(9,3,'','nameLocaleKey','default.groups.name.editor'),(10,3,'','abbrevLocaleKey','default.groups.abbrev.editor'),(11,3,'en','abbrev','JE'),(12,3,'en','name','Journal editor'),(13,3,'fr_CA','abbrev','RÉD'),(14,3,'fr_CA','name','Rédacteur-trice'),(15,4,'','nameLocaleKey','default.groups.name.productionEditor'),(16,4,'','abbrevLocaleKey','default.groups.abbrev.productionEditor'),(17,4,'en','abbrev','ProdE'),(18,4,'en','name','Production editor'),(19,4,'fr_CA','abbrev','DirProd'),(20,4,'fr_CA','name','Directeur-trice de production'),(21,5,'','nameLocaleKey','default.groups.name.sectionEditor'),(22,5,'','abbrevLocaleKey','default.groups.abbrev.sectionEditor'),(23,5,'en','abbrev','SecE'),(24,5,'en','name','Section editor'),(25,5,'fr_CA','abbrev','RÉDRUB'),(26,5,'fr_CA','name','Rédacteur-trice de rubrique'),(27,6,'','nameLocaleKey','default.groups.name.guestEditor'),(28,6,'','abbrevLocaleKey','default.groups.abbrev.guestEditor'),(29,6,'en','abbrev','GE'),(30,6,'en','name','Guest editor'),(31,6,'fr_CA','abbrev','RÉDINV'),(32,6,'fr_CA','name','Rédacteur-trice invité-e'),(33,7,'','nameLocaleKey','default.groups.name.copyeditor'),(34,7,'','abbrevLocaleKey','default.groups.abbrev.copyeditor'),(35,7,'en','abbrev','CE'),(36,7,'en','name','Copyeditor'),(37,7,'fr_CA','abbrev','RÉV'),(38,7,'fr_CA','name','Réviseur-e'),(39,8,'','nameLocaleKey','default.groups.name.designer'),(40,8,'','abbrevLocaleKey','default.groups.abbrev.designer'),(41,8,'en','abbrev','Design'),(42,8,'en','name','Designer'),(43,8,'fr_CA','abbrev','Design'),(44,8,'fr_CA','name','Designer'),(45,9,'','nameLocaleKey','default.groups.name.funding'),(46,9,'','abbrevLocaleKey','default.groups.abbrev.funding'),(47,9,'en','abbrev','FC'),(48,9,'en','name','Funding coordinator'),(49,9,'fr_CA','abbrev','CF'),(50,9,'fr_CA','name','Coordonnateur-trice du financement'),(51,10,'','nameLocaleKey','default.groups.name.indexer'),(52,10,'','abbrevLocaleKey','default.groups.abbrev.indexer'),(53,10,'en','abbrev','IND'),(54,10,'en','name','Indexer'),(55,10,'fr_CA','abbrev','Indx'),(56,10,'fr_CA','name','Indexeur-e'),(57,11,'','nameLocaleKey','default.groups.name.layoutEditor'),(58,11,'','abbrevLocaleKey','default.groups.abbrev.layoutEditor'),(59,11,'en','abbrev','LE'),(60,11,'en','name','Layout Editor'),(61,11,'fr_CA','abbrev','RespMP'),(62,11,'fr_CA','name','Responsable de la mise en page'),(63,12,'','nameLocaleKey','default.groups.name.marketing'),(64,12,'','abbrevLocaleKey','default.groups.abbrev.marketing'),(65,12,'en','abbrev','MS'),(66,12,'en','name','Marketing and sales coordinator'),(67,12,'fr_CA','abbrev','CVM'),(68,12,'fr_CA','name','Coordonnateur-trice des ventes et du marketing'),(69,13,'','nameLocaleKey','default.groups.name.proofreader'),(70,13,'','abbrevLocaleKey','default.groups.abbrev.proofreader'),(71,13,'en','abbrev','PR'),(72,13,'en','name','Proofreader'),(73,13,'fr_CA','abbrev','CorEp'),(74,13,'fr_CA','name','Correcteur-trice d\'épreuves'),(75,14,'','nameLocaleKey','default.groups.name.author'),(76,14,'','abbrevLocaleKey','default.groups.abbrev.author'),(77,14,'en','abbrev','AU'),(78,14,'en','name','Author'),(79,14,'fr_CA','abbrev','AU'),(80,14,'fr_CA','name','Auteur-e'),(81,15,'','nameLocaleKey','default.groups.name.translator'),(82,15,'','abbrevLocaleKey','default.groups.abbrev.translator'),(83,15,'en','abbrev','Trans'),(84,15,'en','name','Translator'),(85,15,'fr_CA','abbrev','Trad'),(86,15,'fr_CA','name','Traducteur-trice'),(87,16,'','nameLocaleKey','default.groups.name.externalReviewer'),(88,16,'','abbrevLocaleKey','default.groups.abbrev.externalReviewer'),(89,16,'en','abbrev','R'),(90,16,'en','name','Reviewer'),(91,16,'fr_CA','abbrev','ÉVAL'),(92,16,'fr_CA','name','Évaluateur-trice'),(93,17,'','nameLocaleKey','default.groups.name.reader'),(94,17,'','abbrevLocaleKey','default.groups.abbrev.reader'),(95,17,'en','abbrev','Read'),(96,17,'en','name','Reader'),(97,17,'fr_CA','abbrev','Lect'),(98,17,'fr_CA','name','Lecteur-trice'),(99,18,'','nameLocaleKey','default.groups.name.subscriptionManager'),(100,18,'','abbrevLocaleKey','default.groups.abbrev.subscriptionManager'),(101,18,'en','abbrev','SubM'),(102,18,'en','name','Subscription Manager'),(103,18,'fr_CA','abbrev','RespAB'),(104,18,'fr_CA','name','Responsable des abonnements'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_group_stage` ( `user_group_stage_id` bigint unsigned NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `user_group_id` bigint NOT NULL, `stage_id` bigint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_groups` ( `user_group_id` bigint NOT NULL AUTO_INCREMENT, `context_id` bigint NOT NULL, `role_id` bigint NOT NULL, `is_default` smallint NOT NULL DEFAULT '0', `show_title` smallint NOT NULL DEFAULT '1', `permit_self_registration` smallint NOT NULL DEFAULT '0', `permit_metadata_edit` smallint NOT NULL DEFAULT '0', `masthead` smallint 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=utf8mb3 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,0),(2,1,16,1,1,0,1,0),(3,1,16,1,1,0,1,1),(4,1,16,1,1,0,1,0),(5,1,17,1,1,0,1,1),(6,1,17,1,1,0,0,0),(7,1,4097,1,1,0,0,0),(8,1,4097,1,1,0,0,0),(9,1,4097,1,1,0,0,0),(10,1,4097,1,1,0,0,0),(11,1,4097,1,1,0,0,0),(12,1,4097,1,1,0,0,0),(13,1,4097,1,1,0,0,0),(14,1,65536,1,1,1,0,0),(15,1,65536,1,1,0,0,0),(16,1,4096,1,1,1,0,1),(17,1,1048576,1,1,1,0,0),(18,1,2097152,1,1,0,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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_interests` ( `user_interest_id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint NOT NULL, `controlled_vocab_entry_id` bigint 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=utf8mb3 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_settings` ( `user_setting_id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint NOT NULL, `locale` varchar(14) NOT NULL DEFAULT '', `setting_name` varchar(255) NOT NULL, `setting_value` mediumtext, 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=255 DEFAULT CHARSET=utf8mb3 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,2,'en','affiliation','Universidad Nacional Autónoma de México'),(4,2,'fr_CA','affiliation',''),(5,2,'en','biography',''),(6,2,'fr_CA','biography',''),(7,2,'en','familyName','Vaca'),(8,2,'fr_CA','familyName',''),(9,2,'en','givenName','Ramiro'),(10,2,'fr_CA','givenName',''),(11,2,'','orcid',''),(12,2,'en','preferredPublicName',''),(13,2,'fr_CA','preferredPublicName',''),(14,2,'en','signature',''),(15,2,'fr_CA','signature',''),(16,3,'en','affiliation','University of Melbourne'),(17,3,'fr_CA','affiliation',''),(18,3,'en','biography',''),(19,3,'fr_CA','biography',''),(20,3,'en','familyName','Barnes'),(21,3,'fr_CA','familyName',''),(22,3,'en','givenName','Daniel'),(23,3,'fr_CA','givenName',''),(24,3,'','orcid',''),(25,3,'en','preferredPublicName',''),(26,3,'fr_CA','preferredPublicName',''),(27,3,'en','signature',''),(28,3,'fr_CA','signature',''),(29,4,'en','affiliation','University of Chicago'),(30,4,'fr_CA','affiliation',''),(31,4,'en','biography',''),(32,4,'fr_CA','biography',''),(33,4,'en','familyName','Buskins'),(34,4,'fr_CA','familyName',''),(35,4,'en','givenName','David'),(36,4,'fr_CA','givenName',''),(37,4,'','orcid',''),(38,4,'en','preferredPublicName',''),(39,4,'fr_CA','preferredPublicName',''),(40,4,'en','signature',''),(41,4,'fr_CA','signature',''),(42,5,'en','affiliation','University of Toronto'),(43,5,'fr_CA','affiliation',''),(44,5,'en','biography',''),(45,5,'fr_CA','biography',''),(46,5,'en','familyName','Berardo'),(47,5,'fr_CA','familyName',''),(48,5,'en','givenName','Stephanie'),(49,5,'fr_CA','givenName',''),(50,5,'','orcid',''),(51,5,'en','preferredPublicName',''),(52,5,'fr_CA','preferredPublicName',''),(53,5,'en','signature',''),(54,5,'fr_CA','signature',''),(55,6,'en','affiliation','Kyoto University'),(56,6,'fr_CA','affiliation',''),(57,6,'en','biography',''),(58,6,'fr_CA','biography',''),(59,6,'en','familyName','Inoue'),(60,6,'fr_CA','familyName',''),(61,6,'en','givenName','Minoti'),(62,6,'fr_CA','givenName',''),(63,6,'','orcid',''),(64,6,'en','preferredPublicName',''),(65,6,'fr_CA','preferredPublicName',''),(66,6,'en','signature',''),(67,6,'fr_CA','signature',''),(68,7,'en','affiliation','Utrecht University'),(69,7,'fr_CA','affiliation',''),(70,7,'en','biography',''),(71,7,'fr_CA','biography',''),(72,7,'en','familyName','Janssen'),(73,7,'fr_CA','familyName',''),(74,7,'en','givenName','Julie'),(75,7,'fr_CA','givenName',''),(76,7,'','orcid',''),(77,7,'en','preferredPublicName',''),(78,7,'fr_CA','preferredPublicName',''),(79,7,'en','signature',''),(80,7,'fr_CA','signature',''),(81,8,'en','affiliation','McGill University'),(82,8,'fr_CA','affiliation',''),(83,8,'en','biography',''),(84,8,'fr_CA','biography',''),(85,8,'en','familyName','Hudson'),(86,8,'fr_CA','familyName',''),(87,8,'en','givenName','Paul'),(88,8,'fr_CA','givenName',''),(89,8,'','orcid',''),(90,8,'en','preferredPublicName',''),(91,8,'fr_CA','preferredPublicName',''),(92,8,'en','signature',''),(93,8,'fr_CA','signature',''),(94,9,'en','affiliation','University of Manitoba'),(95,9,'fr_CA','affiliation',''),(96,9,'en','biography',''),(97,9,'fr_CA','biography',''),(98,9,'en','familyName','McCrae'),(99,9,'fr_CA','familyName',''),(100,9,'en','givenName','Aisla'),(101,9,'fr_CA','givenName',''),(102,9,'','orcid',''),(103,9,'en','preferredPublicName',''),(104,9,'fr_CA','preferredPublicName',''),(105,9,'en','signature',''),(106,9,'fr_CA','signature',''),(107,10,'en','affiliation','State University of New York'),(108,10,'fr_CA','affiliation',''),(109,10,'en','biography',''),(110,10,'fr_CA','biography',''),(111,10,'en','familyName','Gallego'),(112,10,'fr_CA','familyName',''),(113,10,'en','givenName','Adela'),(114,10,'fr_CA','givenName',''),(115,10,'','orcid',''),(116,10,'en','preferredPublicName',''),(117,10,'fr_CA','preferredPublicName',''),(118,10,'en','signature',''),(119,10,'fr_CA','signature',''),(120,11,'en','affiliation','Ghent University'),(121,11,'fr_CA','affiliation',''),(122,11,'en','biography',''),(123,11,'fr_CA','biography',''),(124,11,'en','familyName','Fritz'),(125,11,'fr_CA','familyName',''),(126,11,'en','givenName','Maria'),(127,11,'fr_CA','givenName',''),(128,11,'','orcid',''),(129,11,'en','preferredPublicName',''),(130,11,'fr_CA','preferredPublicName',''),(131,11,'en','signature',''),(132,11,'fr_CA','signature',''),(133,12,'en','affiliation','Universidad de Chile'),(134,12,'fr_CA','affiliation',''),(135,12,'en','biography',''),(136,12,'fr_CA','biography',''),(137,12,'en','familyName','Vogt'),(138,12,'fr_CA','familyName',''),(139,12,'en','givenName','Sarah'),(140,12,'fr_CA','givenName',''),(141,12,'','orcid',''),(142,12,'en','preferredPublicName',''),(143,12,'fr_CA','preferredPublicName',''),(144,12,'en','signature',''),(145,12,'fr_CA','signature',''),(146,13,'en','affiliation','Duke University'),(147,13,'fr_CA','affiliation',''),(148,13,'en','biography',''),(149,13,'fr_CA','biography',''),(150,13,'en','familyName','Cox'),(151,13,'fr_CA','familyName',''),(152,13,'en','givenName','Graham'),(153,13,'fr_CA','givenName',''),(154,13,'','orcid',''),(155,13,'en','preferredPublicName',''),(156,13,'fr_CA','preferredPublicName',''),(157,13,'en','signature',''),(158,13,'fr_CA','signature',''),(159,14,'en','affiliation','University of Cape Town'),(160,14,'fr_CA','affiliation',''),(161,14,'en','biography',''),(162,14,'fr_CA','biography',''),(163,14,'en','familyName','Hellier'),(164,14,'fr_CA','familyName',''),(165,14,'en','givenName','Stephen'),(166,14,'fr_CA','givenName',''),(167,14,'','orcid',''),(168,14,'en','preferredPublicName',''),(169,14,'fr_CA','preferredPublicName',''),(170,14,'en','signature',''),(171,14,'fr_CA','signature',''),(172,15,'en','affiliation','Imperial College London'),(173,15,'fr_CA','affiliation',''),(174,15,'en','biography',''),(175,15,'fr_CA','biography',''),(176,15,'en','familyName','Turner'),(177,15,'fr_CA','familyName',''),(178,15,'en','givenName','Catherine'),(179,15,'fr_CA','givenName',''),(180,15,'','orcid',''),(181,15,'en','preferredPublicName',''),(182,15,'fr_CA','preferredPublicName',''),(183,15,'en','signature',''),(184,15,'fr_CA','signature',''),(185,16,'en','affiliation','National University of Singapore'),(186,16,'fr_CA','affiliation',''),(187,16,'en','biography',''),(188,16,'fr_CA','biography',''),(189,16,'en','familyName','Kumar'),(190,16,'fr_CA','familyName',''),(191,16,'en','givenName','Sabine'),(192,16,'fr_CA','givenName',''),(193,16,'','orcid',''),(194,16,'en','preferredPublicName',''),(195,16,'fr_CA','preferredPublicName',''),(196,16,'en','signature',''),(197,16,'fr_CA','signature',''),(198,17,'en','affiliation','University of Cape Town'),(199,17,'en','familyName','Mwandenga'),(200,17,'en','givenName','Alan'),(201,18,'en','affiliation','University of Bologna'),(202,18,'en','familyName','Corino'),(203,18,'en','givenName','Carlo'),(204,19,'en','affiliation','University of Windsor'),(205,19,'en','familyName','Kwantes'),(206,19,'en','givenName','Catherine'),(207,20,'en','affiliation','University of Alberta'),(208,20,'en','familyName','Montgomerie'),(209,20,'en','givenName','Craig'),(210,21,'en','affiliation','Alexandria University'),(211,21,'en','familyName','Diouf'),(212,21,'en','givenName','Diaga'),(213,22,'en','affiliation','University of Toronto'),(214,22,'en','familyName','Phillips'),(215,22,'en','givenName','Dana'),(216,23,'en','affiliation','University College Cork'),(217,23,'en','familyName','Sokoloff'),(218,23,'en','givenName','Domatilia'),(219,24,'en','affiliation','Indiana University'),(220,24,'en','familyName','Ostrom'),(221,24,'en','givenName','Elinor'),(222,25,'en','affiliation','University of Rome'),(223,25,'en','familyName','Paglieri'),(224,25,'en','givenName','Fabio'),(225,26,'en','affiliation','Aalborg University'),(226,26,'en','familyName','Novak'),(227,26,'en','givenName','John'),(228,27,'en','affiliation','Stanford University'),(229,27,'en','familyName','Al-Khafaji'),(230,27,'en','givenName','Karim'),(231,28,'en','affiliation','Australian National University'),(232,28,'en','familyName','Christopher'),(233,28,'en','givenName','Leo'),(234,29,'en','affiliation','University of Cape Town'),(235,29,'en','familyName','Kumiega'),(236,29,'en','givenName','Lise'),(237,30,'en','affiliation','University of Wolverhampton'),(238,30,'en','familyName','Daniel'),(239,30,'en','givenName','Patricia'),(240,31,'en','affiliation','University of Nairobi'),(241,31,'en','familyName','Baiyewu'),(242,31,'en','givenName','Rana'),(243,32,'en','affiliation','Barcelona University'),(244,32,'en','familyName','Rossi'),(245,32,'en','givenName','Rosanna'),(246,33,'en','affiliation','University of Tehran'),(247,33,'en','familyName','Karbasizaed'),(248,33,'en','givenName','Vajiheh'),(249,34,'en','affiliation','University of Windsor'),(250,34,'en','familyName','Williamson'),(251,34,'en','givenName','Valerie'),(252,35,'en','affiliation','CUNY'),(253,35,'en','familyName','Woods'),(254,35,'en','givenName','Zita'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_user_groups` ( `user_user_group_id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_group_id` bigint NOT NULL, `user_id` bigint NOT NULL, `date_start` datetime DEFAULT NULL, `date_end` datetime DEFAULT NULL, PRIMARY KEY (`user_user_group_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=56 DEFAULT CHARSET=utf8mb3 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,'2024-02-01 07:12:42',NULL),(2,2,1,'2024-02-01 07:13:12',NULL),(3,2,2,'2024-02-01 07:14:25',NULL),(4,3,3,'2024-02-01 07:14:32',NULL),(5,5,4,'2024-02-01 07:14:38',NULL),(6,5,5,'2024-02-01 07:14:46',NULL),(7,5,6,'2024-02-01 07:14:54',NULL),(8,16,7,'2024-02-01 07:15:02',NULL),(9,16,8,'2024-02-01 07:15:11',NULL),(10,16,9,'2024-02-01 07:15:21',NULL),(11,16,10,'2024-02-01 07:15:30',NULL),(12,7,11,'2024-02-01 07:15:40',NULL),(13,7,12,'2024-02-01 07:15:50',NULL),(14,11,13,'2024-02-01 07:16:01',NULL),(15,11,14,'2024-02-01 07:16:13',NULL),(16,13,15,'2024-02-01 07:16:25',NULL),(17,13,16,'2024-02-01 07:16:37',NULL),(18,17,17,'2024-02-01 07:17:56',NULL),(19,14,17,'2024-02-01 07:18:02',NULL),(20,17,18,'2024-02-01 07:24:41',NULL),(21,14,18,'2024-02-01 07:24:44',NULL),(22,17,19,'2024-02-01 07:25:43',NULL),(23,14,19,'2024-02-01 07:25:46',NULL),(24,17,20,'2024-02-01 07:26:39',NULL),(25,14,20,'2024-02-01 07:26:42',NULL),(26,17,21,'2024-02-01 07:26:55',NULL),(27,14,21,'2024-02-01 07:26:58',NULL),(28,17,22,'2024-02-01 07:28:11',NULL),(29,14,22,'2024-02-01 07:28:14',NULL),(30,17,23,'2024-02-01 07:29:23',NULL),(31,14,23,'2024-02-01 07:29:26',NULL),(32,17,24,'2024-02-01 07:30:28',NULL),(33,14,24,'2024-02-01 07:30:31',NULL),(34,17,25,'2024-02-01 07:30:43',NULL),(35,14,25,'2024-02-01 07:30:46',NULL),(36,17,26,'2024-02-01 07:32:02',NULL),(37,14,26,'2024-02-01 07:32:05',NULL),(38,17,27,'2024-02-01 07:33:10',NULL),(39,14,27,'2024-02-01 07:33:13',NULL),(40,17,28,'2024-02-01 07:33:25',NULL),(41,14,28,'2024-02-01 07:33:28',NULL),(42,17,29,'2024-02-01 07:34:11',NULL),(43,14,29,'2024-02-01 07:34:14',NULL),(44,17,30,'2024-02-01 07:36:04',NULL),(45,14,30,'2024-02-01 07:36:07',NULL),(46,17,31,'2024-02-01 07:36:19',NULL),(47,14,31,'2024-02-01 07:36:22',NULL),(48,17,32,'2024-02-01 07:37:33',NULL),(49,14,32,'2024-02-01 07:37:36',NULL),(50,17,33,'2024-02-01 07:37:48',NULL),(51,14,33,'2024-02-01 07:37:51',NULL),(52,17,34,'2024-02-01 07:41:02',NULL),(53,14,34,'2024-02-01 07:41:05',NULL),(54,17,35,'2024-02-01 07:41:35',NULL),(55,14,35,'2024-02-01 07:41:38',NULL); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `user_id` bigint 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, `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 DEFAULT NULL, `auth_id` bigint DEFAULT NULL, `auth_str` varchar(255) DEFAULT NULL, `disabled` smallint NOT NULL DEFAULT '0', `disabled_reason` text, `inline_help` smallint DEFAULT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `users_username` (`username`), UNIQUE KEY `users_email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb3 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$10$lHcCRrbb.2W5H.p1VJyyLeJ/v.7F2lFTzX8StWNNjV6T/HKOWiDnm','pkpadmin@mailinator.com',NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,'2024-02-01 07:12:42',NULL,'2024-02-01 07:17:37',NULL,NULL,NULL,0,NULL,1),(2,'rvaca','$2y$10$fJ.ENUjo9J7WUSmthz23rOlB3HIx6GLlLvnCNkvZflNtRRdaXQqem','rvaca@mailinator.com','','','',NULL,'MX','[]',NULL,NULL,'2024-02-01 07:14:24',NULL,'2024-02-01 07:16:46',0,NULL,NULL,0,NULL,1),(3,'dbarnes','$2y$10$II0FbHuXj3LH6Vev60OsyOT1u9C454KvAE4MyQd0FU.VppEXnt7LS','dbarnes@mailinator.com','','','',NULL,'AU','[]',NULL,NULL,'2024-02-01 07:14:31',NULL,'2024-02-01 07:41:45',0,NULL,NULL,0,NULL,1),(4,'dbuskins','$2y$10$qfmbKM88wMfvZUF4OYLXxeuauuWCeJ7vn5LDPJWO2f.sBaeAiGutm','dbuskins@mailinator.com','','','',NULL,'US','[]',NULL,NULL,'2024-02-01 07:14:38',NULL,NULL,0,NULL,NULL,0,NULL,1),(5,'sberardo','$2y$10$2H02ES69iMaY8X3.LjiB/eRm9ksQAtuHiHI8zq8n/yGK.AcieB7cK','sberardo@mailinator.com','','','',NULL,'CA','[]',NULL,NULL,'2024-02-01 07:14:46',NULL,NULL,0,NULL,NULL,0,NULL,1),(6,'minoue','$2y$10$QoA/EIzSuYvsr1X6X.fNBe5b56VxXOviZa9jW79XmhfdnOMdT.d5e','minoue@mailinator.com','','','',NULL,'JP','[]',NULL,NULL,'2024-02-01 07:14:53',NULL,'2024-02-01 07:25:14',0,NULL,NULL,0,NULL,1),(7,'jjanssen','$2y$10$fl2roOcP1CFP0WCtJpSWyOGEvx8zVUZnY5wVJ4IWbPv8.lMnqisJq','jjanssen@mailinator.com','','','',NULL,'NL','[]',NULL,NULL,'2024-02-01 07:15:01',NULL,'2024-02-01 07:34:59',0,NULL,NULL,0,NULL,1),(8,'phudson','$2y$10$RoOITr26jqJe/eiwjXmozOJSRu/vC/xuG50exgp9OMhuuxrOY/.bi','phudson@mailinator.com','','','',NULL,'CA','[]',NULL,NULL,'2024-02-01 07:15:10',NULL,'2024-02-01 07:30:10',0,NULL,NULL,0,NULL,1),(9,'amccrae','$2y$10$B8jmPNjzrC6IFMsBnD46EOf1FlS/.DwWfu3v5g.ExHJ5XbQ2hunZa','amccrae@mailinator.com','','','',NULL,'CA','[]',NULL,NULL,'2024-02-01 07:15:20',NULL,'2024-02-01 07:35:11',0,NULL,NULL,0,NULL,1),(10,'agallego','$2y$10$ly6f9EaMfGWPZK4PKSrNH.P3C5SXVJ3gKI./HVC51G1xoN0zlwfhG','agallego@mailinator.com','','','',NULL,'US','[]',NULL,NULL,'2024-02-01 07:15:29',NULL,'2024-02-01 07:35:22',0,NULL,NULL,0,NULL,1),(11,'mfritz','$2y$10$JwnTQMOsKFb0J1MnH1aLpujiaxHuAMIN9tEv5cVbhoOaChvOQL65y','mfritz@mailinator.com','','','',NULL,'BE','[]',NULL,NULL,'2024-02-01 07:15:39',NULL,NULL,0,NULL,NULL,0,NULL,1),(12,'svogt','$2y$10$PZ6/8a.xLHM225GVl8n6Ve4zNG1QfKsoyMqil5At1JVIyPnFaozqm','svogt@mailinator.com','','','',NULL,'CL','[]',NULL,NULL,'2024-02-01 07:15:49',NULL,NULL,0,NULL,NULL,0,NULL,1),(13,'gcox','$2y$10$OXKkTXlmbLv2IMD9LtBkDeliiM5NmKnggyBzkQVpPXmijLt7p7Mym','gcox@mailinator.com','','','',NULL,'US','[]',NULL,NULL,'2024-02-01 07:16:00',NULL,NULL,0,NULL,NULL,0,NULL,1),(14,'shellier','$2y$10$2w6SWKM6f6tfq7CK/sNUMO2/ipY/pG3I/jeBGLEwaHTm5wUeRpIDi','shellier@mailinator.com','','','',NULL,'ZA','[]',NULL,NULL,'2024-02-01 07:16:12',NULL,NULL,0,NULL,NULL,0,NULL,1),(15,'cturner','$2y$10$YqxYfFg.xDFbiQyQPpjkr.iQI9VvMGBcmWSNbZzo684MOU9By/Hoy','cturner@mailinator.com','','','',NULL,'GB','[]',NULL,NULL,'2024-02-01 07:16:23',NULL,NULL,0,NULL,NULL,0,NULL,1),(16,'skumar','$2y$10$.ERJjmRZdfcN/ffkZLYAFOPdDzf7VHhRCnc7FlAQsEK/zMtj56Msi','skumar@mailinator.com','','','',NULL,'SG','[]',NULL,NULL,'2024-02-01 07:16:36',NULL,NULL,0,NULL,NULL,0,NULL,1),(17,'amwandenga','$2y$10$yhMKhYhSY.PJSIsyS8k9Xeu4GCyYKfhf8BsWSmb4c1LQfM0gkaLe.','amwandenga@mailinator.com',NULL,NULL,NULL,NULL,'ZA','[]',NULL,NULL,'2024-02-01 07:17:56',NULL,'2024-02-01 07:22:46',NULL,NULL,NULL,0,NULL,1),(18,'ccorino','$2y$10$Pvh8e6mtCKmwwoT35yT4rOixF3KXWMNVEtncLEPsDsFco9gPmiolO','ccorino@mailinator.com',NULL,NULL,NULL,NULL,'IT','[]',NULL,NULL,'2024-02-01 07:24:41',NULL,'2024-02-01 07:24:41',NULL,NULL,NULL,0,NULL,1),(19,'ckwantes','$2y$10$AQl/Pn03yBUD5yeoUgqEW.G014eba8KBvVDZBEa.MkZGmkeL6ztd6','ckwantes@mailinator.com',NULL,NULL,NULL,NULL,'CA','[]',NULL,NULL,'2024-02-01 07:25:43',NULL,'2024-02-01 07:25:43',NULL,NULL,NULL,0,NULL,1),(20,'cmontgomerie','$2y$10$17gukC2usjfguP/jLnp/L.QQEhr0mArUqqCJsStKaBIawjZ4dAldK','cmontgomerie@mailinator.com',NULL,NULL,NULL,NULL,'CA','[]',NULL,NULL,'2024-02-01 07:26:39',NULL,'2024-02-01 07:26:39',NULL,NULL,NULL,0,NULL,1),(21,'ddiouf','$2y$10$IU6xl0yF9velbLJE8VIE9.Vft4TWSlod7bii1n/u3F15BPqnC.nwm','ddiouf@mailinator.com',NULL,NULL,NULL,NULL,'EG','[]',NULL,NULL,'2024-02-01 07:26:55',NULL,'2024-02-01 07:26:55',NULL,NULL,NULL,0,NULL,1),(22,'dphillips','$2y$10$RiatY8CPtbCffxMb2NpVquufiUL77iCMRm0mE0LHvW..SiSn4yijK','dphillips@mailinator.com',NULL,NULL,NULL,NULL,'CA','[]',NULL,NULL,'2024-02-01 07:28:11',NULL,'2024-02-01 07:28:11',NULL,NULL,NULL,0,NULL,1),(23,'dsokoloff','$2y$10$DvIsktLzIOwvZ7DSFUUBne1H41j/0wp6SCpxgi4HVpKoFNHT6ejD.','dsokoloff@mailinator.com',NULL,NULL,NULL,NULL,'IE','[]',NULL,NULL,'2024-02-01 07:29:23',NULL,'2024-02-01 07:29:24',NULL,NULL,NULL,0,NULL,1),(24,'eostrom','$2y$10$V1rKla/Q4TKXx3NTXp0.qeifxacSKUKot71UIzl7uadOH9xuUswyi','eostrom@mailinator.com',NULL,NULL,NULL,NULL,'US','[]',NULL,NULL,'2024-02-01 07:30:28',NULL,'2024-02-01 07:30:28',NULL,NULL,NULL,0,NULL,1),(25,'fpaglieri','$2y$10$YaMC2zdehQmJ1XwYxGCBFey2KVq8FdTZ/f80ovlYTkZs5msQW8.OO','fpaglieri@mailinator.com',NULL,NULL,NULL,NULL,'IT','[]',NULL,NULL,'2024-02-01 07:30:43',NULL,'2024-02-01 07:30:43',NULL,NULL,NULL,0,NULL,1),(26,'jnovak','$2y$10$p366dKqjjddO68qz7whSiOtoLKtlxxx8KulcVNvVl8r2vdu9/FiT6','jnovak@mailinator.com',NULL,NULL,NULL,NULL,'DK','[]',NULL,NULL,'2024-02-01 07:32:01',NULL,'2024-02-01 07:32:02',NULL,NULL,NULL,0,NULL,1),(27,'kalkhafaji','$2y$10$gAv4MwUlgGxqlLzVYXyUmupUstsdKgXi9g4kl.Y9iXLY0kbonBM/m','kalkhafaji@mailinator.com',NULL,NULL,NULL,NULL,'US','[]',NULL,NULL,'2024-02-01 07:33:10',NULL,'2024-02-01 07:33:10',NULL,NULL,NULL,0,NULL,1),(28,'lchristopher','$2y$10$OnuLn4myvzEGvcWaBtOum.9f7Tc0/pW4hlUX7bMu.YnXPteYUuXem','lchristopher@mailinator.com',NULL,NULL,NULL,NULL,'AU','[]',NULL,NULL,'2024-02-01 07:33:25',NULL,'2024-02-01 07:33:25',NULL,NULL,NULL,0,NULL,1),(29,'lkumiega','$2y$10$bFFzpgc1mlBa4jbjOoKOmOUjosggnea4h9AkcAuweNfDX7OQTZIHG','lkumiega@mailinator.com',NULL,NULL,NULL,NULL,'ZA','[]',NULL,NULL,'2024-02-01 07:34:11',NULL,'2024-02-01 07:34:11',NULL,NULL,NULL,0,NULL,1),(30,'pdaniel','$2y$10$0pv9VAnnqw38LTyhEP2XOeY5DmUdpdcuK6Bwa/zqGncDz0WAIOdoC','pdaniel@mailinator.com',NULL,NULL,NULL,NULL,'GB','[]',NULL,NULL,'2024-02-01 07:36:04',NULL,'2024-02-01 07:36:04',NULL,NULL,NULL,0,NULL,1),(31,'rbaiyewu','$2y$10$cREXpyLiWmcbqiFAedg49u7WBRhw40IqFhZ3ufNBT0NuzXqi4Vpfm','rbaiyewu@mailinator.com',NULL,NULL,NULL,NULL,'KE','[]',NULL,NULL,'2024-02-01 07:36:19',NULL,'2024-02-01 07:36:19',NULL,NULL,NULL,0,NULL,1),(32,'rrossi','$2y$10$lIu49dxLDMSX.XdONlhC2O3cvJGGtHHLTRIPlBD7k8kWBJsDXqpW.','rrossi@mailinator.com',NULL,NULL,NULL,NULL,'ES','[]',NULL,NULL,'2024-02-01 07:37:33',NULL,'2024-02-01 07:37:33',NULL,NULL,NULL,0,NULL,1),(33,'vkarbasizaed','$2y$10$CS.LtgGs8vbR38L6qD608OiyAiRefIQDsCKkS3Igq7Jt19egZjv1C','vkarbasizaed@mailinator.com',NULL,NULL,NULL,NULL,'IR','[]',NULL,NULL,'2024-02-01 07:37:48',NULL,'2024-02-01 07:37:48',NULL,NULL,NULL,0,NULL,1),(34,'vwilliamson','$2y$10$LQFps4UUU9aTjs5GpWWas.Nr103k1ng3ae0UBaCZh0hC8k60uYsKO','vwilliamson@mailinator.com',NULL,NULL,NULL,NULL,'CA','[]',NULL,NULL,'2024-02-01 07:41:02',NULL,'2024-02-01 07:41:03',NULL,NULL,NULL,0,NULL,1),(35,'zwoods','$2y$10$O8Tkm8GVpvk6IbEr4rJ1yeHIlemhaNeACG8rp3F.U8ZGTu6yudNPi','zwoods@mailinator.com',NULL,NULL,NULL,NULL,'US','[]',NULL,NULL,'2024-02-01 07:41:35',NULL,'2024-02-01 07:41:35',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `versions` ( `version_id` bigint unsigned NOT NULL AUTO_INCREMENT, `major` int NOT NULL DEFAULT '0' COMMENT 'Major component of version number, e.g. the 2 in OJS 2.3.8-0', `minor` int NOT NULL DEFAULT '0' COMMENT 'Minor component of version number, e.g. the 3 in OJS 2.3.8-0', `revision` int NOT NULL DEFAULT '0' COMMENT 'Revision component of version number, e.g. the 8 in OJS 2.3.8-0', `build` int 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 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 NOT NULL DEFAULT '0' COMMENT '1 iff the row describes a lazy-load plugin; 0 otherwise', `sitewide` smallint 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=46 DEFAULT CHARSET=utf8mb3 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,'2024-02-01 07:12:42',1,'plugins.metadata','dc11','',0,0),(2,1,0,0,0,'2024-02-01 07:12:42',1,'plugins.blocks','information','InformationBlockPlugin',1,0),(3,1,1,0,0,'2024-02-01 07:12:42',1,'plugins.blocks','subscription','SubscriptionBlockPlugin',1,0),(4,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.blocks','makeSubmission','MakeSubmissionBlockPlugin',1,0),(5,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.blocks','languageToggle','LanguageToggleBlockPlugin',1,0),(6,1,0,1,0,'2024-02-01 07:12:43',1,'plugins.blocks','browse','BrowseBlockPlugin',1,0),(7,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.blocks','developedBy','DevelopedByBlockPlugin',1,0),(8,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.gateways','resolver','',0,0),(9,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','tinymce','TinyMCEPlugin',1,0),(10,1,1,0,0,'2024-02-01 07:12:43',1,'plugins.generic','googleScholar','GoogleScholarPlugin',1,0),(11,1,3,4,3,'2024-02-01 07:12:43',1,'plugins.generic','orcidProfile','OrcidProfilePlugin',1,0),(12,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','webFeed','WebFeedPlugin',1,0),(13,1,0,0,1,'2024-02-01 07:12:43',1,'plugins.generic','recommendByAuthor','RecommendByAuthorPlugin',1,1),(14,1,3,0,0,'2024-02-01 07:12:43',1,'plugins.generic','acron','AcronPlugin',1,1),(15,2,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','datacite','',0,0),(16,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','usageEvent','',0,0),(17,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','driver','DRIVERPlugin',1,0),(18,1,0,1,0,'2024-02-01 07:12:43',1,'plugins.generic','lensGalley','LensGalleyPlugin',1,0),(19,0,1,0,0,'2024-02-01 07:12:43',1,'plugins.generic','citationStyleLanguage','CitationStyleLanguagePlugin',1,0),(20,1,2,0,0,'2024-02-01 07:12:43',1,'plugins.generic','customBlockManager','CustomBlockManagerPlugin',1,0),(21,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','htmlArticleGalley','HtmlArticleGalleyPlugin',1,0),(22,3,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','crossref','',0,0),(23,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','announcementFeed','AnnouncementFeedPlugin',1,0),(24,1,2,0,0,'2024-02-01 07:12:43',1,'plugins.generic','staticPages','StaticPagesPlugin',1,0),(25,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','googleAnalytics','GoogleAnalyticsPlugin',1,0),(26,1,0,1,0,'2024-02-01 07:12:43',1,'plugins.generic','pdfJsViewer','PdfJsViewerPlugin',1,0),(27,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','dublinCoreMeta','DublinCoreMetaPlugin',1,0),(28,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.generic','recommendBySimilarity','RecommendBySimilarityPlugin',1,1),(29,1,1,0,0,'2024-02-01 07:12:43',1,'plugins.importexport','doaj','',0,0),(30,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.importexport','pubmed','',0,0),(31,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.importexport','native','',0,0),(32,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.importexport','users','',0,0),(33,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.oaiMetadataFormats','marc','',0,0),(34,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.oaiMetadataFormats','dc','',0,0),(35,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.oaiMetadataFormats','marcxml','',0,0),(36,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.oaiMetadataFormats','rfc1807','',0,0),(37,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.paymethod','paypal','',0,0),(38,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.paymethod','manual','',0,0),(39,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.pubIds','urn','URNPubIdPlugin',1,0),(40,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.reports','subscriptions','',0,0),(41,1,1,0,0,'2024-02-01 07:12:43',1,'plugins.reports','counterReport','',0,0),(42,2,0,1,0,'2024-02-01 07:12:43',1,'plugins.reports','reviewReport','',0,0),(43,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.reports','articles','',0,0),(44,1,0,0,0,'2024-02-01 07:12:43',1,'plugins.themes','default','DefaultThemePlugin',1,0),(45,3,5,0,0,'2024-02-01 07:12:23',1,'core','ojs2','',0,1); /*!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 2024-02-01 7:42:32