-- MySQL dump 10.13 Distrib 5.7.12, for osx10.11 (x86_64) -- -- Host: localhost Database: socialofficetest -- ------------------------------------------------------ -- Server version 5.7.12 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES 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 `Account_` -- DROP TABLE IF EXISTS `Account_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Account_` ( `accountId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentAccountId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `legalName` varchar(75) DEFAULT NULL, `legalId` varchar(75) DEFAULT NULL, `legalType` varchar(75) DEFAULT NULL, `sicCode` varchar(75) DEFAULT NULL, `tickerSymbol` varchar(75) DEFAULT NULL, `industry` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `size_` varchar(75) DEFAULT NULL, PRIMARY KEY (`accountId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Account_` -- LOCK TABLES `Account_` WRITE; /*!40000 ALTER TABLE `Account_` DISABLE KEYS */; INSERT INTO `Account_` VALUES (10204,10202,0,'','2016-11-22 17:54:01','2016-11-22 17:54:01',0,'liferay.com','','','','','','','',''); /*!40000 ALTER TABLE `Account_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Address` -- DROP TABLE IF EXISTS `Address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Address` ( `addressId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `street1` varchar(75) DEFAULT NULL, `street2` varchar(75) DEFAULT NULL, `street3` varchar(75) DEFAULT NULL, `city` varchar(75) DEFAULT NULL, `zip` varchar(75) DEFAULT NULL, `regionId` bigint(20) DEFAULT NULL, `countryId` bigint(20) DEFAULT NULL, `typeId` int(11) DEFAULT NULL, `mailing` tinyint(4) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, PRIMARY KEY (`addressId`), KEY `IX_93D5AD4E` (`companyId`), KEY `IX_ABD7DAC0` (`companyId`,`classNameId`), KEY `IX_71CB1123` (`companyId`,`classNameId`,`classPK`), KEY `IX_923BD178` (`companyId`,`classNameId`,`classPK`,`mailing`), KEY `IX_9226DBB4` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_5BC8B0D4` (`userId`), KEY `IX_381E55DA` (`uuid_`), KEY `IX_8FCB620E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Address` -- LOCK TABLES `Address` WRITE; /*!40000 ALTER TABLE `Address` DISABLE KEYS */; /*!40000 ALTER TABLE `Address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AnnouncementsDelivery` -- DROP TABLE IF EXISTS `AnnouncementsDelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AnnouncementsDelivery` ( `deliveryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `email` tinyint(4) DEFAULT NULL, `sms` tinyint(4) DEFAULT NULL, `website` tinyint(4) DEFAULT NULL, PRIMARY KEY (`deliveryId`), UNIQUE KEY `IX_BA4413D5` (`userId`,`type_`), KEY `IX_6EDB9600` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AnnouncementsDelivery` -- LOCK TABLES `AnnouncementsDelivery` WRITE; /*!40000 ALTER TABLE `AnnouncementsDelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `AnnouncementsDelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AnnouncementsEntry` -- DROP TABLE IF EXISTS `AnnouncementsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AnnouncementsEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `content` longtext, `url` longtext, `type_` varchar(75) DEFAULT NULL, `displayDate` datetime DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `priority` int(11) DEFAULT NULL, `alert` tinyint(4) DEFAULT NULL, PRIMARY KEY (`entryId`), KEY `IX_A6EF0B81` (`classNameId`,`classPK`), KEY `IX_14F06A6B` (`classNameId`,`classPK`,`alert`), KEY `IX_D49C2E66` (`userId`), KEY `IX_1AFBDE08` (`uuid_`), KEY `IX_F2949120` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AnnouncementsEntry` -- LOCK TABLES `AnnouncementsEntry` WRITE; /*!40000 ALTER TABLE `AnnouncementsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `AnnouncementsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AnnouncementsFlag` -- DROP TABLE IF EXISTS `AnnouncementsFlag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AnnouncementsFlag` ( `flagId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `entryId` bigint(20) DEFAULT NULL, `value` int(11) DEFAULT NULL, PRIMARY KEY (`flagId`), UNIQUE KEY `IX_4539A99C` (`userId`,`entryId`,`value`), KEY `IX_9C7EB9F` (`entryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AnnouncementsFlag` -- LOCK TABLES `AnnouncementsFlag` WRITE; /*!40000 ALTER TABLE `AnnouncementsFlag` DISABLE KEYS */; /*!40000 ALTER TABLE `AnnouncementsFlag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetCategory` -- DROP TABLE IF EXISTS `AssetCategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetCategory` ( `uuid_` varchar(75) DEFAULT NULL, `categoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentCategoryId` bigint(20) DEFAULT NULL, `leftCategoryId` bigint(20) DEFAULT NULL, `rightCategoryId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, `vocabularyId` bigint(20) DEFAULT NULL, `description` longtext, PRIMARY KEY (`categoryId`), UNIQUE KEY `IX_BE4DF2BF` (`parentCategoryId`,`name`,`vocabularyId`), UNIQUE KEY `IX_E8D019AA` (`uuid_`,`groupId`), KEY `IX_E639E2F6` (`groupId`), KEY `IX_D61ABE08` (`name`,`vocabularyId`), KEY `IX_7BB1826B` (`parentCategoryId`), KEY `IX_9DDD15EA` (`parentCategoryId`,`name`), KEY `IX_B185E980` (`parentCategoryId`,`vocabularyId`), KEY `IX_4D37BB00` (`uuid_`), KEY `IX_287B1F89` (`vocabularyId`), KEY `IX_C7F39FCA` (`groupId`,`name`,`vocabularyId`), KEY `IX_852EA801` (`groupId`,`parentCategoryId`,`name`,`vocabularyId`), KEY `IX_87603842` (`groupId`,`parentCategoryId`,`vocabularyId`), KEY `IX_2008FACB` (`groupId`,`vocabularyId`), KEY `IX_BBAF6928` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetCategory` -- LOCK TABLES `AssetCategory` WRITE; /*!40000 ALTER TABLE `AssetCategory` DISABLE KEYS */; INSERT INTO `AssetCategory` VALUES ('9f9384d3-4f03-4ec3-a78a-b176dd757e02',10594,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',0,2,3,'Icon','Icon',10593,NULL),('ec6cff84-5090-403f-ad3e-c07554709307',10595,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',0,4,5,'Banner','Banner',10593,NULL),('35aab83e-3776-488e-a4a4-4892b977eff3',10596,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',0,6,7,'Learning','Learning',10592,NULL),('b86867f1-06a8-4e63-b986-5b6e326a4501',10597,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',0,8,9,'Products','Products',10592,NULL),('5c9f468d-faec-47fb-96bf-67d8d8945de5',10598,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',0,10,11,'Liferay','Liferay',10592,NULL); /*!40000 ALTER TABLE `AssetCategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetCategoryProperty` -- DROP TABLE IF EXISTS `AssetCategoryProperty`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetCategoryProperty` ( `categoryPropertyId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `key_` varchar(75) DEFAULT NULL, `value` varchar(75) DEFAULT NULL, PRIMARY KEY (`categoryPropertyId`), UNIQUE KEY `IX_DBD111AA` (`categoryId`,`key_`), KEY `IX_99DA856` (`categoryId`), KEY `IX_8654719F` (`companyId`), KEY `IX_52340033` (`companyId`,`key_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetCategoryProperty` -- LOCK TABLES `AssetCategoryProperty` WRITE; /*!40000 ALTER TABLE `AssetCategoryProperty` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetCategoryProperty` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetEntries_AssetCategories` -- DROP TABLE IF EXISTS `AssetEntries_AssetCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetEntries_AssetCategories` ( `entryId` bigint(20) NOT NULL, `categoryId` bigint(20) NOT NULL, PRIMARY KEY (`entryId`,`categoryId`), KEY `IX_A188F560` (`categoryId`), KEY `IX_E119938A` (`entryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetEntries_AssetCategories` -- LOCK TABLES `AssetEntries_AssetCategories` WRITE; /*!40000 ALTER TABLE `AssetEntries_AssetCategories` DISABLE KEYS */; INSERT INTO `AssetEntries_AssetCategories` VALUES (10606,10594),(10612,10594),(10616,10594),(10620,10594),(10632,10594),(10650,10594),(10646,10595),(10813,10596),(11252,10596),(11267,10596),(11279,10596),(11294,10596),(11313,10596),(11328,10596),(11343,10596),(11358,10596),(11367,10596),(11370,10596),(11375,10596),(10628,10597),(10656,10597),(10667,10597),(10681,10597),(10691,10597),(10701,10597),(10711,10597),(10723,10597),(10740,10597),(10752,10597),(10763,10597),(10773,10597),(10788,10597),(10804,10597),(10825,10597),(10841,10597),(10858,10597),(10868,10597),(10884,10597),(10902,10597),(10915,10597),(10638,10598),(11252,10598),(11267,10598),(11279,10598),(11294,10598),(11313,10598),(11328,10598),(11343,10598),(11358,10598),(11367,10598),(11370,10598),(11375,10598); /*!40000 ALTER TABLE `AssetEntries_AssetCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetEntries_AssetTags` -- DROP TABLE IF EXISTS `AssetEntries_AssetTags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetEntries_AssetTags` ( `entryId` bigint(20) NOT NULL, `tagId` bigint(20) NOT NULL, PRIMARY KEY (`entryId`,`tagId`), KEY `IX_2ED82CAD` (`entryId`), KEY `IX_B2A61B55` (`tagId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetEntries_AssetTags` -- LOCK TABLES `AssetEntries_AssetTags` WRITE; /*!40000 ALTER TABLE `AssetEntries_AssetTags` DISABLE KEYS */; INSERT INTO `AssetEntries_AssetTags` VALUES (10530,10531),(10530,10532),(10545,10531),(10545,10546),(10557,10531),(10557,10546),(10567,10532),(10576,10532),(10576,10577),(10576,10578),(10606,10607),(10612,10607),(10616,10607),(10620,10621),(10620,10622),(10628,10621),(10632,10621),(10632,10633),(10638,10639),(10638,10640),(10646,10621),(10650,10621),(10650,10651),(10656,10651),(10667,10639),(10667,10668),(10681,10639),(10681,10668),(10691,10639),(10691,10668),(10701,10639),(10701,10668),(10711,10712),(10723,10639),(10723,10724),(10740,10668),(10740,10741),(10752,10651),(10763,10651),(10773,10668),(10773,10741),(10788,10668),(10788,10741),(10804,10668),(10804,10741),(10813,10814),(10813,10815),(10825,10741),(10825,10815),(10841,10741),(10841,10815),(10858,10741),(10858,10815),(10868,10639),(10884,10668),(10884,10885),(10902,10903),(10902,10904),(10915,10916),(10915,10917),(10980,10981),(10980,10982),(11005,10982),(11005,11006),(11023,10982),(11023,11024),(11052,11053),(11052,11054),(11077,11054),(11077,11078),(11095,11054),(11095,11096),(11124,11125),(11124,11126),(11149,11126),(11149,11150),(11167,11126),(11167,11168),(11196,11197),(11196,11198),(11221,11198),(11221,11222),(11239,11198),(11239,11240),(11252,11253),(11252,11254),(11252,11255),(11267,11268),(11267,11269),(11267,11270),(11279,11280),(11279,11281),(11279,11282),(11294,11295),(11294,11296),(11294,11297),(11294,11298),(11313,11314),(11313,11315),(11313,11316),(11328,11329),(11328,11330),(11328,11331),(11343,11344),(11343,11345),(11343,11346),(11358,10633),(11358,10639),(11358,10668),(11367,10639),(11367,10741),(11370,10741),(11370,11371),(11375,10741),(11375,11376); /*!40000 ALTER TABLE `AssetEntries_AssetTags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetEntry` -- DROP TABLE IF EXISTS `AssetEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetEntry` ( `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `classUuid` varchar(75) DEFAULT NULL, `visible` tinyint(4) DEFAULT NULL, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `publishDate` datetime DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `title` longtext, `description` longtext, `summary` longtext, `url` longtext, `height` int(11) DEFAULT NULL, `width` int(11) DEFAULT NULL, `priority` double DEFAULT NULL, `viewCount` int(11) DEFAULT NULL, `classTypeId` bigint(20) DEFAULT NULL, `layoutUuid` varchar(75) DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_1E9D371D` (`classNameId`,`classPK`), KEY `IX_FC1F9C7B` (`classUuid`), KEY `IX_7306C60` (`companyId`), KEY `IX_1EBA6821` (`groupId`,`classUuid`), KEY `IX_75D42FF9` (`expirationDate`), KEY `IX_FEC4A201` (`layoutUuid`), KEY `IX_2E4E3885` (`publishDate`), KEY `IX_9029E15A` (`visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetEntry` -- LOCK TABLES `AssetEntry` WRITE; /*!40000 ALTER TABLE `AssetEntry` DISABLE KEYS */; INSERT INTO `AssetEntry` VALUES (10225,10219,10202,10205,' ','2016-11-22 17:54:02','2016-11-22 17:54:02',10093,10223,'5fee85b7-3ee9-42b8-a474-c735ea904578',0,NULL,NULL,NULL,NULL,'text/html','10222','','','',0,0,0,0,NULL,NULL),(10233,10227,10202,10205,' ','2016-11-22 17:54:02','2016-11-22 17:54:02',10093,10231,'551f2e87-b829-4b0b-b171-ed1549f7c6d0',0,NULL,NULL,NULL,NULL,'text/html','10230','','','',0,0,0,0,NULL,NULL),(10244,10235,10202,10239,'Test Test','2016-11-22 17:54:02','2016-11-22 17:54:02',10046,10239,'73f5b962-5cb4-464a-9312-895afccfeb19',0,NULL,NULL,NULL,NULL,'','Test Test','','','',0,0,0,0,NULL,NULL),(10341,10335,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10339,'51371789-9042-442b-9996-710ca9b6fa74',0,NULL,NULL,NULL,NULL,'text/html','10338','','','',0,0,0,0,NULL,NULL),(10350,10344,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10348,'170fd98a-c167-4603-8043-ef1d13d59d77',0,NULL,NULL,NULL,NULL,'text/html','10347','','','',0,0,0,0,NULL,NULL),(10359,10353,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10357,'bbe0f56c-1d9e-44e3-8c16-dfecdb9b1e0e',0,NULL,NULL,NULL,NULL,'text/html','10356','','','',0,0,0,0,NULL,NULL),(10368,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10366,'c33e17e0-6fa7-4d3b-9afc-0adf5a1114f4',0,NULL,NULL,NULL,NULL,'text/html','10365','','','',0,0,0,0,NULL,NULL),(10373,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10371,'51303a03-0a07-4968-9ae0-7790b032ef2b',0,NULL,NULL,NULL,NULL,'text/html','10370','','','',0,0,0,0,NULL,NULL),(10378,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10376,'b5b0c36d-e185-4c54-a3fa-da207a262961',0,NULL,NULL,NULL,NULL,'text/html','10375','','','',0,0,0,0,NULL,NULL),(10383,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10381,'480ca220-2b89-4a1a-904f-4cef25a7ef6e',0,NULL,NULL,NULL,NULL,'text/html','10380','','','',0,0,0,0,NULL,NULL),(10388,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10386,'91080e95-4986-4302-9896-a78541d5d903',0,NULL,NULL,NULL,NULL,'text/html','10385','','','',0,0,0,0,NULL,NULL),(10397,10391,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10093,10395,'97db64f9-333b-49a7-aed7-932025cb1426',0,NULL,NULL,NULL,NULL,'text/html','10394','','','',0,0,0,0,NULL,NULL),(10402,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10093,10400,'caf0f6a7-7b04-4a3c-aa1f-aad2b601fa5a',0,NULL,NULL,NULL,NULL,'text/html','10399','','','',0,0,0,0,NULL,NULL),(10407,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10093,10405,'1d8db30a-43e8-4361-ae83-fa40ca32ca49',0,NULL,NULL,NULL,NULL,'text/html','10404','','','',0,0,0,0,NULL,NULL),(10413,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10093,10411,'a4f06bb4-af50-4d98-9eb5-62301cdc95dc',0,NULL,NULL,NULL,NULL,'text/html','10410','','','',0,0,0,0,NULL,NULL),(10418,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10093,10416,'0cb8ab44-928f-4f2f-b25b-5ded8658d4a5',0,NULL,NULL,NULL,NULL,'text/html','10415','','','',0,0,0,0,NULL,NULL),(10495,10227,10202,10205,' ','2016-11-22 17:54:14','2016-11-22 17:54:14',10073,10492,'4e44f50d-6aa5-4b7a-a75d-6b6e67ee3a94',1,NULL,NULL,NULL,NULL,'image/png','cell_bg','','','',329,2,0,0,11501,NULL),(10499,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10073,10496,'bcde623b-42f5-4871-9ade-44052d10fadd',1,NULL,NULL,NULL,NULL,'image/png','portal_mashup','','','',232,128,0,0,11501,NULL),(10503,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10073,10500,'b976fd0b-fe08-426e-933f-bad870fa3df3',1,NULL,NULL,NULL,NULL,'image/png','sevencogs_ad','','','',95,335,0,0,11501,NULL),(10507,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10073,10504,'c347888a-470f-404e-b645-5cf1e60af860',1,NULL,NULL,NULL,NULL,'image/png','sevencogs_mobile_ad','','','',95,335,0,0,11501,NULL),(10511,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10073,10508,'23a1b7d8-a446-4d88-b288-d74eb2f0986f',1,NULL,NULL,NULL,NULL,'image/png','shared_workspaces','','','',224,205,0,0,11501,NULL),(10515,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10073,10512,'fada6a18-d179-4f70-8b15-185b5db60195',1,NULL,NULL,NULL,NULL,'image/png','social_network','','','',159,154,0,0,11501,NULL),(10519,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10073,10516,'bf41b99a-4f5d-4ed9-aec0-fce2a143a4da',1,NULL,NULL,NULL,NULL,'image/png','web_publishing','','','',180,155,0,0,11501,NULL),(10523,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10093,10521,'368ba1a4-f9f9-4868-844b-e303c6d2d093',0,NULL,NULL,NULL,NULL,'text/html','10520','','','',0,0,0,0,NULL,NULL),(10530,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10084,10528,'2f0df6a5-dbec-4f17-b9a8-1d1eb0b2e75d',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Welcome','','','',0,0,0,12,0,''),(10537,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10093,10535,'78e7720a-26a5-40fc-a46c-543f96a93522',0,NULL,NULL,NULL,NULL,'text/html','10528','','','',0,0,0,0,NULL,NULL),(10545,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10084,10543,'2d6469c9-6341-4db5-92d5-e3226f6999e6',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','7Cogs Ad','','','',0,0,0,13,0,''),(10550,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10093,10548,'492159a2-7736-4b8f-9de3-b94148979843',0,NULL,NULL,NULL,NULL,'text/html','10543','','','',0,0,0,0,NULL,NULL),(10557,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10084,10555,'2b15bc61-5d60-45de-9221-488dc6faafdd',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','7Cogs Mobile Ad','','','',0,0,0,12,0,''),(10560,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10093,10558,'0230e416-4a9d-44db-bf31-294f9e1d480a',0,NULL,NULL,NULL,NULL,'text/html','10555','','','',0,0,0,0,NULL,NULL),(10567,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10084,10565,'ca276d5f-f9bb-4843-a756-60220638c89d',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Welcome Note','','','',0,0,0,12,0,''),(10570,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10093,10568,'f2e60600-b67b-4584-9ee4-ef827886f5a5',0,NULL,NULL,NULL,NULL,'text/html','10565','','','',0,0,0,0,NULL,NULL),(10576,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10084,10574,'d0a9575c-cc42-40c8-8df4-fcd14a31ff6e',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Welcome Login','','','',0,0,0,12,0,''),(10583,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10093,10581,'c9fcd8b0-862c-41da-81db-1d1e1adac23e',0,NULL,NULL,NULL,NULL,'text/html','10574','','','',0,0,0,0,NULL,NULL),(10590,10235,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10024,10586,'0fecaa4c-e5ff-403d-a8ec-c872a3788eba',0,NULL,NULL,NULL,NULL,'','7Cogs, Inc.','','','',0,0,0,0,0,''),(10606,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10603,'3b944cec-37dc-447a-8b11-cf929f53fa36',1,NULL,NULL,NULL,NULL,'image/png','cog_blue','','','',66,66,0,0,11501,NULL),(10612,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10609,'9bcb84bf-b6c6-4a48-8e83-0ed732262913',1,NULL,NULL,NULL,NULL,'image/png','cog_light_blue','','','',66,66,0,0,11501,NULL),(10616,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10613,'9488439a-162c-45be-addf-f7ced1d6d6dd',1,NULL,NULL,NULL,NULL,'image/png','cog_orange','','','',66,66,0,0,11501,NULL),(10620,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10617,'8f2124c5-878d-446e-8081-81491ce569a6',1,NULL,NULL,NULL,NULL,'image/png','blogs_icon','','','',96,97,0,0,11501,NULL),(10628,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10625,'d5d44050-5192-4775-858b-887d067a0d8d',1,NULL,NULL,NULL,NULL,'image/png','cog_network_advertisement','','','',189,272,0,0,11501,NULL),(10632,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10629,'3d7f606e-51ba-4e5c-9d44-09ae67f6a874',1,NULL,NULL,NULL,NULL,'image/png','forums_icon','','','',96,110,0,0,11501,NULL),(10638,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10073,10635,'dd0a47ee-2316-4ad2-b7f8-f861d3fb3437',1,NULL,NULL,NULL,NULL,'image/png','liferay_logo','','','',26,26,0,0,11501,NULL),(10646,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10073,10643,'4358cb75-aa7a-4a9c-a340-321ebf48c3cd',1,NULL,NULL,NULL,NULL,'image/png','home_page_banner','','','',219,756,0,0,11501,NULL),(10650,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10073,10647,'d0e97861-29dc-48b5-aa33-56069cf928bf',1,NULL,NULL,NULL,NULL,'image/png','products_icon','','','',98,99,0,0,11501,NULL),(10656,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10073,10653,'ce41045e-574c-4a0f-9536-0b0858d78ce6',1,NULL,NULL,NULL,NULL,'image/png','product_landing','','','',240,320,0,0,11501,NULL),(10660,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10658,'8002905d-f33a-43d2-adae-af432bd7c2c6',0,NULL,NULL,NULL,NULL,'text/html','10657','','','',0,0,0,0,NULL,NULL),(10667,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10665,'c2d71864-2b4e-4b1d-950f-e4c7281d2af4',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Banner','','','',0,0,0,0,NULL,NULL),(10673,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10671,'c5a90e4e-3c0e-4298-9156-795450237bec',0,NULL,NULL,NULL,NULL,'text/html','10665','','','',0,0,0,0,NULL,NULL),(10681,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10679,'6a22b327-4aa9-4504-a55c-b924c99a51a7',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Products Button','','','',0,0,0,0,NULL,NULL),(10684,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10682,'7b7250d7-8128-4847-a5f5-780d75ad056f',0,NULL,NULL,NULL,NULL,'text/html','10679','','','',0,0,0,0,NULL,NULL),(10691,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10689,'d6bb43d5-e835-483d-87af-99f0695916f0',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Blogs Button','','','',0,0,0,0,NULL,NULL),(10694,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10692,'340047e9-4987-459d-b560-fde04b621c76',0,NULL,NULL,NULL,NULL,'text/html','10689','','','',0,0,0,0,NULL,NULL),(10701,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10699,'809f9e6c-2e6a-4f44-b03a-822bec62c248',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Forums Button','','','',0,0,0,0,NULL,NULL),(10704,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10702,'dd54174d-04f2-48dd-935d-17aa1e80b6f1',0,NULL,NULL,NULL,NULL,'text/html','10699','','','',0,0,0,0,NULL,NULL),(10711,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10709,'254b4f32-75e1-424e-9984-818726a00761',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Home Page Intro','','','',0,0,0,0,NULL,NULL),(10716,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10714,'2841da8f-1034-4447-a360-6c2fd9584850',0,NULL,NULL,NULL,NULL,'text/html','10709','','','',0,0,0,0,NULL,NULL),(10723,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10721,'f92ad33d-24a1-44b3-8d91-42e036076f23',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Cog Network Ad','','','',0,0,0,0,NULL,NULL),(10728,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10093,10726,'995f3044-631f-4f23-9abe-c71756cf69e5',0,NULL,NULL,NULL,NULL,'text/html','10721','','','',0,0,0,0,NULL,NULL),(10733,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10731,'ef2d2b68-aa9a-4c2e-b17c-2398313ede54',0,NULL,NULL,NULL,NULL,'text/html','10730','','','',0,0,0,0,NULL,NULL),(10740,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10738,'d14ff9b5-c1e1-4171-b39a-d952cfee1c6e',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Products Banner','','','',0,0,0,0,NULL,NULL),(10745,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10743,'7d3e7b45-3d1e-4f4a-a681-ce6f4474e774',0,NULL,NULL,NULL,NULL,'text/html','10738','','','',0,0,0,0,NULL,NULL),(10752,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10750,'a5e3066e-9706-435b-bd34-25d909d080fa',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Products Landing Intro','','','',0,0,0,0,NULL,NULL),(10756,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10754,'f2a47320-7630-404b-9afb-d5ffe29edff8',0,NULL,NULL,NULL,NULL,'text/html','10750','','','',0,0,0,0,NULL,NULL),(10763,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10761,'5a5f3bdd-f3a1-4e0f-8771-33db7b6d8796',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Products Landing Intro Info','','','',0,0,0,0,NULL,NULL),(10766,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10764,'9ff0db4b-dd84-41ed-b68c-4bf05c658024',0,NULL,NULL,NULL,NULL,'text/html','10761','','','',0,0,0,0,NULL,NULL),(10773,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10771,'6537c110-f2ee-4517-8edd-de50218bc25a',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Products Catalog','','','',0,0,0,0,NULL,NULL),(10776,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10774,'124946fa-0364-4003-8459-0df3b2a545c2',0,NULL,NULL,NULL,NULL,'text/html','10771','','','',0,0,0,0,NULL,NULL),(10781,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10779,'c46e07b2-87a2-4306-94a9-600b7610ce25',0,NULL,NULL,NULL,NULL,'text/html','10778','','','',0,0,0,0,NULL,NULL),(10788,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10786,'af4668fc-9ae2-44da-84d6-5383dcb3b629',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Blogs Banner','','','',0,0,0,0,NULL,NULL),(10791,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10789,'16becbe7-2b43-47cc-9545-38e19b97818e',0,NULL,NULL,NULL,NULL,'text/html','10786','','','',0,0,0,0,NULL,NULL),(10797,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10795,'b0dfe2b5-abb1-409a-9190-3149b77f9a24',0,NULL,NULL,NULL,NULL,'text/html','10794','','','',0,0,0,0,NULL,NULL),(10804,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10802,'1bb61ebb-9223-4cec-a331-87b3f493aa31',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Wiki Banner','','','',0,0,0,0,NULL,NULL),(10807,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10805,'4adc7b39-2629-425a-a024-75caf9b08869',0,NULL,NULL,NULL,NULL,'text/html','10802','','','',0,0,0,0,NULL,NULL),(10813,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10129,10812,'6839f4de-1086-4db6-8f7a-82b8c7f99879',1,NULL,NULL,NULL,NULL,'text/html','FrontPage','','','',0,0,0,0,NULL,NULL),(10820,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10093,10818,'08b57a78-7570-45f1-8e9b-719f94c3c946',0,NULL,NULL,NULL,NULL,'text/html','10812','','','',0,0,0,0,NULL,NULL),(10825,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10129,10824,'97bd5ae8-35da-4508-8432-24da4e170d18',1,NULL,NULL,NULL,NULL,'text/html','Vix-998','','','',0,0,0,0,NULL,NULL),(10829,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10827,'dc519ecc-82cc-4c51-bfa0-33a80c6016b5',0,NULL,NULL,NULL,NULL,'text/html','10824','','','',0,0,0,0,NULL,NULL),(10834,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10832,'ad0b5aad-6f99-4156-951d-731bb019effb',0,NULL,NULL,NULL,NULL,'text/html','10831','','','',0,0,0,0,NULL,NULL),(10841,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10084,10839,'41a0ce2c-9624-4807-9126-63a53d3eda31',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Forums Banner','','','',0,0,0,0,NULL,NULL),(10845,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10843,'9acad59a-0de4-4964-b488-f2ed4f097297',0,NULL,NULL,NULL,NULL,'text/html','10839','','','',0,0,0,0,NULL,NULL),(10851,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10849,'21ffe2e7-113d-4552-8108-bed2572c1068',0,NULL,NULL,NULL,NULL,'text/html','10848','','','',0,0,0,0,NULL,NULL),(10858,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10084,10856,'93e38052-fe3d-46c6-91ea-94b17bb9aade',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','About Us Banner','','','',0,0,0,0,NULL,NULL),(10861,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10859,'76f668fa-ccd3-4130-8806-e715b31c621b',0,NULL,NULL,NULL,NULL,'text/html','10856','','','',0,0,0,0,NULL,NULL),(10868,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10084,10866,'54ee6e58-e19b-4a7a-8914-0b8de9ebb9f1',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','About Us','','','',0,0,0,0,NULL,NULL),(10871,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10869,'3bb58cf8-ba6b-4b4c-9f36-70f847239ca4',0,NULL,NULL,NULL,NULL,'text/html','10866','','','',0,0,0,0,NULL,NULL),(10877,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10093,10875,'a3236fcc-5264-4edf-8161-89170664f736',0,NULL,NULL,NULL,NULL,'text/html','10874','','','',0,0,0,0,NULL,NULL),(10884,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10882,'3903777c-fd8b-4140-9c0c-9502c48b2127',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Home','','','',0,0,0,0,NULL,NULL),(10889,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10887,'48bdda1b-f46c-47fa-b86a-da54dca32e7e',0,NULL,NULL,NULL,NULL,'text/html','10882','','','',0,0,0,0,NULL,NULL),(10895,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10893,'65db212a-9f76-44ec-b699-75588768dec3',0,NULL,NULL,NULL,NULL,'text/html','10892','','','',0,0,0,0,NULL,NULL),(10902,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10900,'483bdfb9-1f36-4a16-bb82-ceccc34db768',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Shared Documents','','','',0,0,0,0,NULL,NULL),(10909,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10907,'5329d39c-40a3-4eef-b89b-05382188d4be',0,NULL,NULL,NULL,NULL,'text/html','10900','','','',0,0,0,0,NULL,NULL),(10915,10235,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10024,10911,'343fb8dc-18ec-45da-9e27-de144aa29c63',0,NULL,NULL,NULL,NULL,'','7Cogs, Inc. Mobile','','','',0,0,0,0,0,''),(10925,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10073,10922,'219d7ad3-126c-4cdf-8e9f-34fd980b555f',1,NULL,NULL,NULL,NULL,'image/png','mobile_product_1','','','',100,312,0,0,11501,NULL),(10929,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10073,10926,'22b4f239-6ec9-44ac-9a58-0925ce57643f',1,NULL,NULL,NULL,NULL,'image/png','mobile_product_2','','','',100,312,0,0,11501,NULL),(10933,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10931,'bbce0108-4cea-4838-a450-4a840e84317c',0,NULL,NULL,NULL,NULL,'text/html','10930','','','',0,0,0,0,NULL,NULL),(10940,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10938,'88dc02f6-9ee3-41c1-b794-836d0fbc7b3f',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Mobile Welcome','','','',0,0,0,0,NULL,NULL),(10943,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10941,'2d666426-f658-4c2e-baf5-f58a1cb91cbb',0,NULL,NULL,NULL,NULL,'text/html','10938','','','',0,0,0,0,NULL,NULL),(10949,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10947,'99ac6122-5e76-4765-a09b-175bd21cc2d8',0,NULL,NULL,NULL,NULL,'text/html','10946','','','',0,0,0,0,NULL,NULL),(10956,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10954,'fe2372cc-2168-42ac-b9fa-446dac8b24e6',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Mobile Products','','','',0,0,0,0,NULL,NULL),(10959,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10957,'2819fe0f-46c8-418e-b814-613c9e05db49',0,NULL,NULL,NULL,NULL,'text/html','10954','','','',0,0,0,0,NULL,NULL),(10968,10235,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20',10046,10963,'6d901f6d-b159-4808-8463-a5e416a5b4b7',0,NULL,NULL,NULL,NULL,'','Bruno Admin','','','',0,0,0,0,NULL,NULL),(10973,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10971,'033a9e5d-f252-4c1c-8e04-5ff0dd315110',0,NULL,NULL,NULL,NULL,'text/html','10970','','','',0,0,0,0,NULL,NULL),(10980,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10978,'ba7fa2e7-a465-4c2b-a201-92fde5bc4e05',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages bruno','','','',0,0,0,0,NULL,NULL),(10987,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20',10093,10985,'ab99451d-ab02-4e24-9064-af87a1cfa300',0,NULL,NULL,NULL,NULL,'text/html','10978','','','',0,0,0,0,NULL,NULL),(10993,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,10991,'e29b39ab-457a-4c07-b9c0-2f3b9670a38d',0,NULL,NULL,NULL,NULL,'text/html','10990','','','',0,0,0,0,NULL,NULL),(10998,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,10996,'0daa5c6e-5f84-4bf6-9bc9-416648355d6b',0,NULL,NULL,NULL,NULL,'text/html','10995','','','',0,0,0,0,NULL,NULL),(11005,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11003,'9484867a-4c6c-4b08-897f-73f4a02db5c6',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages bruno','','','',0,0,0,0,NULL,NULL),(11010,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11008,'476b8f8a-7247-4ded-9e4b-02f6551b114e',0,NULL,NULL,NULL,NULL,'text/html','11003','','','',0,0,0,0,NULL,NULL),(11016,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11014,'e0def183-df1e-457d-b286-9095e46981d5',0,NULL,NULL,NULL,NULL,'text/html','11013','','','',0,0,0,0,NULL,NULL),(11023,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11021,'ac7a1929-b813-4991-8e19-f19293874881',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','My documents','','','',0,0,0,0,NULL,NULL),(11028,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11026,'8c025da3-4eac-471c-b94e-21c5c724b0b2',0,NULL,NULL,NULL,NULL,'text/html','11021','','','',0,0,0,0,NULL,NULL),(11033,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11031,'96e3f4a0-8b7a-45ba-bcab-6aac1d201c03',0,NULL,NULL,NULL,NULL,'text/html','11030','','','',0,0,0,0,NULL,NULL),(11040,10235,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10046,11035,'b820e22d-c1c4-4e43-ae37-39944aa1d205',0,NULL,NULL,NULL,NULL,'','John Regular','','','',0,0,0,0,NULL,NULL),(11045,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11043,'538dcfa8-4d5c-4113-ab54-1a1d1375b82f',0,NULL,NULL,NULL,NULL,'text/html','11042','','','',0,0,0,0,NULL,NULL),(11052,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11050,'a4435a4b-d37d-4db5-879f-8c7e8c61be61',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages john','','','',0,0,0,0,NULL,NULL),(11059,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11057,'37248cd8-1f70-40ed-8efe-c9360356e918',0,NULL,NULL,NULL,NULL,'text/html','11050','','','',0,0,0,0,NULL,NULL),(11065,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11063,'502ec3ed-f122-48bc-b217-51add3af466a',0,NULL,NULL,NULL,NULL,'text/html','11062','','','',0,0,0,0,NULL,NULL),(11070,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11068,'a0364522-24da-4084-b5c4-6242607b4f1b',0,NULL,NULL,NULL,NULL,'text/html','11067','','','',0,0,0,0,NULL,NULL),(11077,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11075,'59aa7f4b-65a1-463a-aa7b-0292bc26bef7',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages john','','','',0,0,0,0,NULL,NULL),(11082,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11080,'4e3e9863-50cc-415e-94a4-f37585339cb7',0,NULL,NULL,NULL,NULL,'text/html','11075','','','',0,0,0,0,NULL,NULL),(11088,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10093,11086,'5d8e0861-7324-4f50-ab21-a7eccf44da2d',0,NULL,NULL,NULL,NULL,'text/html','11085','','','',0,0,0,0,NULL,NULL),(11095,11037,10202,11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11093,'2474f07c-65f6-4108-993b-e91ade321a6a',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','My documents','','','',0,0,0,0,NULL,NULL),(11100,11037,10202,11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11098,'462d8e00-3180-4ab0-9615-589cdd31296f',0,NULL,NULL,NULL,NULL,'text/html','11093','','','',0,0,0,0,NULL,NULL),(11105,11037,10202,11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11103,'18c1fdd6-cb5a-4a15-873f-ca827a86b92e',0,NULL,NULL,NULL,NULL,'text/html','11102','','','',0,0,0,0,NULL,NULL),(11112,10235,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10046,11107,'41a50f95-93e5-4cdf-9fc6-2f0a44898413',0,NULL,NULL,NULL,NULL,'','Michelle Writer','','','',0,0,0,0,NULL,NULL),(11117,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11115,'1aebd1c9-ba45-42ef-b07b-6bc600e60dab',0,NULL,NULL,NULL,NULL,'text/html','11114','','','',0,0,0,0,NULL,NULL),(11124,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11122,'3d6118ab-c342-410c-9d04-53fbe2d7ac69',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages michelle','','','',0,0,0,0,NULL,NULL),(11131,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11129,'b2d87596-3f12-47e8-918b-10031ef75a58',0,NULL,NULL,NULL,NULL,'text/html','11122','','','',0,0,0,0,NULL,NULL),(11137,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11135,'c21ce722-d12e-4915-9a2c-78e3278889f7',0,NULL,NULL,NULL,NULL,'text/html','11134','','','',0,0,0,0,NULL,NULL),(11142,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11140,'d82dfd97-2a52-4c01-9d32-aeee62375894',0,NULL,NULL,NULL,NULL,'text/html','11139','','','',0,0,0,0,NULL,NULL),(11149,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11147,'93e1dd4a-d53e-4979-808e-3981054578f9',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages michelle','','','',0,0,0,0,NULL,NULL),(11154,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11152,'38b5eb1d-b02d-4e31-9611-9a46587e791b',0,NULL,NULL,NULL,NULL,'text/html','11147','','','',0,0,0,0,NULL,NULL),(11160,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11158,'10136d6a-63f6-4414-84cf-1f8810c24e0c',0,NULL,NULL,NULL,NULL,'text/html','11157','','','',0,0,0,0,NULL,NULL),(11167,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11165,'b4bd8c20-f6da-423a-8bcb-129addd81770',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','My documents','','','',0,0,0,0,NULL,NULL),(11172,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11170,'d7babfce-1a1f-4976-af02-cd2b508c14e2',0,NULL,NULL,NULL,NULL,'text/html','11165','','','',0,0,0,0,NULL,NULL),(11177,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11175,'ecf54fb2-9a1c-4408-aee2-3105ef27bfa3',0,NULL,NULL,NULL,NULL,'text/html','11174','','','',0,0,0,0,NULL,NULL),(11184,10235,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22',10046,11179,'a2b721ef-f689-475c-8131-d53320195af7',0,NULL,NULL,NULL,NULL,'','Richard Editor','','','',0,0,0,0,NULL,NULL),(11189,11181,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11187,'36ee7149-b0a1-462c-b666-6b299ee40a74',0,NULL,NULL,NULL,NULL,'text/html','11186','','','',0,0,0,0,NULL,NULL),(11196,11181,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11194,'2403327a-ed5c-478c-b29f-0f4ae4076bba',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages richard','','','',0,0,0,0,NULL,NULL),(11203,11181,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22',10093,11201,'111bd8da-7db1-4232-8485-64a6c469f1ab',0,NULL,NULL,NULL,NULL,'text/html','11194','','','',0,0,0,0,NULL,NULL),(11209,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11207,'86ccc57b-2ab6-48ee-afe8-d024b882e424',0,NULL,NULL,NULL,NULL,'text/html','11206','','','',0,0,0,0,NULL,NULL),(11214,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11212,'625792ab-2b8c-46bb-a03c-346c80f47c77',0,NULL,NULL,NULL,NULL,'text/html','11211','','','',0,0,0,0,NULL,NULL),(11221,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10084,11219,'01856b8f-f039-4b5b-8e94-6f535be27d7e',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Public Pages richard','','','',0,0,0,0,NULL,NULL),(11226,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11224,'337fd55a-7c90-47b1-8508-3b870944adf6',0,NULL,NULL,NULL,NULL,'text/html','11219','','','',0,0,0,0,NULL,NULL),(11232,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11230,'c94ed765-5cab-487a-ac08-99d256092e1d',0,NULL,NULL,NULL,NULL,'text/html','11229','','','',0,0,0,0,NULL,NULL),(11239,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10084,11237,'4005d3ae-8b20-4229-ac7c-39d71077e56e',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','My documents','','','',0,0,0,0,NULL,NULL),(11244,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11242,'d42b22eb-1f16-489e-b503-f15eacee50e1',0,NULL,NULL,NULL,NULL,'text/html','11237','','','',0,0,0,0,NULL,NULL),(11249,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11247,'8e8eea17-8b84-4e6d-8095-89b24c103624',0,NULL,NULL,NULL,NULL,'text/html','11246','','','',0,0,0,0,NULL,NULL),(11252,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',10068,11251,'a694d015-9146-4d9d-a982-71b2cd567964',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','New Control Panel!!','','I am very excited about this! Administrating the portal with a few clicks is now very easy, you just have to acces the Control Panel in the dock menu (top right) to do any of the following things: Manage users, organizations and communities Create or assign roles Manage the content (Articles, blogs, wikis...) Add new plugins Update my account Change the settings of the portal and the server ...','',0,0,0,0,NULL,NULL),(11261,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',10093,11259,'0d20091f-0d37-427d-a804-381e1183f701',0,NULL,NULL,NULL,NULL,'text/html','11251','','','',0,0,0,0,NULL,NULL),(11267,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',10068,11266,'50b1b8ce-2b3a-4373-b092-555985491c3f',1,NULL,NULL,'2008-02-01 00:00:00',NULL,'text/html','Configuration of the portal: portal.properties','','In my previous entry I told you how I could manage the entire portal from the Control Panel. In this entry I wanted to show you how you can configure the preferences of your portal. There is a file called portal.properties with all the parameters you can configure for your portal. Please be advised, you should not modify this file. Instead, create a portal-ext.properties file and you can overwrite these properties there (Topic','',''),('c3bd4bc1-7eeb-4d42-856e-de2356a3682b',10593,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16','Image Type','Image Type','',''),('55b547da-b72e-410f-99b7-3b64ec3e595a',11419,10227,10202,10205,' ','2016-11-22 17:55:02','2016-11-22 17:55:02','Topic','Topic','',''),('3bc7f6b0-e5e5-439a-9001-4eb9a4df5961',11420,10235,10202,10205,' ','2016-11-22 17:55:02','2016-11-22 17:55:02','Topic','Topic','',''); /*!40000 ALTER TABLE `AssetVocabulary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BackgroundTask` -- DROP TABLE IF EXISTS `BackgroundTask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BackgroundTask` ( `backgroundTaskId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `servletContextNames` varchar(255) DEFAULT NULL, `taskExecutorClassName` varchar(200) DEFAULT NULL, `taskContext` longtext, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusMessage` longtext, PRIMARY KEY (`backgroundTaskId`), KEY `IX_C5A6C78F` (`companyId`), KEY `IX_5A09E5D1` (`groupId`), KEY `IX_98CC0AAB` (`groupId`,`name`,`taskExecutorClassName`), KEY `IX_579C63B0` (`groupId`,`name`,`taskExecutorClassName`,`completed`), KEY `IX_C71C3B7` (`groupId`,`status`), KEY `IX_A73B688A` (`groupId`,`taskExecutorClassName`), KEY `IX_7A9FF471` (`groupId`,`taskExecutorClassName`,`completed`), KEY `IX_7E757D70` (`groupId`,`taskExecutorClassName`,`status`), KEY `IX_C07CC7F8` (`name`), KEY `IX_75638CDF` (`status`), KEY `IX_2FCFE748` (`taskExecutorClassName`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BackgroundTask` -- LOCK TABLES `BackgroundTask` WRITE; /*!40000 ALTER TABLE `BackgroundTask` DISABLE KEYS */; /*!40000 ALTER TABLE `BackgroundTask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlogsEntry` -- DROP TABLE IF EXISTS `BlogsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BlogsEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `title` varchar(150) DEFAULT NULL, `urlTitle` varchar(150) DEFAULT NULL, `content` longtext, `displayDate` datetime DEFAULT NULL, `allowPingbacks` tinyint(4) DEFAULT NULL, `allowTrackbacks` tinyint(4) DEFAULT NULL, `trackbacks` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, `description` longtext, `smallImage` tinyint(4) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_DB780A20` (`groupId`,`urlTitle`), UNIQUE KEY `IX_1B1040FD` (`uuid_`,`groupId`), KEY `IX_72EF6041` (`companyId`), KEY `IX_430D791F` (`companyId`,`displayDate`), KEY `IX_BB0C2905` (`companyId`,`displayDate`,`status`), KEY `IX_EB2DCE27` (`companyId`,`status`), KEY `IX_8CACE77B` (`companyId`,`userId`), KEY `IX_A5F57B61` (`companyId`,`userId`,`status`), KEY `IX_81A50303` (`groupId`), KEY `IX_621E19D` (`groupId`,`displayDate`), KEY `IX_F0E73383` (`groupId`,`displayDate`,`status`), KEY `IX_1EFD8EE9` (`groupId`,`status`), KEY `IX_FBDE0AA3` (`groupId`,`userId`,`displayDate`), KEY `IX_DA04F689` (`groupId`,`userId`,`displayDate`,`status`), KEY `IX_49E15A23` (`groupId`,`userId`,`status`), KEY `IX_69157A4D` (`uuid_`), KEY `IX_2672F77F` (`displayDate`,`status`), KEY `IX_5E8307BB` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlogsEntry` -- LOCK TABLES `BlogsEntry` WRITE; /*!40000 ALTER TABLE `BlogsEntry` DISABLE KEYS */; INSERT INTO `BlogsEntry` VALUES ('a694d015-9146-4d9d-a982-71b2cd567964',11251,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23','New Control Panel!!','new-control-panel!!','

\n I am very excited about this! Administrating the portal with a few clicks is now very easy, you just have to acces the Control Panel in the dock menu (top right) to do any of the following things:\n

\n\n\n\n

\n Did I tell you how much I love being the Administrator since I have this amazing Control Panel? \"\"\n

','2008-02-01 00:00:00',0,0,'',0,10963,'Bruno Admin','2016-11-22 17:54:23',NULL,NULL,NULL,NULL),('50b1b8ce-2b3a-4373-b092-555985491c3f',11266,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23','Configuration of the portal: portal.properties','configuration-of-the-portal:-portal-properties','

\n In my previous entry I told you how I could manage the entire portal from the Control Panel.\n

\n\n

\n In this entry I wanted to show you how you can configure the preferences of your portal.\n

\n\n

\n There is a file called portal.properties with all the parameters you can configure for your portal. Please be advised, you should not modify this file. Instead, create a portal-ext.properties file and you can overwrite these properties there (More information about this here).\n

\n\n

\n Have a look at this file to see everything you can do. You will probably find this page very useful:www.liferay.com/web/guest/community/wiki/-/wiki/Main/Portal+Properties+5.1.1\n

','2008-02-01 00:00:00',0,0,'',0,10963,'Bruno Admin','2016-11-22 17:54:23',NULL,NULL,NULL,NULL),('90fb89f6-6a25-4fc3-8469-e746baa2b63b',11278,11037,10202,11035,'John Regular','2016-11-22 17:54:23','2016-11-22 17:54:23','Using the wiki','using-the-wiki','

\n Hi Guys,\n

\n\n

\n We have a new wiki and it is very easy to use. Anyone can write an article in there.\n

\n\n

\n For any issue related to Liferay, please go to: wiki.liferay.com\n

\n\n

\n Thank you!\n

','2008-02-01 00:00:00',0,0,'',0,11035,'John Regular','2016-11-22 17:54:23',NULL,NULL,NULL,NULL),('1ee2b6f8-806f-48b7-ad12-1597e4596a1b',11293,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:23','2016-11-22 17:54:23','We have an amazing Chat!','we-have-an-amazing-chat!','

\n Hi Guys,\n

\n\n

\n We have an amazing chat in the portal!! Just have a look at the bar at the bottom of the page when you are logged in and you will be able to see all your friends online and talk to them!\n

\n\n

\n Enjoy!! \n

','2008-02-01 00:00:00',0,0,'',0,11107,'Michelle Writer','2016-11-22 17:54:23',NULL,NULL,NULL,NULL),('b00de431-8ec4-45da-9153-61e5415e9231',11412,10227,10202,10239,'Test Test','2016-11-22 17:55:02','2016-11-22 17:55:02','aaa','aaa','

\n aa

','2016-11-22 17:54:00',1,1,'',0,10239,'Test Test','2016-11-22 17:55:02',NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `BlogsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlogsStatsUser` -- DROP TABLE IF EXISTS `BlogsStatsUser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BlogsStatsUser` ( `statsUserId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `entryCount` int(11) DEFAULT NULL, `lastPostDate` datetime DEFAULT NULL, `ratingsTotalEntries` int(11) DEFAULT NULL, `ratingsTotalScore` double DEFAULT NULL, `ratingsAverageScore` double DEFAULT NULL, PRIMARY KEY (`statsUserId`), UNIQUE KEY `IX_82254C25` (`groupId`,`userId`), KEY `IX_90CDA39A` (`companyId`,`entryCount`), KEY `IX_43840EEB` (`groupId`), KEY `IX_28C78D5C` (`groupId`,`entryCount`), KEY `IX_BB51F1D9` (`userId`), KEY `IX_507BA031` (`userId`,`lastPostDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlogsStatsUser` -- LOCK TABLES `BlogsStatsUser` WRITE; /*!40000 ALTER TABLE `BlogsStatsUser` DISABLE KEYS */; INSERT INTO `BlogsStatsUser` VALUES (11263,10965,10202,10963,2,'2008-02-01 00:00:00',0,0,0),(11290,11037,10202,11035,1,'2008-02-01 00:00:00',0,0,0),(11307,11109,10202,11107,1,'2008-02-01 00:00:00',0,0,0),(11418,10227,10202,10239,1,'2016-11-22 17:54:00',0,0,0); /*!40000 ALTER TABLE `BlogsStatsUser` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BookmarksEntry` -- DROP TABLE IF EXISTS `BookmarksEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BookmarksEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `url` longtext, `visits` int(11) DEFAULT NULL, `priority` int(11) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `description` longtext, `treePath` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_EAA02A91` (`uuid_`,`groupId`), KEY `IX_5200100C` (`groupId`,`folderId`), KEY `IX_B670BA39` (`uuid_`), KEY `IX_E848278F` (`resourceBlockId`), KEY `IX_1F90CA2D` (`companyId`), KEY `IX_276C8C13` (`companyId`,`status`), KEY `IX_146382F2` (`groupId`,`folderId`,`status`), KEY `IX_416AD7D5` (`groupId`,`status`), KEY `IX_C78B61AC` (`groupId`,`userId`,`folderId`,`status`), KEY `IX_9D9CF70F` (`groupId`,`userId`,`status`), KEY `IX_89BEDC4F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BookmarksEntry` -- LOCK TABLES `BookmarksEntry` WRITE; /*!40000 ALTER TABLE `BookmarksEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `BookmarksEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BookmarksFolder` -- DROP TABLE IF EXISTS `BookmarksFolder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BookmarksFolder` ( `uuid_` varchar(75) DEFAULT NULL, `folderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `userName` varchar(75) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `treePath` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`folderId`), UNIQUE KEY `IX_DC2F8927` (`uuid_`,`groupId`), KEY `IX_2ABA25D7` (`companyId`), KEY `IX_7F703619` (`groupId`), KEY `IX_967799C0` (`groupId`,`parentFolderId`), KEY `IX_451E7AE3` (`uuid_`), KEY `IX_28A49BB9` (`resourceBlockId`), KEY `IX_C27C9DBD` (`companyId`,`status`), KEY `IX_D16018A6` (`groupId`,`parentFolderId`,`status`), KEY `IX_54F0ED65` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BookmarksFolder` -- LOCK TABLES `BookmarksFolder` WRITE; /*!40000 ALTER TABLE `BookmarksFolder` DISABLE KEYS */; /*!40000 ALTER TABLE `BookmarksFolder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BrowserTracker` -- DROP TABLE IF EXISTS `BrowserTracker`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BrowserTracker` ( `browserTrackerId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `browserKey` bigint(20) DEFAULT NULL, PRIMARY KEY (`browserTrackerId`), UNIQUE KEY `IX_E7B95510` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BrowserTracker` -- LOCK TABLES `BrowserTracker` WRITE; /*!40000 ALTER TABLE `BrowserTracker` DISABLE KEYS */; INSERT INTO `BrowserTracker` VALUES (11408,10239,1394494796178); /*!40000 ALTER TABLE `BrowserTracker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalEvent` -- DROP TABLE IF EXISTS `CalEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalEvent` ( `uuid_` varchar(75) DEFAULT NULL, `eventId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `description` longtext, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `durationHour` int(11) DEFAULT NULL, `durationMinute` int(11) DEFAULT NULL, `allDay` tinyint(4) DEFAULT NULL, `timeZoneSensitive` tinyint(4) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `repeating` tinyint(4) DEFAULT NULL, `recurrence` longtext, `remindBy` int(11) DEFAULT NULL, `firstReminder` int(11) DEFAULT NULL, `secondReminder` int(11) DEFAULT NULL, `location` longtext, PRIMARY KEY (`eventId`), UNIQUE KEY `IX_5CCE79C8` (`uuid_`,`groupId`), KEY `IX_D6FD9496` (`companyId`), KEY `IX_12EE4898` (`groupId`), KEY `IX_4FDDD2BF` (`groupId`,`repeating`), KEY `IX_FCD7C63D` (`groupId`,`type_`), KEY `IX_F6006202` (`remindBy`), KEY `IX_C1AD2122` (`uuid_`), KEY `IX_FD93CBFA` (`groupId`,`type_`,`repeating`), KEY `IX_299639C6` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalEvent` -- LOCK TABLES `CalEvent` WRITE; /*!40000 ALTER TABLE `CalEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `CalEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Calendar` -- DROP TABLE IF EXISTS `Calendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Calendar` ( `uuid_` varchar(75) DEFAULT NULL, `calendarId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `calendarResourceId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `color` int(11) DEFAULT NULL, `defaultCalendar` tinyint(4) DEFAULT NULL, `enableComments` tinyint(4) DEFAULT NULL, `enableRatings` tinyint(4) DEFAULT NULL, PRIMARY KEY (`calendarId`), UNIQUE KEY `IX_3AE311A` (`uuid_`,`groupId`), KEY `IX_B53EB0E1` (`groupId`,`calendarResourceId`), KEY `IX_97FC174E` (`groupId`,`calendarResourceId`,`defaultCalendar`), KEY `IX_F0FAF226` (`resourceBlockId`), KEY `IX_96C8590` (`uuid_`), KEY `IX_97656498` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Calendar` -- LOCK TABLES `Calendar` WRITE; /*!40000 ALTER TABLE `Calendar` DISABLE KEYS */; /*!40000 ALTER TABLE `Calendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarBooking` -- DROP TABLE IF EXISTS `CalendarBooking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalendarBooking` ( `uuid_` varchar(75) DEFAULT NULL, `calendarBookingId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `calendarId` bigint(20) DEFAULT NULL, `calendarResourceId` bigint(20) DEFAULT NULL, `parentCalendarBookingId` bigint(20) DEFAULT NULL, `title` longtext, `description` longtext, `location` longtext, `startTime` bigint(20) DEFAULT NULL, `endTime` bigint(20) DEFAULT NULL, `allDay` tinyint(4) DEFAULT NULL, `recurrence` longtext, `firstReminder` bigint(20) DEFAULT NULL, `firstReminderType` varchar(75) DEFAULT NULL, `secondReminder` bigint(20) DEFAULT NULL, `secondReminderType` varchar(75) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`calendarBookingId`), UNIQUE KEY `IX_113A264E` (`calendarId`,`parentCalendarBookingId`), UNIQUE KEY `IX_F4C61797` (`uuid_`,`groupId`), KEY `IX_D300DFCE` (`calendarId`), KEY `IX_470170B4` (`calendarId`,`status`), KEY `IX_B198FFC` (`calendarResourceId`), KEY `IX_57EBF55B` (`parentCalendarBookingId`), KEY `IX_F7B8A941` (`parentCalendarBookingId`,`status`), KEY `IX_22DFDB49` (`resourceBlockId`), KEY `IX_F6E8EE73` (`uuid_`), KEY `IX_A21D9FD5` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarBooking` -- LOCK TABLES `CalendarBooking` WRITE; /*!40000 ALTER TABLE `CalendarBooking` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarBooking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarNotificationTemplate` -- DROP TABLE IF EXISTS `CalendarNotificationTemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalendarNotificationTemplate` ( `uuid_` varchar(75) DEFAULT NULL, `calendarNotificationTemplateId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `calendarId` bigint(20) DEFAULT NULL, `notificationType` varchar(75) DEFAULT NULL, `notificationTypeSettings` varchar(75) DEFAULT NULL, `notificationTemplateType` varchar(75) DEFAULT NULL, `subject` varchar(75) DEFAULT NULL, `body` longtext, PRIMARY KEY (`calendarNotificationTemplateId`), UNIQUE KEY `IX_4012E97F` (`uuid_`,`groupId`), KEY `IX_A412E5B6` (`calendarId`), KEY `IX_7727A482` (`calendarId`,`notificationType`,`notificationTemplateType`), KEY `IX_A2D4D78B` (`uuid_`), KEY `IX_4D7D97BD` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarNotificationTemplate` -- LOCK TABLES `CalendarNotificationTemplate` WRITE; /*!40000 ALTER TABLE `CalendarNotificationTemplate` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarNotificationTemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarResource` -- DROP TABLE IF EXISTS `CalendarResource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalendarResource` ( `uuid_` varchar(75) DEFAULT NULL, `calendarResourceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `classUuid` varchar(75) DEFAULT NULL, `code_` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`calendarResourceId`), UNIQUE KEY `IX_16A12327` (`classNameId`,`classPK`), UNIQUE KEY `IX_4ABD2BC8` (`uuid_`,`groupId`), KEY `IX_76DDD0F7` (`active_`), KEY `IX_4470A59D` (`companyId`,`code_`,`active_`), KEY `IX_1243D698` (`groupId`), KEY `IX_40678371` (`groupId`,`active_`), KEY `IX_55C2F8AA` (`groupId`,`code_`), KEY `IX_8BCB4D38` (`resourceBlockId`), KEY `IX_150E2F22` (`uuid_`), KEY `IX_56A06BC6` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarResource` -- LOCK TABLES `CalendarResource` WRITE; /*!40000 ALTER TABLE `CalendarResource` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarResource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Chat_Entry` -- DROP TABLE IF EXISTS `Chat_Entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Chat_Entry` ( `entryId` bigint(20) NOT NULL, `createDate` bigint(20) DEFAULT NULL, `fromUserId` bigint(20) DEFAULT NULL, `toUserId` bigint(20) DEFAULT NULL, `content` varchar(1000) DEFAULT NULL, `flag` int(11) DEFAULT NULL, PRIMARY KEY (`entryId`), KEY `IX_DAEF230F` (`createDate`), KEY `IX_AD559D93` (`createDate`,`fromUserId`), KEY `IX_D9E49928` (`createDate`,`fromUserId`,`toUserId`), KEY `IX_8BE273A4` (`createDate`,`toUserId`), KEY `IX_F9966D55` (`fromUserId`), KEY `IX_97FE1E6A` (`fromUserId`,`toUserId`), KEY `IX_2A17A23F` (`fromUserId`,`toUserId`,`content`), KEY `IX_16384BE6` (`toUserId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Chat_Entry` -- LOCK TABLES `Chat_Entry` WRITE; /*!40000 ALTER TABLE `Chat_Entry` DISABLE KEYS */; /*!40000 ALTER TABLE `Chat_Entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Chat_Status` -- DROP TABLE IF EXISTS `Chat_Status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Chat_Status` ( `statusId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `modifiedDate` bigint(20) DEFAULT NULL, `online_` tinyint(4) DEFAULT NULL, `awake` tinyint(4) DEFAULT NULL, `activePanelIds` longtext, `message` longtext, `playSound` tinyint(4) DEFAULT NULL, PRIMARY KEY (`statusId`), UNIQUE KEY `IX_E17EBD79` (`userId`), KEY `IX_15BD544A` (`modifiedDate`), KEY `IX_B723B792` (`modifiedDate`,`online_`), KEY `IX_32531B3D` (`online_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Chat_Status` -- LOCK TABLES `Chat_Status` WRITE; /*!40000 ALTER TABLE `Chat_Status` DISABLE KEYS */; INSERT INTO `Chat_Status` VALUES (11407,10239,1479837986683,1,1,'','',1); /*!40000 ALTER TABLE `Chat_Status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ClassName_` -- DROP TABLE IF EXISTS `ClassName_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ClassName_` ( `classNameId` bigint(20) NOT NULL, `value` varchar(200) DEFAULT NULL, PRIMARY KEY (`classNameId`), UNIQUE KEY `IX_B27A301F` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ClassName_` -- LOCK TABLES `ClassName_` WRITE; /*!40000 ALTER TABLE `ClassName_` DISABLE KEYS */; INSERT INTO `ClassName_` VALUES (11988,'com.liferay.calendar.model.Calendar'),(11989,'com.liferay.calendar.model.CalendarBooking'),(11990,'com.liferay.calendar.model.CalendarNotificationTemplate'),(11991,'com.liferay.calendar.model.CalendarResource'),(10331,'com.liferay.chat.model.Entry'),(10332,'com.liferay.chat.model.Status'),(12027,'com.liferay.contacts.model.Entry'),(10001,'com.liferay.counter.model.Counter'),(10461,'com.liferay.mail.model.Account'),(10462,'com.liferay.mail.model.Attachment'),(10463,'com.liferay.mail.model.Folder'),(10464,'com.liferay.mail.model.Message'),(11706,'com.liferay.marketplace.model.App'),(11707,'com.liferay.marketplace.model.Module'),(12001,'com.liferay.microblogs.model.MicroblogsEntry'),(12005,'com.liferay.notifications.model.UserNotificationEvent'),(10468,'com.liferay.opensocial.model.Gadget'),(12009,'com.liferay.opensocial.model.OAuthConsumer'),(12010,'com.liferay.opensocial.model.OAuthToken'),(11978,'com.liferay.portal.kernel.repository.model.FileEntry'),(10002,'com.liferay.portal.kernel.workflow.WorkflowTask'),(10003,'com.liferay.portal.model.Account'),(10004,'com.liferay.portal.model.Address'),(11883,'com.liferay.portal.model.BackgroundTask'),(10005,'com.liferay.portal.model.BrowserTracker'),(10006,'com.liferay.portal.model.ClassName'),(10007,'com.liferay.portal.model.ClusterGroup'),(10008,'com.liferay.portal.model.Company'),(10009,'com.liferay.portal.model.Contact'),(10010,'com.liferay.portal.model.Country'),(10011,'com.liferay.portal.model.EmailAddress'),(10012,'com.liferay.portal.model.Group'),(10013,'com.liferay.portal.model.Image'),(10014,'com.liferay.portal.model.Layout'),(11561,'com.liferay.portal.model.LayoutBranch'),(11884,'com.liferay.portal.model.LayoutFriendlyURL'),(10015,'com.liferay.portal.model.LayoutPrototype'),(11562,'com.liferay.portal.model.LayoutRevision'),(10016,'com.liferay.portal.model.LayoutSet'),(11563,'com.liferay.portal.model.LayoutSetBranch'),(10017,'com.liferay.portal.model.LayoutSetPrototype'),(10018,'com.liferay.portal.model.ListType'),(10019,'com.liferay.portal.model.Lock'),(10020,'com.liferay.portal.model.MembershipRequest'),(10024,'com.liferay.portal.model.Organization'),(10021,'com.liferay.portal.model.OrgGroupPermission'),(10022,'com.liferay.portal.model.OrgGroupRole'),(10023,'com.liferay.portal.model.OrgLabor'),(10025,'com.liferay.portal.model.PasswordPolicy'),(10026,'com.liferay.portal.model.PasswordPolicyRel'),(10027,'com.liferay.portal.model.PasswordTracker'),(10028,'com.liferay.portal.model.Permission'),(10029,'com.liferay.portal.model.Phone'),(10030,'com.liferay.portal.model.PluginSetting'),(11564,'com.liferay.portal.model.PortalPreferences'),(10031,'com.liferay.portal.model.Portlet'),(10032,'com.liferay.portal.model.PortletItem'),(10033,'com.liferay.portal.model.PortletPreferences'),(10034,'com.liferay.portal.model.Region'),(10035,'com.liferay.portal.model.Release'),(11565,'com.liferay.portal.model.Repository'),(11566,'com.liferay.portal.model.RepositoryEntry'),(10036,'com.liferay.portal.model.Resource'),(10037,'com.liferay.portal.model.ResourceAction'),(11567,'com.liferay.portal.model.ResourceBlock'),(11568,'com.liferay.portal.model.ResourceBlockPermission'),(10038,'com.liferay.portal.model.ResourceCode'),(10039,'com.liferay.portal.model.ResourcePermission'),(11569,'com.liferay.portal.model.ResourceTypePermission'),(10040,'com.liferay.portal.model.Role'),(10041,'com.liferay.portal.model.ServiceComponent'),(10042,'com.liferay.portal.model.Shard'),(10043,'com.liferay.portal.model.Subscription'),(11885,'com.liferay.portal.model.SystemEvent'),(10044,'com.liferay.portal.model.Team'),(10045,'com.liferay.portal.model.Ticket'),(10046,'com.liferay.portal.model.User'),(10047,'com.liferay.portal.model.UserGroup'),(10048,'com.liferay.portal.model.UserGroupGroupRole'),(10049,'com.liferay.portal.model.UserGroupRole'),(10050,'com.liferay.portal.model.UserIdMapper'),(11886,'com.liferay.portal.model.UserNotificationDelivery'),(11570,'com.liferay.portal.model.UserNotificationEvent'),(11597,'com.liferay.portal.model.UserPersonalSite'),(10051,'com.liferay.portal.model.UserTracker'),(10052,'com.liferay.portal.model.UserTrackerPath'),(11571,'com.liferay.portal.model.VirtualHost'),(10053,'com.liferay.portal.model.WebDAVProps'),(10054,'com.liferay.portal.model.Website'),(10055,'com.liferay.portal.model.WorkflowDefinitionLink'),(10056,'com.liferay.portal.model.WorkflowInstanceLink'),(10421,'com.liferay.portal.workflow.kaleo.model.KaleoAction'),(11996,'com.liferay.portal.workflow.kaleo.model.KaleoCondition'),(10422,'com.liferay.portal.workflow.kaleo.model.KaleoDefinition'),(10423,'com.liferay.portal.workflow.kaleo.model.KaleoInstance'),(10424,'com.liferay.portal.workflow.kaleo.model.KaleoInstanceToken'),(10425,'com.liferay.portal.workflow.kaleo.model.KaleoLog'),(10426,'com.liferay.portal.workflow.kaleo.model.KaleoNode'),(10427,'com.liferay.portal.workflow.kaleo.model.KaleoNotification'),(10428,'com.liferay.portal.workflow.kaleo.model.KaleoNotificationRecipient'),(10429,'com.liferay.portal.workflow.kaleo.model.KaleoTask'),(10430,'com.liferay.portal.workflow.kaleo.model.KaleoTaskAssignment'),(10431,'com.liferay.portal.workflow.kaleo.model.KaleoTaskAssignmentInstance'),(10432,'com.liferay.portal.workflow.kaleo.model.KaleoTaskInstanceToken'),(11997,'com.liferay.portal.workflow.kaleo.model.KaleoTimer'),(11998,'com.liferay.portal.workflow.kaleo.model.KaleoTimerInstanceToken'),(10433,'com.liferay.portal.workflow.kaleo.model.KaleoTransition'),(10057,'com.liferay.portlet.announcements.model.AnnouncementsDelivery'),(10058,'com.liferay.portlet.announcements.model.AnnouncementsEntry'),(10059,'com.liferay.portlet.announcements.model.AnnouncementsFlag'),(10060,'com.liferay.portlet.asset.model.AssetCategory'),(10061,'com.liferay.portlet.asset.model.AssetCategoryProperty'),(10062,'com.liferay.portlet.asset.model.AssetEntry'),(10063,'com.liferay.portlet.asset.model.AssetLink'),(10064,'com.liferay.portlet.asset.model.AssetTag'),(10065,'com.liferay.portlet.asset.model.AssetTagProperty'),(10066,'com.liferay.portlet.asset.model.AssetTagStats'),(10067,'com.liferay.portlet.asset.model.AssetVocabulary'),(10068,'com.liferay.portlet.blogs.model.BlogsEntry'),(10069,'com.liferay.portlet.blogs.model.BlogsStatsUser'),(10070,'com.liferay.portlet.bookmarks.model.BookmarksEntry'),(10071,'com.liferay.portlet.bookmarks.model.BookmarksFolder'),(10072,'com.liferay.portlet.calendar.model.CalEvent'),(11572,'com.liferay.portlet.documentlibrary.model.DLContent'),(10073,'com.liferay.portlet.documentlibrary.model.DLFileEntry'),(11573,'com.liferay.portlet.documentlibrary.model.DLFileEntryMetadata'),(11574,'com.liferay.portlet.documentlibrary.model.DLFileEntryType'),(10074,'com.liferay.portlet.documentlibrary.model.DLFileRank'),(10075,'com.liferay.portlet.documentlibrary.model.DLFileShortcut'),(10076,'com.liferay.portlet.documentlibrary.model.DLFileVersion'),(10077,'com.liferay.portlet.documentlibrary.model.DLFolder'),(11575,'com.liferay.portlet.documentlibrary.model.DLSync'),(11887,'com.liferay.portlet.documentlibrary.model.DLSyncEvent'),(11907,'com.liferay.portlet.documentlibrary.util.RawMetadataProcessor'),(11576,'com.liferay.portlet.dynamicdatalists.model.DDLRecord'),(11577,'com.liferay.portlet.dynamicdatalists.model.DDLRecordSet'),(11578,'com.liferay.portlet.dynamicdatalists.model.DDLRecordVersion'),(11579,'com.liferay.portlet.dynamicdatamapping.model.DDMContent'),(11580,'com.liferay.portlet.dynamicdatamapping.model.DDMStorageLink'),(11581,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure'),(11582,'com.liferay.portlet.dynamicdatamapping.model.DDMStructureLink'),(11583,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate'),(10078,'com.liferay.portlet.expando.model.ExpandoColumn'),(10079,'com.liferay.portlet.expando.model.ExpandoRow'),(10080,'com.liferay.portlet.expando.model.ExpandoTable'),(10081,'com.liferay.portlet.expando.model.ExpandoValue'),(10082,'com.liferay.portlet.imagegallery.model.IGFolder'),(10083,'com.liferay.portlet.imagegallery.model.IGImage'),(10084,'com.liferay.portlet.journal.model.JournalArticle'),(10085,'com.liferay.portlet.journal.model.JournalArticleImage'),(10086,'com.liferay.portlet.journal.model.JournalArticleResource'),(10087,'com.liferay.portlet.journal.model.JournalContentSearch'),(10088,'com.liferay.portlet.journal.model.JournalFeed'),(11801,'com.liferay.portlet.journal.model.JournalFolder'),(10089,'com.liferay.portlet.journal.model.JournalStructure'),(10090,'com.liferay.portlet.journal.model.JournalTemplate'),(10091,'com.liferay.portlet.messageboards.model.MBBan'),(10092,'com.liferay.portlet.messageboards.model.MBCategory'),(10093,'com.liferay.portlet.messageboards.model.MBDiscussion'),(10094,'com.liferay.portlet.messageboards.model.MBMailingList'),(10095,'com.liferay.portlet.messageboards.model.MBMessage'),(10096,'com.liferay.portlet.messageboards.model.MBMessageFlag'),(10097,'com.liferay.portlet.messageboards.model.MBStatsUser'),(10098,'com.liferay.portlet.messageboards.model.MBThread'),(11584,'com.liferay.portlet.messageboards.model.MBThreadFlag'),(11585,'com.liferay.portlet.mobiledevicerules.model.MDRAction'),(11586,'com.liferay.portlet.mobiledevicerules.model.MDRRule'),(11587,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup'),(11588,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance'),(10099,'com.liferay.portlet.polls.model.PollsChoice'),(10100,'com.liferay.portlet.polls.model.PollsQuestion'),(10101,'com.liferay.portlet.polls.model.PollsVote'),(10102,'com.liferay.portlet.ratings.model.RatingsEntry'),(10103,'com.liferay.portlet.ratings.model.RatingsStats'),(10104,'com.liferay.portlet.shopping.model.ShoppingCart'),(10105,'com.liferay.portlet.shopping.model.ShoppingCategory'),(10106,'com.liferay.portlet.shopping.model.ShoppingCoupon'),(10107,'com.liferay.portlet.shopping.model.ShoppingItem'),(10108,'com.liferay.portlet.shopping.model.ShoppingItemField'),(10109,'com.liferay.portlet.shopping.model.ShoppingItemPrice'),(10110,'com.liferay.portlet.shopping.model.ShoppingOrder'),(10111,'com.liferay.portlet.shopping.model.ShoppingOrderItem'),(10112,'com.liferay.portlet.social.model.SocialActivity'),(11589,'com.liferay.portlet.social.model.SocialActivityAchievement'),(11590,'com.liferay.portlet.social.model.SocialActivityCounter'),(11591,'com.liferay.portlet.social.model.SocialActivityLimit'),(11888,'com.liferay.portlet.social.model.SocialActivitySet'),(11592,'com.liferay.portlet.social.model.SocialActivitySetting'),(10113,'com.liferay.portlet.social.model.SocialEquityAssetEntry'),(10114,'com.liferay.portlet.social.model.SocialEquityGroupSetting'),(10115,'com.liferay.portlet.social.model.SocialEquityHistory'),(10116,'com.liferay.portlet.social.model.SocialEquityLog'),(10117,'com.liferay.portlet.social.model.SocialEquitySetting'),(10118,'com.liferay.portlet.social.model.SocialEquityUser'),(10119,'com.liferay.portlet.social.model.SocialRelation'),(10120,'com.liferay.portlet.social.model.SocialRequest'),(10121,'com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion'),(10122,'com.liferay.portlet.softwarecatalog.model.SCLicense'),(10123,'com.liferay.portlet.softwarecatalog.model.SCProductEntry'),(10124,'com.liferay.portlet.softwarecatalog.model.SCProductScreenshot'),(10125,'com.liferay.portlet.softwarecatalog.model.SCProductVersion'),(10126,'com.liferay.portlet.tasks.model.TasksProposal'),(10127,'com.liferay.portlet.tasks.model.TasksReview'),(11889,'com.liferay.portlet.trash.model.TrashEntry'),(11890,'com.liferay.portlet.trash.model.TrashVersion'),(11593,'com.liferay.portlet.usernotifications.model.UserNotificationEvent'),(10128,'com.liferay.portlet.wiki.model.WikiNode'),(10129,'com.liferay.portlet.wiki.model.WikiPage'),(10130,'com.liferay.portlet.wiki.model.WikiPageResource'),(12016,'com.liferay.privatemessaging.model.UserThread'),(12021,'com.liferay.so.model.FavoriteSite'),(12022,'com.liferay.so.model.MemberRequest'),(12023,'com.liferay.so.model.ProjectsEntry'),(10472,'com.liferay.socialnetworking.model.MeetupsEntry'),(10473,'com.liferay.socialnetworking.model.MeetupsRegistration'),(10474,'com.liferay.socialnetworking.model.WallEntry'),(12034,'com.liferay.sync.model.SyncDLFileVersionDiff'),(12035,'com.liferay.sync.model.SyncDLObject'),(12068,'com.liferay.tasks.model.TasksEntry'),(11386,'com.liferay.wsrp.model.WSRPConsumer'),(11387,'com.liferay.wsrp.model.WSRPConsumerPortlet'),(11388,'com.liferay.wsrp.model.WSRPProducer'); /*!40000 ALTER TABLE `ClassName_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ClusterGroup` -- DROP TABLE IF EXISTS `ClusterGroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ClusterGroup` ( `clusterGroupId` bigint(20) NOT NULL, `name` varchar(75) DEFAULT NULL, `clusterNodeIds` varchar(75) DEFAULT NULL, `wholeCluster` tinyint(4) DEFAULT NULL, PRIMARY KEY (`clusterGroupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ClusterGroup` -- LOCK TABLES `ClusterGroup` WRITE; /*!40000 ALTER TABLE `ClusterGroup` DISABLE KEYS */; /*!40000 ALTER TABLE `ClusterGroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Company` -- DROP TABLE IF EXISTS `Company`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Company` ( `companyId` bigint(20) NOT NULL, `accountId` bigint(20) DEFAULT NULL, `webId` varchar(75) DEFAULT NULL, `key_` longtext, `mx` varchar(75) DEFAULT NULL, `homeURL` longtext, `logoId` bigint(20) DEFAULT NULL, `system` tinyint(4) DEFAULT NULL, `maxUsers` int(11) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`companyId`), UNIQUE KEY `IX_EC00543C` (`webId`), KEY `IX_38EFE3FD` (`logoId`), KEY `IX_12566EC2` (`mx`), KEY `IX_35E3E7C6` (`system`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Company` -- LOCK TABLES `Company` WRITE; /*!40000 ALTER TABLE `Company` DISABLE KEYS */; INSERT INTO `Company` VALUES (10202,10204,'liferay.com','rO0ABXNyAB9qYXZheC5jcnlwdG8uc3BlYy5TZWNyZXRLZXlTcGVjW0cLZuIwYU0CAAJMAAlhbGdvcml0aG10ABJMamF2YS9sYW5nL1N0cmluZztbAANrZXl0AAJbQnhwdAADQUVTdXIAAltCrPMX+AYIVOACAAB4cAAAABBlqU2KOT1V6SMenr181pbZ','liferay.com','',0,0,0,1); /*!40000 ALTER TABLE `Company` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Contact_` -- DROP TABLE IF EXISTS `Contact_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Contact_` ( `contactId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `accountId` bigint(20) DEFAULT NULL, `parentContactId` bigint(20) DEFAULT NULL, `firstName` varchar(75) DEFAULT NULL, `middleName` varchar(75) DEFAULT NULL, `lastName` varchar(75) DEFAULT NULL, `prefixId` int(11) DEFAULT NULL, `suffixId` int(11) DEFAULT NULL, `male` tinyint(4) DEFAULT NULL, `birthday` datetime DEFAULT NULL, `smsSn` varchar(75) DEFAULT NULL, `aimSn` varchar(75) DEFAULT NULL, `facebookSn` varchar(75) DEFAULT NULL, `icqSn` varchar(75) DEFAULT NULL, `jabberSn` varchar(75) DEFAULT NULL, `msnSn` varchar(75) DEFAULT NULL, `mySpaceSn` varchar(75) DEFAULT NULL, `skypeSn` varchar(75) DEFAULT NULL, `twitterSn` varchar(75) DEFAULT NULL, `ymSn` varchar(75) DEFAULT NULL, `employeeStatusId` varchar(75) DEFAULT NULL, `employeeNumber` varchar(75) DEFAULT NULL, `jobTitle` varchar(100) DEFAULT NULL, `jobClass` varchar(75) DEFAULT NULL, `hoursOfOperation` varchar(75) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `emailAddress` varchar(75) DEFAULT NULL, PRIMARY KEY (`contactId`), KEY `IX_66D496A3` (`companyId`), KEY `IX_B8C28C53` (`accountId`), KEY `IX_791914FA` (`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Contact_` -- LOCK TABLES `Contact_` WRITE; /*!40000 ALTER TABLE `Contact_` DISABLE KEYS */; INSERT INTO `Contact_` VALUES (10206,10202,10205,'','2016-11-22 17:54:01','2016-11-22 17:54:01',10204,0,'','','',0,0,1,'2016-11-22 17:54:01','','','','','','','','','','','','','','','',10046,10205,'default@liferay.com'),(10240,10202,10239,'','2016-11-22 17:54:02','2016-11-22 17:54:02',10204,0,'Test','','Test',0,0,1,'1970-01-01 00:00:00','','','','','','','','','','','','','','','',10046,10239,'test@liferay.com'),(10964,10202,10963,'','2016-11-22 17:54:20','2016-11-22 17:54:20',10204,0,'Bruno','','Admin',0,0,1,'1970-01-01 00:00:00','','','','','','','','','','','','','Administrator','','',10046,10963,'bruno@7cogs.com'),(11036,10202,11035,'','2016-11-22 17:54:21','2016-11-22 17:54:21',10204,0,'John','','Regular',0,0,1,'1970-01-01 00:00:00','','','','','','','','','','','','','Employee','','',10046,11035,'john@7cogs.com'),(11108,10202,11107,'','2016-11-22 17:54:22','2016-11-22 17:54:22',10204,0,'Michelle','','Writer',0,0,0,'1970-01-01 00:00:00','','','','','','','','','','','','','Writer','','',10046,11107,'michelle@7cogs.com'),(11180,10202,11179,'','2016-11-22 17:54:22','2016-11-22 17:54:22',10204,0,'Richard','','Editor',0,0,1,'1970-01-01 00:00:00','','','','','','','','','','','','','Publisher','','',10046,11179,'richard@7cogs.com'); /*!40000 ALTER TABLE `Contact_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Contacts_Entry` -- DROP TABLE IF EXISTS `Contacts_Entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Contacts_Entry` ( `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `fullName` varchar(75) DEFAULT NULL, `emailAddress` varchar(75) DEFAULT NULL, `comments` longtext, PRIMARY KEY (`entryId`), KEY `IX_BD6B6406` (`userId`), KEY `IX_C257DE32` (`userId`,`emailAddress`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Contacts_Entry` -- LOCK TABLES `Contacts_Entry` WRITE; /*!40000 ALTER TABLE `Contacts_Entry` DISABLE KEYS */; /*!40000 ALTER TABLE `Contacts_Entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Counter` -- DROP TABLE IF EXISTS `Counter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Counter` ( `name` varchar(75) NOT NULL, `currentId` bigint(20) DEFAULT NULL, PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Counter` -- LOCK TABLES `Counter` WRITE; /*!40000 ALTER TABLE `Counter` DISABLE KEYS */; INSERT INTO `Counter` VALUES ('com.liferay.counter.model.Counter',12500),('com.liferay.portal.model.Layout#10219#true',1),('com.liferay.portal.model.Layout#10227#false',1),('com.liferay.portal.model.Layout#10241#false',1),('com.liferay.portal.model.Layout#10241#true',1),('com.liferay.portal.model.Layout#10335#true',1),('com.liferay.portal.model.Layout#10344#true',1),('com.liferay.portal.model.Layout#10353#true',1),('com.liferay.portal.model.Layout#10362#true',4),('com.liferay.portal.model.Layout#10391#true',4),('com.liferay.portal.model.Layout#10587#false',6),('com.liferay.portal.model.Layout#10587#true',2),('com.liferay.portal.model.Layout#10912#false',2),('com.liferay.portal.model.Layout#10965#false',2),('com.liferay.portal.model.Layout#10965#true',3),('com.liferay.portal.model.Layout#11037#false',2),('com.liferay.portal.model.Layout#11037#true',3),('com.liferay.portal.model.Layout#11109#false',2),('com.liferay.portal.model.Layout#11109#true',3),('com.liferay.portal.model.Layout#11181#false',2),('com.liferay.portal.model.Layout#11181#true',3),('com.liferay.portal.model.Layout#11628#true',1),('com.liferay.portal.model.Layout#11637#true',3),('com.liferay.portal.model.Layout#11663#true',4),('com.liferay.portal.model.Layout#11910#true',2),('com.liferay.portal.model.Layout#11936#true',3),('com.liferay.portal.model.Layout#12137#true',7),('com.liferay.portal.model.Layout#12211#true',6),('com.liferay.portal.model.Layout#12269#true',3),('com.liferay.portal.model.Permission',200),('com.liferay.portal.model.Resource',200),('com.liferay.portal.model.ResourceAction',1500),('com.liferay.portal.model.ResourcePermission',2200),('com.liferay.portlet.documentlibrary.model.DLFileEntry',200),('com.liferay.portlet.social.model.SocialActivity',100),('com.liferay.portlet.social.model.SocialRequest',100); /*!40000 ALTER TABLE `Counter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Country` -- DROP TABLE IF EXISTS `Country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Country` ( `countryId` bigint(20) NOT NULL, `name` varchar(75) DEFAULT NULL, `a2` varchar(75) DEFAULT NULL, `a3` varchar(75) DEFAULT NULL, `number_` varchar(75) DEFAULT NULL, `idd_` varchar(75) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `zipRequired` tinyint(4) DEFAULT NULL, PRIMARY KEY (`countryId`), UNIQUE KEY `IX_717B97E1` (`a2`), UNIQUE KEY `IX_717B9BA2` (`a3`), UNIQUE KEY `IX_19DA007B` (`name`), KEY `IX_25D734CD` (`active_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Country` -- LOCK TABLES `Country` WRITE; /*!40000 ALTER TABLE `Country` DISABLE KEYS */; INSERT INTO `Country` VALUES (1,'canada','CA','CAN','124','001',1,1),(2,'china','CN','CHN','156','086',1,1),(3,'france','FR','FRA','250','033',1,1),(4,'germany','DE','DEU','276','049',1,1),(5,'hong-kong','HK','HKG','344','852',1,1),(6,'hungary','HU','HUN','348','036',1,1),(7,'israel','IL','ISR','376','972',1,1),(8,'italy','IT','ITA','380','039',1,1),(9,'japan','JP','JPN','392','081',1,1),(10,'south-korea','KR','KOR','410','082',1,1),(11,'netherlands','NL','NLD','528','031',1,1),(12,'portugal','PT','PRT','620','351',1,1),(13,'russia','RU','RUS','643','007',1,1),(14,'singapore','SG','SGP','702','065',1,1),(15,'spain','ES','ESP','724','034',1,1),(16,'turkey','TR','TUR','792','090',1,1),(17,'vietnam','VM','VNM','704','084',1,1),(18,'united-kingdom','GB','GBR','826','044',1,1),(19,'united-states','US','USA','840','001',1,1),(20,'afghanistan','AF','AFG','4','093',1,1),(21,'albania','AL','ALB','8','355',1,1),(22,'algeria','DZ','DZA','12','213',1,1),(23,'american-samoa','AS','ASM','16','684',1,1),(24,'andorra','AD','AND','20','376',1,1),(25,'angola','AO','AGO','24','244',1,0),(26,'anguilla','AI','AIA','660','264',1,1),(27,'antarctica','AQ','ATA','10','672',1,1),(28,'antigua-barbuda','AG','ATG','28','268',1,0),(29,'argentina','AR','ARG','32','054',1,1),(30,'armenia','AM','ARM','51','374',1,1),(31,'aruba','AW','ABW','533','297',1,0),(32,'australia','AU','AUS','36','061',1,1),(33,'austria','AT','AUT','40','043',1,1),(34,'azerbaijan','AZ','AZE','31','994',1,1),(35,'bahamas','BS','BHS','44','242',1,0),(36,'bahrain','BH','BHR','48','973',1,1),(37,'bangladesh','BD','BGD','50','880',1,1),(38,'barbados','BB','BRB','52','246',1,1),(39,'belarus','BY','BLR','112','375',1,1),(40,'belgium','BE','BEL','56','032',1,1),(41,'belize','BZ','BLZ','84','501',1,0),(42,'benin','BJ','BEN','204','229',1,0),(43,'bermuda','BM','BMU','60','441',1,1),(44,'bhutan','BT','BTN','64','975',1,1),(45,'bolivia','BO','BOL','68','591',1,1),(46,'bosnia-herzegovina','BA','BIH','70','387',1,1),(47,'botswana','BW','BWA','72','267',1,0),(48,'brazil','BR','BRA','76','055',1,1),(49,'british-virgin-islands','VG','VGB','92','284',1,1),(50,'brunei','BN','BRN','96','673',1,1),(51,'bulgaria','BG','BGR','100','359',1,1),(52,'burkina-faso','BF','BFA','854','226',1,0),(53,'burma-myanmar','MM','MMR','104','095',1,1),(54,'burundi','BI','BDI','108','257',1,0),(55,'cambodia','KH','KHM','116','855',1,1),(56,'cameroon','CM','CMR','120','237',1,1),(57,'cape-verde-island','CV','CPV','132','238',1,1),(58,'cayman-islands','KY','CYM','136','345',1,1),(59,'central-african-republic','CF','CAF','140','236',1,0),(60,'chad','TD','TCD','148','235',1,1),(61,'chile','CL','CHL','152','056',1,1),(62,'christmas-island','CX','CXR','162','061',1,1),(63,'cocos-islands','CC','CCK','166','061',1,1),(64,'colombia','CO','COL','170','057',1,1),(65,'comoros','KM','COM','174','269',1,0),(66,'republic-of-congo','CD','COD','180','242',1,0),(67,'democratic-republic-of-congo','CG','COG','178','243',1,0),(68,'cook-islands','CK','COK','184','682',1,0),(69,'costa-rica','CR','CRI','188','506',1,1),(70,'croatia','HR','HRV','191','385',1,1),(71,'cuba','CU','CUB','192','053',1,1),(72,'cyprus','CY','CYP','196','357',1,1),(73,'czech-republic','CZ','CZE','203','420',1,1),(74,'denmark','DK','DNK','208','045',1,1),(75,'djibouti','DJ','DJI','262','253',1,0),(76,'dominica','DM','DMA','212','767',1,0),(77,'dominican-republic','DO','DOM','214','809',1,1),(78,'ecuador','EC','ECU','218','593',1,1),(79,'egypt','EG','EGY','818','020',1,1),(80,'el-salvador','SV','SLV','222','503',1,1),(81,'equatorial-guinea','GQ','GNQ','226','240',1,0),(82,'eritrea','ER','ERI','232','291',1,0),(83,'estonia','EE','EST','233','372',1,1),(84,'ethiopia','ET','ETH','231','251',1,1),(85,'faeroe-islands','FO','FRO','234','298',1,1),(86,'falkland-islands','FK','FLK','238','500',1,1),(87,'fiji-islands','FJ','FJI','242','679',1,0),(88,'finland','FI','FIN','246','358',1,1),(89,'french-guiana','GF','GUF','254','594',1,1),(90,'french-polynesia','PF','PYF','258','689',1,1),(91,'gabon','GA','GAB','266','241',1,1),(92,'gambia','GM','GMB','270','220',1,0),(93,'georgia','GE','GEO','268','995',1,1),(94,'ghana','GH','GHA','288','233',1,0),(95,'gibraltar','GI','GIB','292','350',1,1),(96,'greece','GR','GRC','300','030',1,1),(97,'greenland','GL','GRL','304','299',1,1),(98,'grenada','GD','GRD','308','473',1,0),(99,'guadeloupe','GP','GLP','312','590',1,1),(100,'guam','GU','GUM','316','671',1,1),(101,'guatemala','GT','GTM','320','502',1,1),(102,'guinea','GN','GIN','324','224',1,0),(103,'guinea-bissau','GW','GNB','624','245',1,1),(104,'guyana','GY','GUY','328','592',1,0),(105,'haiti','HT','HTI','332','509',1,1),(106,'honduras','HN','HND','340','504',1,1),(107,'iceland','IS','ISL','352','354',1,1),(108,'india','IN','IND','356','091',1,1),(109,'indonesia','ID','IDN','360','062',1,1),(110,'iran','IR','IRN','364','098',1,1),(111,'iraq','IQ','IRQ','368','964',1,1),(112,'ireland','IE','IRL','372','353',1,0),(113,'ivory-coast','CI','CIV','384','225',1,1),(114,'jamaica','JM','JAM','388','876',1,1),(115,'jordan','JO','JOR','400','962',1,1),(116,'kazakhstan','KZ','KAZ','398','007',1,1),(117,'kenya','KE','KEN','404','254',1,1),(118,'kiribati','KI','KIR','408','686',1,0),(119,'kuwait','KW','KWT','414','965',1,1),(120,'north-korea','KP','PRK','408','850',1,0),(121,'kyrgyzstan','KG','KGZ','471','996',1,1),(122,'laos','LA','LAO','418','856',1,1),(123,'latvia','LV','LVA','428','371',1,1),(124,'lebanon','LB','LBN','422','961',1,1),(125,'lesotho','LS','LSO','426','266',1,1),(126,'liberia','LR','LBR','430','231',1,1),(127,'libya','LY','LBY','434','218',1,1),(128,'liechtenstein','LI','LIE','438','423',1,1),(129,'lithuania','LT','LTU','440','370',1,1),(130,'luxembourg','LU','LUX','442','352',1,1),(131,'macau','MO','MAC','446','853',1,0),(132,'macedonia','MK','MKD','807','389',1,1),(133,'madagascar','MG','MDG','450','261',1,1),(134,'malawi','MW','MWI','454','265',1,0),(135,'malaysia','MY','MYS','458','060',1,1),(136,'maldives','MV','MDV','462','960',1,1),(137,'mali','ML','MLI','466','223',1,0),(138,'malta','MT','MLT','470','356',1,1),(139,'marshall-islands','MH','MHL','584','692',1,1),(140,'martinique','MQ','MTQ','474','596',1,1),(141,'mauritania','MR','MRT','478','222',1,0),(142,'mauritius','MU','MUS','480','230',1,0),(143,'mayotte-island','YT','MYT','175','269',1,1),(144,'mexico','MX','MEX','484','052',1,1),(145,'micronesia','FM','FSM','583','691',1,1),(146,'moldova','MD','MDA','498','373',1,1),(147,'monaco','MC','MCO','492','377',1,1),(148,'mongolia','MN','MNG','496','976',1,1),(149,'montenegro','ME','MNE','499','382',1,1),(150,'montserrat','MS','MSR','500','664',1,0),(151,'morocco','MA','MAR','504','212',1,1),(152,'mozambique','MZ','MOZ','508','258',1,1),(153,'namibia','NA','NAM','516','264',1,1),(154,'nauru','NR','NRU','520','674',1,0),(155,'nepal','NP','NPL','524','977',1,1),(156,'netherlands-antilles','AN','ANT','530','599',1,1),(157,'new-caledonia','NC','NCL','540','687',1,1),(158,'new-zealand','NZ','NZL','554','064',1,1),(159,'nicaragua','NI','NIC','558','505',1,1),(160,'niger','NE','NER','562','227',1,1),(161,'nigeria','NG','NGA','566','234',1,1),(162,'niue','NU','NIU','570','683',1,0),(163,'norfolk-island','NF','NFK','574','672',1,1),(164,'norway','NO','NOR','578','047',1,1),(165,'oman','OM','OMN','512','968',1,1),(166,'pakistan','PK','PAK','586','092',1,1),(167,'palau','PW','PLW','585','680',1,1),(168,'palestine','PS','PSE','275','970',1,1),(169,'panama','PA','PAN','591','507',1,1),(170,'papua-new-guinea','PG','PNG','598','675',1,1),(171,'paraguay','PY','PRY','600','595',1,1),(172,'peru','PE','PER','604','051',1,1),(173,'philippines','PH','PHL','608','063',1,1),(174,'poland','PL','POL','616','048',1,1),(175,'puerto-rico','PR','PRI','630','787',1,1),(176,'qatar','QA','QAT','634','974',1,0),(177,'reunion-island','RE','REU','638','262',1,1),(178,'romania','RO','ROU','642','040',1,1),(179,'rwanda','RW','RWA','646','250',1,0),(180,'st-helena','SH','SHN','654','290',1,1),(181,'st-kitts','KN','KNA','659','869',1,0),(182,'st-lucia','LC','LCA','662','758',1,0),(183,'st-pierre-miquelon','PM','SPM','666','508',1,1),(184,'st-vincent','VC','VCT','670','784',1,1),(185,'san-marino','SM','SMR','674','378',1,1),(186,'sao-tome-principe','ST','STP','678','239',1,0),(187,'saudi-arabia','SA','SAU','682','966',1,1),(188,'senegal','SN','SEN','686','221',1,1),(189,'serbia','RS','SRB','688','381',1,1),(190,'seychelles','SC','SYC','690','248',1,0),(191,'sierra-leone','SL','SLE','694','249',1,0),(192,'slovakia','SK','SVK','703','421',1,1),(193,'slovenia','SI','SVN','705','386',1,1),(194,'solomon-islands','SB','SLB','90','677',1,0),(195,'somalia','SO','SOM','706','252',1,0),(196,'south-africa','ZA','ZAF','710','027',1,1),(197,'sri-lanka','LK','LKA','144','094',1,1),(198,'sudan','SD','SDN','736','095',1,1),(199,'suriname','SR','SUR','740','597',1,0),(200,'swaziland','SZ','SWZ','748','268',1,1),(201,'sweden','SE','SWE','752','046',1,1),(202,'switzerland','CH','CHE','756','041',1,1),(203,'syria','SY','SYR','760','963',1,0),(204,'taiwan','TW','TWN','158','886',1,1),(205,'tajikistan','TJ','TJK','762','992',1,1),(206,'tanzania','TZ','TZA','834','255',1,0),(207,'thailand','TH','THA','764','066',1,1),(208,'togo','TG','TGO','768','228',1,1),(209,'tonga','TO','TON','776','676',1,0),(210,'trinidad-tobago','TT','TTO','780','868',1,0),(211,'tunisia','TN','TUN','788','216',1,1),(212,'turkmenistan','TM','TKM','795','993',1,1),(213,'turks-caicos','TC','TCA','796','649',1,1),(214,'tuvalu','TV','TUV','798','688',1,0),(215,'uganda','UG','UGA','800','256',1,0),(216,'ukraine','UA','UKR','804','380',1,1),(217,'united-arab-emirates','AE','ARE','784','971',1,0),(218,'uruguay','UY','URY','858','598',1,1),(219,'uzbekistan','UZ','UZB','860','998',1,1),(220,'vanuatu','VU','VUT','548','678',1,0),(221,'vatican-city','VA','VAT','336','039',1,1),(222,'venezuela','VE','VEN','862','058',1,1),(223,'wallis-futuna','WF','WLF','876','681',1,1),(224,'western-samoa','WS','WSM','882','685',1,1),(225,'yemen','YE','YEM','887','967',1,0),(226,'zambia','ZM','ZMB','894','260',1,1),(227,'zimbabwe','ZW','ZWE','716','263',1,0),(228,'aland-islands','AX','ALA','248','359',1,1),(229,'bonaire-st-eustatius-saba','BQ','BES','535','599',1,1),(230,'bouvet-island','BV','BVT','74','047',1,1),(231,'british-indian-ocean-territory','IO','IOT','86','246',1,1),(232,'curacao','CW','CUW','531','599',1,1),(233,'french-southern-territories','TF','ATF','260','033',1,0),(234,'guernsey','GG','GGY','831','044',1,1),(235,'heard-island-mcdonald-islands','HM','HMD','334','061',1,1),(236,'isle-of-man','IM','IMN','833','044',1,1),(237,'jersey','JE','JEY','832','044',1,1),(238,'northern-mariana-islands','MP','MNP','580','670',1,1),(239,'pitcairn','PN','PCN','612','649',1,1),(240,'south-georgia-south-sandwich-islands','GS','SGS','239','044',1,1),(241,'south-sudan','SS','SSD','728','211',1,1),(242,'sint-maarten','SX','SXM','534','721',1,1),(243,'st-barthelemy','BL','BLM','652','590',1,1),(244,'st-martin','MF','MAF','663','590',1,1),(245,'tokelau','TK','TKL','772','690',1,0),(246,'timor-leste','TL','TLS','626','670',1,1),(247,'united-states-minor-outlying-islands','UM','UMI','581','699',1,1),(248,'united-states-virgin-islands','VI','VIR','850','340',1,1),(249,'western-sahara','EH','ESH','732','212',1,1); /*!40000 ALTER TABLE `Country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CyrusUser` -- DROP TABLE IF EXISTS `CyrusUser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CyrusUser` ( `userId` varchar(75) NOT NULL, `password_` varchar(75) NOT NULL, PRIMARY KEY (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CyrusUser` -- LOCK TABLES `CyrusUser` WRITE; /*!40000 ALTER TABLE `CyrusUser` DISABLE KEYS */; /*!40000 ALTER TABLE `CyrusUser` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CyrusVirtual` -- DROP TABLE IF EXISTS `CyrusVirtual`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CyrusVirtual` ( `emailAddress` varchar(75) NOT NULL, `userId` varchar(75) NOT NULL, PRIMARY KEY (`emailAddress`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CyrusVirtual` -- LOCK TABLES `CyrusVirtual` WRITE; /*!40000 ALTER TABLE `CyrusVirtual` DISABLE KEYS */; /*!40000 ALTER TABLE `CyrusVirtual` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDLRecord` -- DROP TABLE IF EXISTS `DDLRecord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDLRecord` ( `uuid_` varchar(75) DEFAULT NULL, `recordId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `versionUserId` bigint(20) DEFAULT NULL, `versionUserName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `DDMStorageId` bigint(20) DEFAULT NULL, `recordSetId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `displayIndex` int(11) DEFAULT NULL, PRIMARY KEY (`recordId`), UNIQUE KEY `IX_B4328F39` (`uuid_`,`groupId`), KEY `IX_87A6B599` (`recordSetId`), KEY `IX_AAC564D3` (`recordSetId`,`userId`), KEY `IX_8BC2F891` (`uuid_`), KEY `IX_6A6C1C85` (`companyId`), KEY `IX_384AB6F7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDLRecord` -- LOCK TABLES `DDLRecord` WRITE; /*!40000 ALTER TABLE `DDLRecord` DISABLE KEYS */; /*!40000 ALTER TABLE `DDLRecord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDLRecordSet` -- DROP TABLE IF EXISTS `DDLRecordSet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDLRecordSet` ( `uuid_` varchar(75) DEFAULT NULL, `recordSetId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `DDMStructureId` bigint(20) DEFAULT NULL, `recordSetKey` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `minDisplayRows` int(11) DEFAULT NULL, `scope` int(11) DEFAULT NULL, PRIMARY KEY (`recordSetId`), UNIQUE KEY `IX_56DAB121` (`groupId`,`recordSetKey`), UNIQUE KEY `IX_270BA5E1` (`uuid_`,`groupId`), KEY `IX_4FA5969F` (`groupId`), KEY `IX_561E44E9` (`uuid_`), KEY `IX_5938C39F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDLRecordSet` -- LOCK TABLES `DDLRecordSet` WRITE; /*!40000 ALTER TABLE `DDLRecordSet` DISABLE KEYS */; /*!40000 ALTER TABLE `DDLRecordSet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDLRecordVersion` -- DROP TABLE IF EXISTS `DDLRecordVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDLRecordVersion` ( `recordVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `DDMStorageId` bigint(20) DEFAULT NULL, `recordSetId` bigint(20) DEFAULT NULL, `recordId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `displayIndex` int(11) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`recordVersionId`), UNIQUE KEY `IX_C79E347` (`recordId`,`version`), KEY `IX_2F4DDFE1` (`recordId`), KEY `IX_762ADC7` (`recordId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDLRecordVersion` -- LOCK TABLES `DDLRecordVersion` WRITE; /*!40000 ALTER TABLE `DDLRecordVersion` DISABLE KEYS */; /*!40000 ALTER TABLE `DDLRecordVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMContent` -- DROP TABLE IF EXISTS `DDMContent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMContent` ( `uuid_` varchar(75) DEFAULT NULL, `contentId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` longtext, `description` longtext, `xml` longtext, PRIMARY KEY (`contentId`), UNIQUE KEY `IX_EB9BDE28` (`uuid_`,`groupId`), KEY `IX_E3BAF436` (`companyId`), KEY `IX_50BF1038` (`groupId`), KEY `IX_AE4B50C2` (`uuid_`), KEY `IX_3A9C0626` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMContent` -- LOCK TABLES `DDMContent` WRITE; /*!40000 ALTER TABLE `DDMContent` DISABLE KEYS */; /*!40000 ALTER TABLE `DDMContent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStorageLink` -- DROP TABLE IF EXISTS `DDMStorageLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStorageLink` ( `uuid_` varchar(75) DEFAULT NULL, `storageLinkId` bigint(20) NOT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `structureId` bigint(20) DEFAULT NULL, PRIMARY KEY (`storageLinkId`), UNIQUE KEY `IX_702D1AD5` (`classPK`), KEY `IX_81776090` (`structureId`), KEY `IX_32A18526` (`uuid_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStorageLink` -- LOCK TABLES `DDMStorageLink` WRITE; /*!40000 ALTER TABLE `DDMStorageLink` DISABLE KEYS */; /*!40000 ALTER TABLE `DDMStorageLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStructure` -- DROP TABLE IF EXISTS `DDMStructure`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStructure` ( `uuid_` varchar(75) DEFAULT NULL, `structureId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `structureKey` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `xsd` longtext, `storageType` varchar(75) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `parentStructureId` bigint(20) DEFAULT NULL, PRIMARY KEY (`structureId`), UNIQUE KEY `IX_85C7EBE2` (`uuid_`,`groupId`), UNIQUE KEY `IX_C8785130` (`groupId`,`classNameId`,`structureKey`), KEY `IX_31817A62` (`classNameId`), KEY `IX_4FBAC092` (`companyId`,`classNameId`), KEY `IX_C8419FBE` (`groupId`), KEY `IX_E61809C8` (`uuid_`), KEY `IX_B6ED5E50` (`groupId`,`classNameId`), KEY `IX_43395316` (`groupId`,`parentStructureId`), KEY `IX_657899A8` (`parentStructureId`), KEY `IX_20FDE04C` (`structureKey`), KEY `IX_F9FB8D60` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStructure` -- LOCK TABLES `DDMStructure` WRITE; /*!40000 ALTER TABLE `DDMStructure` DISABLE KEYS */; INSERT INTO `DDMStructure` VALUES ('0e7c0f42-5b76-4428-bd89-0b46e49668bf',11615,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'LEARNING MODULE METADATA','Learning Module Metadata','Learning Module Metadata','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,NULL),('905653f4-7b1d-4108-b233-c9042a78aafc',11616,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'MARKETING CAMPAIGN THEME METADATA','Marketing Campaign Theme Metadata','Marketing Campaign Theme Metadata','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,NULL),('560eebdd-ea19-4c66-928f-c157e9f54421',11617,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'MEETING METADATA','Meeting Metadata','Metadata for meeting','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,NULL),('c245663b-f877-48bb-9d17-eb490b4fe25b',11619,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'AUTO_98919C9A-03CA-4C54-8878-1CC9DA325634','Contract','Contract','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',1,NULL),('25449a98-6f82-4685-b396-0b100fd3f0f2',11621,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'AUTO_8F13770B-CDE0-43BF-886E-1D96DE22F43E','Marketing Banner','Marketing Banner','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',1,NULL),('a5c410f4-6b3d-4794-b247-99ad284d6b5e',11623,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'AUTO_A43FC6FC-4A53-4CEA-9368-F039D925BB21','Online Training','Online Training','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',1,NULL),('f5efa72a-151f-405c-8663-2df4024566c7',11625,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',11573,'AUTO_D4BEFD0C-C6EB-4DA1-830F-C688C81F267F','Sales Presentation','Sales Presentation','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',1,NULL),('0436deb0-551a-4ba2-b651-3e30afda3697',11626,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',10073,'TIKARAWMETADATA','TikaRawMetadata','TikaRawMetadata','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,NULL),('a3fc0e18-b61f-436e-8790-96893ea9f9ef',11698,10227,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',11577,'CONTACTS','Contacts','Contacts','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,NULL),('817f6d2e-7851-45e1-ae29-b54017465d71',11699,10227,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',11577,'EVENTS','Events','Events','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,0),('868e34ad-023b-44d6-b8e4-52e19a25679b',11700,10227,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',11577,'INVENTORY','Inventory','Inventory','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,NULL),('951ddf70-fafc-4856-bbed-17f640ea321a',11701,10227,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',11577,'ISSUES TRACKING','Issues Tracking','Issue Tracking','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,0),('f4e7b459-ed78-45fb-9435-355f5d270dd0',11702,10227,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',11577,'MEETING MINUTES','Meeting Minutes','Meeting Minutes','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,0),('d6db00b5-708a-4d1a-be09-7b69b2d362c4',11703,10227,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',11577,'TO DO','To Do','To Do','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,0),('0e6d9da8-3604-4e19-9b01-23de15ea43d7',11802,10227,10202,10205,' ','2016-11-22 17:54:14','2016-11-22 17:54:14',10084,'SINGLE-IMAGE','Single Image','A single image, optional link','\n\n\n \n \n \n \n \n \n \n \n \n \n','xml',0,0),('775bfa4a-12a3-4efb-8c22-4ccd2daf7f8e',11803,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10084,'SINGLE-IMAGE','Single Image','A single image, optional link','\n\n\n \n \n \n \n \n \n \n \n \n \n','xml',0,0),('1b569907-9985-4f1a-8a50-3aeac3961bd3',11908,10235,10202,10205,'','2016-11-22 18:05:20','2016-11-22 18:05:20',11907,'TIKARAWMETADATA','TIKARAWMETADATA','TIKARAWMETADATA','\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n','xml',0,0); /*!40000 ALTER TABLE `DDMStructure` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStructureLink` -- DROP TABLE IF EXISTS `DDMStructureLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStructureLink` ( `structureLinkId` bigint(20) NOT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `structureId` bigint(20) DEFAULT NULL, PRIMARY KEY (`structureLinkId`), UNIQUE KEY `IX_C803899D` (`classPK`), KEY `IX_D43E4208` (`classNameId`), KEY `IX_17692B58` (`structureId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStructureLink` -- LOCK TABLES `DDMStructureLink` WRITE; /*!40000 ALTER TABLE `DDMStructureLink` DISABLE KEYS */; /*!40000 ALTER TABLE `DDMStructureLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMTemplate` -- DROP TABLE IF EXISTS `DDMTemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMTemplate` ( `uuid_` varchar(75) DEFAULT NULL, `templateId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `type_` varchar(75) DEFAULT NULL, `mode_` varchar(75) DEFAULT NULL, `language` varchar(75) DEFAULT NULL, `script` longtext, `cacheable` tinyint(4) DEFAULT NULL, `smallImage` tinyint(4) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, `classNameId` bigint(20) DEFAULT NULL, `templateKey` longtext, PRIMARY KEY (`templateId`), UNIQUE KEY `IX_1AA75CE3` (`uuid_`,`groupId`), KEY `IX_DB24DDDD` (`groupId`), KEY `IX_33BEF579` (`language`), KEY `IX_C4F283C8` (`type_`), KEY `IX_F2A243A7` (`uuid_`), KEY `IX_B6356F93` (`classNameId`,`classPK`,`type_`), KEY `IX_32F83D16` (`classPK`), KEY `IX_BD9A4A91` (`groupId`,`classNameId`), KEY `IX_824ADC72` (`groupId`,`classNameId`,`classPK`), KEY `IX_90800923` (`groupId`,`classNameId`,`classPK`,`type_`), KEY `IX_F0C3449` (`groupId`,`classNameId`,`classPK`,`type_`,`mode_`), KEY `IX_B1C33EA6` (`groupId`,`classPK`), KEY `IX_127A35B0` (`smallImageId`), KEY `IX_D4C2C221` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMTemplate` -- LOCK TABLES `DDMTemplate` WRITE; /*!40000 ALTER TABLE `DDMTemplate` DISABLE KEYS */; INSERT INTO `DDMTemplate` VALUES ('728a9e52-79e7-479b-b96e-c8372a2f8b9a',11804,10227,10202,10205,' ','2016-11-22 17:54:14','2016-11-22 17:54:14',11802,'Single Image','A single image, optional URL','display','create','vm','
\n #if ($link.getData() != \"\")\n \n #end\n \"\"\n #if ($link.getData() != \"\")\n \n #end\n
',1,0,10490,'',11581,'SINGLE-IMAGE'),('08034de0-5008-4a0c-9ec6-e6fe1d6bb808',11805,10587,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',11803,'Single Image','A single image, optional URL','display','create','vm','
\n #if ($link.getData() != \"\")\n \n #end\n \"\"\n #if ($link.getData() != \"\")\n \n #end\n
',1,0,10601,'',11581,'SINGLE-IMAGE'),('c5dc8199-3357-410d-a90e-90b76df31909',11972,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Basic','Displays titles, authors, and abstracts compactly for blog entries.','display','','ftl','<#assign liferay_ui = taglibLiferayHash[\"/WEB-INF/tld/liferay-ui.tld\"] />\n\n<#list entries as entry>\n
\n <#assign viewURL = renderResponse.createRenderURL() />\n\n ${viewURL.setParameter(\"struts_action\", \"/blogs/view_entry\")}\n ${viewURL.setParameter(\"redirect\", currentURL)}\n ${viewURL.setParameter(\"urlTitle\", entry.getUrlTitle())}\n\n \n\n
\n
\n <@liferay.language key=\"written-by\" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\n
\n\n <#assign summary = entry.getDescription() />\n\n <#if (validator.isNull(summary))>\n <#assign summary = entry.getContent() />\n \n\n ${stringUtil.shorten(htmlUtil.stripHtml(summary), 100)}\n\n <@liferay.language key=\"read-more\" /> <@liferay.language key=\"about\"/>${htmlUtil.escape(entry.getTitle())} »\n
\n\n
\n \n ${dateUtil.getDate(entry.getCreateDate(), \"dd MMM yyyy - HH:mm:ss\", locale)}\n \n\n <#assign blogsEntryClassName = \"com.liferay.portlet.blogs.model.BlogsEntry\" />\n\n <#if (enableFlags == \"true\")>\n <@liferay_ui[\"flags\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n contentTitle=entry.getTitle()\n reportedUserId=entry.getUserId()\n />\n \n\n \n <@liferay_ui[\"asset-categories-summary\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n portletURL=renderResponse.createRenderURL()\n />\n \n\n \n <@liferay_ui[\"asset-tags-summary\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n portletURL=renderResponse.createRenderURL()\n />\n \n
\n
\n\n
\n',0,0,11973,'',10068,'BLOGS-BASIC-FTL'),('581d9930-f66c-4fb9-b931-a06f1188d8cd',11974,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Rich Summary','Displays abstracts, icons, related assets, and print/edit actions for assets. Optionally include asset bookmarks and ratings.','display','','ftl','<#assign liferay_ui = taglibLiferayHash[\"/WEB-INF/tld/liferay-ui.tld\"] />\n\n<#list entries as entry>\n <#assign entry = entry />\n\n <#assign assetRenderer = entry.getAssetRenderer() />\n\n <#assign entryTitle = htmlUtil.escape(assetRenderer.getTitle(locale)) />\n\n <#assign viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, entry) />\n\n <#if assetLinkBehavior != \"showFullContent\">\n <#assign viewURL = assetPublisherHelperImpl.getAssetViewURL(renderRequest, renderResponse, entry, true) />\n \n\n
\n
\n <@getPrintIcon />\n\n <@getFlagsIcon />\n\n <@getEditIcon />\n
\n\n

\n \"\"${entryTitle}\n

\n\n <@getMetadataField fieldName=\"tags\" />\n\n <@getMetadataField fieldName=\"create-date\" />\n\n <@getMetadataField fieldName=\"view-count\" />\n\n
\n <@getSocialBookmarks />\n\n
\n <@getMetadataField fieldName=\"author\" />\n\n ${htmlUtil.escape(assetRenderer.getSummary(locale))}\n\n <@liferay.language key=\"read-more\" /><@liferay.language key=\"about\" />${entryTitle} »\n
\n\n <@getRatings />\n\n <@getRelatedAssets />\n\n <@getDiscussion />\n
\n
\n\n\n\n<#macro getDiscussion>\n <#if validator.isNotNull(assetRenderer.getDiscussionPath()) && (enableComments == \"true\")>\n
\n\n <#assign discussionURL = renderResponse.createActionURL() />\n\n ${discussionURL.setParameter(\"struts_action\", \"/asset_publisher/\" + assetRenderer.getDiscussionPath())}\n\n <@liferay_ui[\"discussion\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n formAction=discussionURL?string\n formName=\"fm\" + entry.getClassPK()\n ratingsEnabled=enableCommentRatings == \"true\"\n redirect=portalUtil.getCurrentURL(request)\n userId=assetRenderer.getUserId()\n />\n \n\n\n<#macro getEditIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign redirectURL = renderResponse.createRenderURL() />\n\n ${redirectURL.setParameter(\"struts_action\", \"/asset_publisher/add_asset_redirect\")}\n ${redirectURL.setWindowState(\"pop_up\")}\n\n <#assign editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState(\"pop_up\"), redirectURL)!\"\" />\n\n <#if validator.isNotNull(editPortletURL)>\n <#assign title = languageUtil.format(locale, \"edit-x\", entryTitle) />\n\n <@liferay_ui[\"icon\"]\n image=\"edit\"\n message=title\n url=\"javascript:Liferay.Util.openWindow({dialog: {width: 960}, id:\'\" + renderResponse.getNamespace() + \"editAsset\', title: \'\" + title + \"\', uri:\'\" + htmlUtil.escapeURL(editPortletURL.toString()) + \"\'});\"\n />\n \n \n\n\n<#macro getFlagsIcon>\n <#if enableFlags == \"true\">\n <@liferay_ui[\"flags\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n contentTitle=entry.getTitle(locale)\n label=false\n reportedUserId=entry.getUserId()\n />\n \n\n\n<#macro getMetadataField\n fieldName\n>\n <#if stringUtil.split(metadataFields)?seq_contains(fieldName)>\n \n <#assign dateFormat = \"dd MMM yyyy - HH:mm:ss\" />\n\n <#if fieldName == \"author\">\n <@liferay.language key=\"by\" /> ${portalUtil.getUserName(assetRenderer.getUserId(), assetRenderer.getUserName())}\n <#elseif fieldName == \"categories\">\n <@liferay_ui[\"asset-categories-summary\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n portletURL=renderResponse.createRenderURL()\n />\n <#elseif fieldName == \"create-date\">\n ${dateUtil.getDate(entry.getCreateDate(), dateFormat, locale)}\n <#elseif fieldName == \"expiration-date\">\n ${dateUtil.getDate(entry.getExpirationDate(), dateFormat, locale)}\n <#elseif fieldName == \"modified-date\">\n ${dateUtil.getDate(entry.getModifiedDate(), dateFormat, locale)}\n <#elseif fieldName == \"priority\">\n ${entry.getPriority()}\n <#elseif fieldName == \"publish-date\">\n ${dateUtil.getDate(entry.getPublishDate(), dateFormat, locale)}\n <#elseif fieldName == \"tags\">\n <@liferay_ui[\"asset-tags-summary\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n portletURL=renderResponse.createRenderURL()\n />\n <#elseif fieldName == \"view-count\">\n <@liferay_ui[\"icon\"]\n image=\"history\"\n />\n\n ${entry.getViewCount()} <@liferay.language key=\"views\" />\n \n \n \n\n\n<#macro getPrintIcon>\n <#if enablePrint == \"true\" >\n <#assign printURL = renderResponse.createRenderURL() />\n\n ${printURL.setParameter(\"struts_action\", \"/asset_publisher/view_content\")}\n ${printURL.setParameter(\"assetEntryId\", entry.getEntryId()?string)}\n ${printURL.setParameter(\"viewMode\", \"print\")}\n ${printURL.setParameter(\"type\", entry.getAssetRendererFactory().getType())}\n\n <#if (validator.isNotNull(assetRenderer.getUrlTitle()))>\n <#if (assetRenderer.getGroupId() != themeDisplay.getScopeGroupId())>\n ${printURL.setParameter(\"groupId\", assetRenderer.getGroupId()?string)}\n \n\n ${printURL.setParameter(\"urlTitle\", assetRenderer.getUrlTitle())}\n \n\n ${printURL.setWindowState(\"pop_up\")}\n\n <@liferay_ui[\"icon\"]\n image=\"print\"\n message=\"print\"\n url=\"javascript:Liferay.Util.openWindow({id:\'\" + renderResponse.getNamespace() + \"printAsset\', title: \'\" + languageUtil.format(locale, \"print-x-x\", [\"hide-accessible\", entryTitle]) + \"\', uri: \'\" + htmlUtil.escapeURL(printURL.toString()) + \"\'});\"\n />\n \n\n\n<#macro getRatings>\n <#if (enableRatings == \"true\")>\n
\n <@liferay_ui[\"ratings\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n />\n
\n \n\n\n<#macro getRelatedAssets>\n <#if enableRelatedAssets == \"true\">\n <@liferay_ui[\"asset-links\"]\n assetEntryId=entry.getEntryId()\n />\n \n\n\n<#macro getSocialBookmarks>\n <#if enableSocialBookmarks == \"true\">\n <@liferay_ui[\"social-bookmarks\"]\n displayStyle=\"${socialBookmarksDisplayStyle}\"\n target=\"_blank\"\n title=entry.getTitle(locale)\n url=viewURL\n />\n \n',0,0,11975,'',10062,'ASSET-PUBLISHER-RICH-SUMMARY-FTL'),('63b4d756-ecf5-4460-b492-32f4b8f9624f',11976,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Multi Column Layout','Displays a column for each top level page. Each column includes the name of a top level page with the page\'s immediate children listed underneath.','display','','ftl','<#assign aui = taglibLiferayHash[\"/WEB-INF/tld/aui.tld\"] />\n\n<#if entries?has_content>\n <@aui.layout>\n <#list entries as entry>\n <@aui.column columnWidth=25>\n
\n

\n <#assign layoutURL = portalUtil.getLayoutURL(entry, themeDisplay)>\n\n ${entry.getName(locale)}\n

\n
\n\n <#assign pages = entry.getChildren()>\n\n <@displayPages pages = pages />\n \n \n \n\n\n<#macro displayPages\n pages\n>\n <#if pages?has_content>\n \n \n',0,0,11977,'',10016,'SITE-MAP-MULTI-COLUMN-LAYOUT-FTL'),('def801bd-7800-4045-b122-abac8633994b',11979,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Carousel','Displays images in a carousel.','display','','ftl','<#assign aui = taglibLiferayHash[\"/WEB-INF/tld/aui.tld\"] />\n<#assign liferay_portlet = taglibLiferayHash[\"/WEB-INF/tld/liferay-portlet.tld\"] />\n\n<#if entries?has_content>\n \n\n
carousel\">\n <#assign imageMimeTypes = propsUtil.getArray(\"dl.file.entry.preview.image.mime.types\") />\n\n <#list entries as entry>\n <#if imageMimeTypes?seq_contains(entry.getMimeType()) >\n
\n \n
\n \n \n
\n\n <@aui.script use=\"aui-carousel\">\n new A.Carousel(\n {\n contentBox: \'#<@liferay_portlet.namespace />carousel\',\n height: 250,\n intervalTime: 2,\n width: 700\n }\n ).render();\n \n',0,0,11980,'',11978,'DOCUMENTLIBRARY-CAROUSEL-FTL'),('41ab20c7-5320-4a4e-94ec-cf7eddaac901',11981,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Social','Displays social bookmarks and ratings for wiki pages and their child pages.','display','','ftl','<#assign liferay_ui = taglibLiferayHash[\"/WEB-INF/tld/liferay-ui.tld\"] />\n\n<#assign wikiPageClassName = \"com.liferay.portlet.wiki.model.WikiPage\" />\n\n<#assign assetRenderer = assetEntry.getAssetRenderer() />\n\n
\n

${entry.getTitle()}

\n
\n\n
\n <@getEditIcon />\n\n <@getPageDetailsIcon />\n\n <@getPrintIcon />\n
\n\n
\n
\n ${assetEntry.getViewCount()} <@liferay.language key=\"views\" /> |\n\n <@liferay.language key=\"last-modified\" /> ${dateUtil.getDate(entry.getModifiedDate(), \"dd MMM yyyy - HH:mm:ss\", locale)}\n\n <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\n
\n\n
\n <@liferay_ui[\"social-bookmarks\"]\n displayStyle=\"normal\"\n target=\"_blank\"\n title=entry.getTitle()\n url=viewURL\n />\n\n ${formattedContent}\n
\n\n
\n
\n <@getAddChildPageIcon />\n\n <@getAttatchmentsIcon />\n
\n
\n\n
\n\n <@getRatings cssClass=\"page-ratings\" entry=entry />\n\n <@getRelatedAssets />\n
\n\n
\n
\n <#assign viewCategorizedPagesURL = renderResponse.createRenderURL() />\n\n ${viewCategorizedPagesURL.setParameter(\"struts_action\", \"/wiki/view_categorized_pages\")}\n ${viewCategorizedPagesURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n\n <@liferay_ui[\"asset-categories-summary\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n portletURL=viewCategorizedPagesURL\n />\n
\n\n
\n <#assign viewTaggedPagesURL = renderResponse.createRenderURL() />\n\n ${viewTaggedPagesURL.setParameter(\"struts_action\", \"/wiki/view_tagged_pages\")}\n ${viewTaggedPagesURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n\n <@liferay_ui[\"asset-tags-summary\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n portletURL=viewTaggedPagesURL\n />\n
\n
\n\n<#assign childPages = entry.getChildPages() />\n\n<#if (childPages?has_content)>\n
\n

<@liferay.language key=\"children-pages\" />

\n\n \n \n \n \n \n \n\n <#list childPages as childPage>\n \n <#assign viewPageURL = renderResponse.createRenderURL() />\n\n ${viewPageURL.setParameter(\"struts_action\", \"/wiki/view\")}\n\n <#assign childNode = childPage.getNode() />\n\n ${viewPageURL.setParameter(\"nodeName\", childNode.getName())}\n ${viewPageURL.setParameter(\"title\", childPage.getTitle())}\n\n \n \n \n \n \n
\n <@liferay.language key=\"page\" />\n \n <@liferay.language key=\"last-modified\" />\n \n <@liferay.language key=\"ratings\" />\n
\n ${childPage.getTitle()}\n \n ${dateUtil.getDate(childPage.getModifiedDate(),\"dd MMM yyyy - HH:mm:ss\", locale)} <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(childPage.getUserId(), childPage.getUserName()))}\n \n <@getRatings cssClass=\"child-ratings\" entry=childPage />\n
\n
\n\n\n<@getDiscussion />\n\n<#macro getAddChildPageIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign addPageURL = renderResponse.createRenderURL() />\n\n ${addPageURL.setParameter(\"struts_action\", \"/wiki/edit_page\")}\n ${addPageURL.setParameter(\"redirect\", currentURL)}\n ${addPageURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n ${addPageURL.setParameter(\"title\", \"\")}\n ${addPageURL.setParameter(\"editTitle\", \"1\")}\n ${addPageURL.setParameter(\"parentTitle\", entry.getTitle())}\n\n <@liferay_ui[\"icon\"]\n image=\"add_article\"\n label=true\n message=\"add-child-page\"\n url=addPageURL?string\n />\n \n\n\n<#macro getAttatchmentsIcon>\n <#assign viewPageAttachmentsURL = renderResponse.createRenderURL() />\n\n ${viewPageAttachmentsURL.setParameter(\"struts_action\", \"/wiki/view_page_attachments\") }\n\n <@liferay_ui[\"icon\"]\n image=\"clip\"\n label=true\n message=\'${entry.getAttachmentsFileEntriesCount() + languageUtil.get(locale, \"attachments\")}\'\n url=viewPageAttachmentsURL?string\n />\n\n\n<#macro getDiscussion>\n <#if validator.isNotNull(assetRenderer.getDiscussionPath()) && (enableComments == \"true\")>\n
\n\n <#assign discussionURL = renderResponse.createActionURL() />\n\n ${discussionURL.setParameter(\"struts_action\", \"/wiki/\" + assetRenderer.getDiscussionPath())}\n\n <@liferay_ui[\"discussion\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n formAction=discussionURL?string\n formName=\"fm2\"\n ratingsEnabled=enableCommentRatings == \"true\"\n redirect=currentURL\n subject=assetRenderer.getTitle(locale)\n userId=assetRenderer.getUserId()\n />\n \n\n\n<#macro getEditIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign editPageURL = renderResponse.createRenderURL() />\n\n ${editPageURL.setParameter(\"struts_action\", \"/wiki/edit_page\")}\n ${editPageURL.setParameter(\"redirect\", currentURL)}\n ${editPageURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n ${editPageURL.setParameter(\"title\", entry.getTitle())}\n\n <@liferay_ui[\"icon\"]\n image=\"edit\"\n message=entry.getTitle()\n url=editPageURL?string\n />\n \n\n\n<#macro getPageDetailsIcon>\n <#assign viewPageDetailsURL = renderResponse.createRenderURL() />\n\n ${viewPageDetailsURL.setParameter(\"struts_action\", \"/wiki/view_page_details\")}\n ${viewPageDetailsURL.setParameter(\"redirect\", currentURL)}\n\n <@liferay_ui[\"icon\"]\n image=\"history\"\n message=\"details\"\n url=viewPageDetailsURL?string\n />\n\n\n<#macro getPrintIcon>\n <#assign printURL = renderResponse.createRenderURL() />\n\n ${printURL.setParameter(\"viewMode\", \"print\")}\n ${printURL.setWindowState(\"pop_up\")}\n\n <#assign title = languageUtil.format(locale, \"print-x-x\", [\"hide-accessible\", htmlUtil.escape(assetRenderer.getTitle(locale))]) />\n <#assign taglibPrintURL = \"javascript:Liferay.Util.openWindow({dialog: {width: 960}, id:\'\" + renderResponse.getNamespace() + \"printAsset\', title: \'\" + title + \"\', uri: \'\" + htmlUtil.escapeURL(printURL.toString()) + \"\'});\" />\n\n <@liferay_ui[\"icon\"]\n image=\"print\"\n message=\"print\"\n url=taglibPrintURL\n />\n\n\n<#macro getRatings\n cssClass\n entry\n>\n <#if enablePageRatings == \"true\">\n
\n <@liferay_ui[\"ratings\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n />\n
\n \n\n\n<#macro getRelatedAssets>\n <#if assetEntry?? && (enableRelatedAssets == \"true\")>\n <@liferay_ui[\"asset-links\"]\n assetEntryId=assetEntry.getEntryId()\n />\n \n',0,0,11982,'',10129,'WIKI-SOCIAL-FTL'),('b7d47c09-67e1-4a2c-aa61-0fef953dd7ff',11983,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Color by Popularity','Displays asset tags colored by popularity: red (high), yellow (medium), and green (low).','display','','ftl','<#if entries?has_content>\n \n\n
\n',0,0,11984,'',10064,'ASSET-TAGS-NAVIGATION-COLOR-BY-POPULARITY-FTL'),('e331676e-9cd4-4e00-897f-e0b208a57950',11985,10235,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',0,'Multi Column Layout','Displays a column for each vocabulary. Each column includes the name of a vocabulary with the vocabulary\'s top level categories listed underneath.','display','','ftl','<#assign aui = taglibLiferayHash[\"/WEB-INF/tld/aui.tld\"] />\n\n<#if entries?has_content>\n <@aui.layout>\n <#list entries as entry>\n <@aui.column columnWidth=25>\n
\n

\n ${entry.getName()}\n

\n
\n\n <#assign categories = entry.getCategories()>\n\n <@displayCategories categories=categories />\n \n \n \n\n\n<#macro displayCategories\n categories\n>\n <#if categories?has_content>\n \n \n',0,0,11986,'',10060,'ASSET-CATEGORIES-NAVIGATION-MULTI-COLUMN-LAYOUT-FTL'); /*!40000 ALTER TABLE `DDMTemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLContent` -- DROP TABLE IF EXISTS `DLContent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLContent` ( `contentId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `path_` varchar(255) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `data_` longblob, `size_` bigint(20) DEFAULT NULL, PRIMARY KEY (`contentId`), UNIQUE KEY `IX_FDD1AAA8` (`companyId`,`repositoryId`,`path_`,`version`), KEY `IX_6A83A66A` (`companyId`,`repositoryId`), KEY `IX_EB531760` (`companyId`,`repositoryId`,`path_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLContent` -- LOCK TABLES `DLContent` WRITE; /*!40000 ALTER TABLE `DLContent` DISABLE KEYS */; /*!40000 ALTER TABLE `DLContent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntry` -- DROP TABLE IF EXISTS `DLFileEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntry` ( `uuid_` varchar(75) DEFAULT NULL, `fileEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `description` longtext, `extraSettings` longtext, `version` varchar(75) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `readCount` int(11) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `fileEntryTypeId` bigint(20) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `largeImageId` bigint(20) DEFAULT NULL, `custom1ImageId` bigint(20) DEFAULT NULL, `custom2ImageId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `treePath` longtext, `manualCheckInRequired` tinyint(4) DEFAULT NULL, PRIMARY KEY (`fileEntryId`), UNIQUE KEY `IX_5391712` (`groupId`,`folderId`,`name`), UNIQUE KEY `IX_ED5CA615` (`groupId`,`folderId`,`title`), UNIQUE KEY `IX_BC2E7E6A` (`uuid_`,`groupId`), KEY `IX_4CB1B2B4` (`companyId`), KEY `IX_F4AF5636` (`groupId`), KEY `IX_93CF8193` (`groupId`,`folderId`), KEY `IX_43261870` (`groupId`,`userId`), KEY `IX_D20C434D` (`groupId`,`userId`,`folderId`), KEY `IX_64F0FE40` (`uuid_`), KEY `IX_8F6C75D0` (`folderId`,`name`), KEY `IX_29D0AF28` (`groupId`,`folderId`,`fileEntryTypeId`), KEY `IX_D9492CF6` (`mimeType`), KEY `IX_772ECDE7` (`fileEntryTypeId`), KEY `IX_1B352F4A` (`repositoryId`,`folderId`), KEY `IX_31079DE8` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntry` -- LOCK TABLES `DLFileEntry` WRITE; /*!40000 ALTER TABLE `DLFileEntry` DISABLE KEYS */; INSERT INTO `DLFileEntry` VALUES ('4e44f50d-6aa5-4b7a-a75d-6b6e67ee3a94',10492,10227,10202,10205,'','2016-11-22 17:54:14','2016-11-22 17:54:14',10491,'101','png','cell_bg','','','1.0',305,0,10227,'image/png',11501,10493,10494,0,0,0,0,'/10491/',0),('bcde623b-42f5-4871-9ade-44052d10fadd',10496,10227,10202,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10491,'102','png','portal_mashup','','','1.0',36562,0,10227,'image/png',11501,10497,10498,0,0,0,0,'/10491/',0),('b976fd0b-fe08-426e-933f-bad870fa3df3',10500,10227,10202,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10491,'103','png','sevencogs_ad','','','1.0',7491,0,10227,'image/png',11501,10501,10502,0,0,0,0,'/10491/',0),('c347888a-470f-404e-b645-5cf1e60af860',10504,10227,10202,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10491,'104','png','sevencogs_mobile_ad','','','1.0',6963,0,10227,'image/png',11501,10505,10506,0,0,0,0,'/10491/',0),('23a1b7d8-a446-4d88-b288-d74eb2f0986f',10508,10227,10202,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10491,'105','png','shared_workspaces','','','1.0',30734,0,10227,'image/png',11501,10509,10510,0,0,0,0,'/10491/',0),('fada6a18-d179-4f70-8b15-185b5db60195',10512,10227,10202,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10491,'106','png','social_network','','','1.0',19163,0,10227,'image/png',11501,10513,10514,0,0,0,0,'/10491/',0),('bf41b99a-4f5d-4ed9-aec0-fce2a143a4da',10516,10227,10202,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10491,'107','png','web_publishing','','','1.0',24886,0,10227,'image/png',11501,10517,10518,0,0,0,0,'/10491/',0),('3b944cec-37dc-447a-8b11-cf929f53fa36',10603,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'108','png','cog_blue','','','1.0',2212,0,10587,'image/png',11501,10604,10605,0,0,0,0,'/10602/',0),('9bcb84bf-b6c6-4a48-8e83-0ed732262913',10609,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'109','png','cog_light_blue','','','1.0',2789,0,10587,'image/png',11501,10610,10611,0,0,0,0,'/10602/',0),('9488439a-162c-45be-addf-f7ced1d6d6dd',10613,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'110','png','cog_orange','','','1.0',2078,0,10587,'image/png',11501,10614,10615,0,0,0,0,'/10602/',0),('8f2124c5-878d-446e-8081-81491ce569a6',10617,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'111','png','blogs_icon','','','1.0',5414,0,10587,'image/png',11501,10618,10619,0,0,0,0,'/10602/',0),('d5d44050-5192-4775-858b-887d067a0d8d',10625,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'112','png','cog_network_advertisement','','','1.0',24537,0,10587,'image/png',11501,10626,10627,0,0,0,0,'/10602/',0),('3d7f606e-51ba-4e5c-9d44-09ae67f6a874',10629,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'113','png','forums_icon','','','1.0',5904,0,10587,'image/png',11501,10630,10631,0,0,0,0,'/10602/',0),('dd0a47ee-2316-4ad2-b7f8-f861d3fb3437',10635,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'114','png','liferay_logo','','','1.0',906,0,10587,'image/png',11501,10636,10637,0,0,0,0,'/10602/',0),('4358cb75-aa7a-4a9c-a340-321ebf48c3cd',10643,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10602,'115','png','home_page_banner','','','1.0',43180,0,10587,'image/png',11501,10644,10645,0,0,0,0,'/10602/',0),('d0e97861-29dc-48b5-aa33-56069cf928bf',10647,10587,10202,10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17',10602,'116','png','products_icon','','','1.0',5995,0,10587,'image/png',11501,10648,10649,0,0,0,0,'/10602/',0),('ce41045e-574c-4a0f-9536-0b0858d78ce6',10653,10587,10202,10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17',10602,'117','png','product_landing','','','1.0',34165,0,10587,'image/png',11501,10654,10655,0,0,0,0,'/10602/',0),('219d7ad3-126c-4cdf-8e9f-34fd980b555f',10922,10912,10202,10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20',10921,'118','png','mobile_product_1','','','1.0',48468,0,10912,'image/png',11501,10923,10924,0,0,0,0,'/10921/',0),('22b4f239-6ec9-44ac-9a58-0925ce57643f',10926,10912,10202,10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20',10921,'119','png','mobile_product_2','','','1.0',48571,0,10912,'image/png',11501,10927,10928,0,0,0,0,'/10921/',0),('31a9d13d-e76c-4068-84c9-bd53b27a029e',11311,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',11310,'1','xls','Budget','Budgets for the current year','','1.0',6656,0,10965,'application/vnd.ms-excel',0,0,0,0,0,0,0,'/11310/',0),('b5390dda-2870-4ff5-8ad0-7ee4ae4825f1',11326,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:24','2016-11-22 17:54:24',11325,'2','doc','Notes from the last meeting','Important notes','','1.0',8192,0,11109,'application/msword',0,0,0,0,0,0,0,'/11325/',0),('3b48be63-926a-4282-93e5-c626e43955d3',11341,11181,10202,11179,'Richard Editor','2016-11-22 17:54:24','2016-11-22 17:54:24',11340,'3','ppt','New Features','Features for the current year','','1.0',109568,0,11181,'application/vnd.ms-powerpoint',0,0,0,0,0,0,0,'/11340/',0); /*!40000 ALTER TABLE `DLFileEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryMetadata` -- DROP TABLE IF EXISTS `DLFileEntryMetadata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryMetadata` ( `uuid_` varchar(75) DEFAULT NULL, `fileEntryMetadataId` bigint(20) NOT NULL, `DDMStorageId` bigint(20) DEFAULT NULL, `DDMStructureId` bigint(20) DEFAULT NULL, `fileEntryTypeId` bigint(20) DEFAULT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `fileVersionId` bigint(20) DEFAULT NULL, PRIMARY KEY (`fileEntryMetadataId`), UNIQUE KEY `IX_7332B44F` (`DDMStructureId`,`fileVersionId`), KEY `IX_4F40FE5E` (`fileEntryId`), KEY `IX_A44636C9` (`fileEntryId`,`fileVersionId`), KEY `IX_F8E90438` (`fileEntryTypeId`), KEY `IX_1FE9C04` (`fileVersionId`), KEY `IX_D49AB5D1` (`uuid_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryMetadata` -- LOCK TABLES `DLFileEntryMetadata` WRITE; /*!40000 ALTER TABLE `DLFileEntryMetadata` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileEntryMetadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryType` -- DROP TABLE IF EXISTS `DLFileEntryType`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryType` ( `uuid_` varchar(75) DEFAULT NULL, `fileEntryTypeId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `fileEntryTypeKey` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, PRIMARY KEY (`fileEntryTypeId`), UNIQUE KEY `IX_5B6BEF5F` (`groupId`,`fileEntryTypeKey`), UNIQUE KEY `IX_1399D844` (`uuid_`,`groupId`), KEY `IX_4501FD9C` (`groupId`), KEY `IX_90724726` (`uuid_`), KEY `IX_5B03E942` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryType` -- LOCK TABLES `DLFileEntryType` WRITE; /*!40000 ALTER TABLE `DLFileEntryType` DISABLE KEYS */; INSERT INTO `DLFileEntryType` VALUES ('1282930b-e7d1-4710-a304-e5141aea388f',0,0,0,0,'','2016-11-22 18:01:45','2016-11-22 18:01:45','BASIC-DOCUMENT','basic-document',''),('a05931e9-e561-4fbb-a3da-e7ef76e67865',11501,10235,10202,10205,'','2016-11-22 18:01:37','2016-11-22 18:01:37','IMAGE GALLERY IMAGE','Image Gallery Image','Image Gallery Image'),('98919c9a-03ca-4c54-8878-1cc9da325634',11618,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50','CONTRACT','Contract','Contract'),('8f13770b-cde0-43bf-886e-1d96de22f43e',11620,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50','MARKETING BANNER','Marketing Banner','Marketing Banner'),('a43fc6fc-4a53-4cea-9368-f039d925bb21',11622,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50','ONLINE TRAINING','Online Training','Online Training'),('d4befd0c-c6eb-4da1-830f-c688c81f267f',11624,10235,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50','SALES PRESENTATION','Sales Presentation','Sales Presentation'); /*!40000 ALTER TABLE `DLFileEntryType` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryTypes_DDMStructures` -- DROP TABLE IF EXISTS `DLFileEntryTypes_DDMStructures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryTypes_DDMStructures` ( `fileEntryTypeId` bigint(20) NOT NULL, `structureId` bigint(20) NOT NULL, PRIMARY KEY (`fileEntryTypeId`,`structureId`), KEY `IX_8373EC7C` (`fileEntryTypeId`), KEY `IX_F147CF3F` (`structureId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryTypes_DDMStructures` -- LOCK TABLES `DLFileEntryTypes_DDMStructures` WRITE; /*!40000 ALTER TABLE `DLFileEntryTypes_DDMStructures` DISABLE KEYS */; INSERT INTO `DLFileEntryTypes_DDMStructures` VALUES (11618,11619),(11620,11616),(11620,11621),(11622,11615),(11622,11623),(11624,11617),(11624,11625); /*!40000 ALTER TABLE `DLFileEntryTypes_DDMStructures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryTypes_DLFolders` -- DROP TABLE IF EXISTS `DLFileEntryTypes_DLFolders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryTypes_DLFolders` ( `fileEntryTypeId` bigint(20) NOT NULL, `folderId` bigint(20) NOT NULL, PRIMARY KEY (`fileEntryTypeId`,`folderId`), KEY `IX_5BB6AD6C` (`fileEntryTypeId`), KEY `IX_6E00A2EC` (`folderId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryTypes_DLFolders` -- LOCK TABLES `DLFileEntryTypes_DLFolders` WRITE; /*!40000 ALTER TABLE `DLFileEntryTypes_DLFolders` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileEntryTypes_DLFolders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileRank` -- DROP TABLE IF EXISTS `DLFileRank`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileRank` ( `fileRankId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`fileRankId`), UNIQUE KEY `IX_38F0315` (`companyId`,`userId`,`fileEntryId`), KEY `IX_BAFB116E` (`groupId`,`userId`), KEY `IX_EED06670` (`userId`), KEY `IX_A65A1F8B` (`fileEntryId`), KEY `IX_4E96195B` (`groupId`,`userId`,`active_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileRank` -- LOCK TABLES `DLFileRank` WRITE; /*!40000 ALTER TABLE `DLFileRank` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileRank` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileShortcut` -- DROP TABLE IF EXISTS `DLFileShortcut`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileShortcut` ( `uuid_` varchar(75) DEFAULT NULL, `fileShortcutId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `toFileEntryId` bigint(20) DEFAULT NULL, `treePath` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`fileShortcutId`), UNIQUE KEY `IX_FDB4A946` (`uuid_`,`groupId`), KEY `IX_B0051937` (`groupId`,`folderId`), KEY `IX_4831EBE4` (`uuid_`), KEY `IX_4B7247F6` (`toFileEntryId`), KEY `IX_A4BB2E58` (`companyId`), KEY `IX_8571953E` (`companyId`,`status`), KEY `IX_348DC3B2` (`groupId`,`folderId`,`active_`), KEY `IX_17EE3098` (`groupId`,`folderId`,`active_`,`status`), KEY `IX_29AE81C4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileShortcut` -- LOCK TABLES `DLFileShortcut` WRITE; /*!40000 ALTER TABLE `DLFileShortcut` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileShortcut` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileVersion` -- DROP TABLE IF EXISTS `DLFileVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileVersion` ( `fileVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `description` longtext, `changeLog` varchar(75) DEFAULT NULL, `extraSettings` longtext, `version` varchar(75) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `fileEntryTypeId` bigint(20) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `treePath` longtext, `checksum` varchar(75) DEFAULT NULL, PRIMARY KEY (`fileVersionId`), UNIQUE KEY `IX_E2815081` (`fileEntryId`,`version`), UNIQUE KEY `IX_C99B2650` (`uuid_`,`groupId`), KEY `IX_C68DC967` (`fileEntryId`), KEY `IX_D47BB14D` (`fileEntryId`,`status`), KEY `IX_DFD809D3` (`groupId`,`folderId`,`status`), KEY `IX_9BE769ED` (`groupId`,`folderId`,`title`,`version`), KEY `IX_FFB3395C` (`mimeType`), KEY `IX_4BFABB9A` (`uuid_`), KEY `IX_F389330E` (`companyId`), KEY `IX_A0A283F4` (`companyId`,`status`), KEY `IX_95E9E44E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileVersion` -- LOCK TABLES `DLFileVersion` WRITE; /*!40000 ALTER TABLE `DLFileVersion` DISABLE KEYS */; INSERT INTO `DLFileVersion` VALUES (11312,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23',11310,'xls','Budget','Budgets for the current year','','','1.0',6656,0,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',10965,11311,'application/vnd.ms-excel',0,'3c95344c-1136-46f2-8803-4f4e463eac6b','/11310/',''),(11327,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:24',11325,'doc','Notes from the last meeting','Important notes','','','1.0',8192,0,11107,'Michelle Writer','2016-11-22 17:54:24','2016-11-22 17:54:24',11109,11326,'application/msword',0,'c52f1271-8c73-493b-8123-8f424626936e','/11325/',''),(11342,11181,10202,11179,'Richard Editor','2016-11-22 17:54:24',11340,'ppt','New Features','Features for the current year','','','1.0',109568,0,11179,'Richard Editor','2016-11-22 17:54:24','2016-11-22 17:54:24',11181,11341,'application/vnd.ms-powerpoint',0,'b40df118-ceef-4a8b-bf95-fa4fa55b2491','/11340/',''),(11502,10227,10202,10205,'','2016-11-22 17:54:14',10491,'png','cell_bg','','','','1.0',305,0,10205,'','2016-11-22 17:54:14','2016-11-22 17:54:14',10227,10492,'image/png',11501,'b7f93e2d-f61e-428e-9d91-37eeb1ced2a1','/10491/',''),(11503,10227,10202,10205,'','2016-11-22 17:54:15',10491,'png','portal_mashup','','','','1.0',36562,0,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10227,10496,'image/png',11501,'6529052d-95ca-48b9-a472-3a381ea9c70d','/10491/',''),(11504,10227,10202,10205,'','2016-11-22 17:54:15',10491,'png','sevencogs_ad','','','','1.0',7491,0,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10227,10500,'image/png',11501,'a8343175-7a9f-4b13-a3e2-03ae920bdaaa','/10491/',''),(11505,10227,10202,10205,'','2016-11-22 17:54:15',10491,'png','sevencogs_mobile_ad','','','','1.0',6963,0,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10227,10504,'image/png',11501,'ec84a9b0-1967-4ade-ac01-1254cc68e3d1','/10491/',''),(11506,10227,10202,10205,'','2016-11-22 17:54:15',10491,'png','shared_workspaces','','','','1.0',30734,0,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10227,10508,'image/png',11501,'240bbb72-d7cf-4880-8b8a-23bd97057e18','/10491/',''),(11507,10227,10202,10205,'','2016-11-22 17:54:15',10491,'png','social_network','','','','1.0',19163,0,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10227,10512,'image/png',11501,'15f4580b-b1f4-49a2-8304-ea55a7165000','/10491/',''),(11508,10227,10202,10205,'','2016-11-22 17:54:15',10491,'png','web_publishing','','','','1.0',24886,0,10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15',10227,10516,'image/png',11501,'8bb54a3e-0169-4c9c-9f22-70df06d06514','/10491/',''),(11509,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','cog_blue','','','','1.0',2212,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10603,'image/png',11501,'99029eaa-cef9-4eee-9ea3-22331e9a198a','/10602/',''),(11510,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','cog_light_blue','','','','1.0',2789,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10609,'image/png',11501,'ebcec755-00ec-4a6b-8011-9facf1093b53','/10602/',''),(11511,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','cog_orange','','','','1.0',2078,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10613,'image/png',11501,'830c47c5-be66-41a2-a1e7-bb05a540bef8','/10602/',''),(11512,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','blogs_icon','','','','1.0',5414,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10617,'image/png',11501,'09b43601-3014-4d66-a69e-35e35423c7b8','/10602/',''),(11513,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','cog_network_advertisement','','','','1.0',24537,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10625,'image/png',11501,'c3715b2f-7121-4834-b2de-24e5e153e1df','/10602/',''),(11514,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','forums_icon','','','','1.0',5904,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10629,'image/png',11501,'a10dfe8e-4a06-45d9-8844-d359f8f571db','/10602/',''),(11515,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','liferay_logo','','','','1.0',906,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10635,'image/png',11501,'f6b3c1a4-c2f7-4b25-8bbf-7e8931745479','/10602/',''),(11516,10587,10202,10205,'','2016-11-22 17:54:16',10602,'png','home_page_banner','','','','1.0',43180,0,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',10587,10643,'image/png',11501,'2148d49d-0bc0-4dc8-b7bd-c7af42af6f48','/10602/',''),(11517,10587,10202,10205,'','2016-11-22 17:54:17',10602,'png','products_icon','','','','1.0',5995,0,10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17',10587,10647,'image/png',11501,'0b4917f8-3e65-401d-9729-c2cfb37db12c','/10602/',''),(11518,10587,10202,10205,'','2016-11-22 17:54:17',10602,'png','product_landing','','','','1.0',34165,0,10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17',10587,10653,'image/png',11501,'3226154f-a2b1-404e-b920-649291193818','/10602/',''),(11519,10912,10202,10205,'','2016-11-22 17:54:20',10921,'png','mobile_product_1','','','','1.0',48468,0,10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20',10912,10922,'image/png',11501,'2488c6b5-1435-4535-8219-e824a992675a','/10921/',''),(11520,10912,10202,10205,'','2016-11-22 17:54:20',10921,'png','mobile_product_2','','','','1.0',48571,0,10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20',10912,10926,'image/png',11501,'045306a6-1ef5-44ca-80e8-dffe5d4fb753','/10921/',''); /*!40000 ALTER TABLE `DLFileVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFolder` -- DROP TABLE IF EXISTS `DLFolder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFolder` ( `uuid_` varchar(75) DEFAULT NULL, `folderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `description` longtext, `lastPostDate` datetime DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `mountPoint` tinyint(4) DEFAULT NULL, `defaultFileEntryTypeId` bigint(20) DEFAULT NULL, `overrideFileEntryTypes` tinyint(4) DEFAULT NULL, `treePath` longtext, `hidden_` tinyint(4) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`folderId`), UNIQUE KEY `IX_902FD874` (`groupId`,`parentFolderId`,`name`), UNIQUE KEY `IX_3CC1DED2` (`uuid_`,`groupId`), KEY `IX_A74DB14C` (`companyId`), KEY `IX_F2EA1ACE` (`groupId`), KEY `IX_49C37475` (`groupId`,`parentFolderId`), KEY `IX_51556082` (`parentFolderId`,`name`), KEY `IX_CBC408D8` (`uuid_`), KEY `IX_EE29C715` (`repositoryId`), KEY `IX_E79BE432` (`companyId`,`status`), KEY `IX_F78286C5` (`groupId`,`mountPoint`,`parentFolderId`,`hidden_`), KEY `IX_C88430AB` (`groupId`,`mountPoint`,`parentFolderId`,`hidden_`,`status`), KEY `IX_CE360BF6` (`groupId`,`parentFolderId`,`hidden_`,`status`), KEY `IX_DA448450` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFolder` -- LOCK TABLES `DLFolder` WRITE; /*!40000 ALTER TABLE `DLFolder` DISABLE KEYS */; INSERT INTO `DLFolder` VALUES ('871dcca6-2463-49e8-a0d0-d0694db3279a',10491,10227,10202,10205,'','2016-11-22 17:54:14','2016-11-22 17:54:14',0,'Web Content','Images used for content','2016-11-22 17:54:14',10227,0,0,0,'/10491/',0,0,10205,'','2016-11-22 17:54:14'),('4ee9a238-4680-493e-848e-1e5603d8b6ec',10602,10587,10202,10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16',0,'7Cogs Web Content','Images used for content','2016-11-22 17:54:16',10587,0,0,0,'/10602/',0,0,10205,'','2016-11-22 17:54:16'),('baac9429-70a4-4a71-9645-b0c224de471f',10921,10912,10202,10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20',0,'7Cogs Mobile Content','Images used for mobile content','2016-11-22 17:54:20',10912,0,0,0,'/10921/',0,0,10205,'','2016-11-22 17:54:20'),('15b8bda7-6b92-43db-9b19-99a1e0e09f99',11310,10965,10202,10963,'','2016-11-22 17:54:23','2016-11-22 17:54:23',0,'Important Documents','Documents related with the company','2016-11-22 17:54:23',10965,0,0,0,'/11310/',0,0,10963,'','2016-11-22 17:54:23'),('d5f8b216-ebe9-4c4f-8231-3965c95f6915',11324,11109,10202,11107,'','2016-11-22 17:54:24','2016-11-22 17:54:24',0,'My Documents','Personal docs',NULL,11109,0,0,0,'/11324/',0,0,11107,'','2016-11-22 17:54:24'),('cbc7f5e7-032d-47dd-b69c-db170a18e7b0',11325,11109,10202,11107,'','2016-11-22 17:54:24','2016-11-22 17:54:24',0,'Work Documents','Works docs','2016-11-22 17:54:24',11109,0,0,0,'/11325/',0,0,11107,'','2016-11-22 17:54:24'),('56d95d96-175e-46e2-9d96-ea4d8fa8384a',11339,11181,10202,11179,'','2016-11-22 17:54:24','2016-11-22 17:54:24',0,'Documentation','',NULL,11181,0,0,0,'/11339/',0,0,11179,'','2016-11-22 17:54:24'),('3a2a813e-43ab-4958-9e71-29502b04c27d',11340,11181,10202,11179,'','2016-11-22 17:54:24','2016-11-22 17:54:24',0,'Innovation','New things','2016-11-22 17:54:24',11181,0,0,0,'/11340/',0,0,11179,'','2016-11-22 17:54:24'); /*!40000 ALTER TABLE `DLFolder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLSyncEvent` -- DROP TABLE IF EXISTS `DLSyncEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLSyncEvent` ( `syncEventId` bigint(20) NOT NULL, `modifiedTime` bigint(20) DEFAULT NULL, `event` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `typePK` bigint(20) DEFAULT NULL, PRIMARY KEY (`syncEventId`), UNIQUE KEY `IX_57D82B06` (`typePK`), KEY `IX_3D8E1607` (`modifiedTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLSyncEvent` -- LOCK TABLES `DLSyncEvent` WRITE; /*!40000 ALTER TABLE `DLSyncEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `DLSyncEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `EmailAddress` -- DROP TABLE IF EXISTS `EmailAddress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `EmailAddress` ( `emailAddressId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `address` varchar(75) DEFAULT NULL, `typeId` int(11) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, PRIMARY KEY (`emailAddressId`), KEY `IX_1BB072CA` (`companyId`), KEY `IX_49D2DEC4` (`companyId`,`classNameId`), KEY `IX_551A519F` (`companyId`,`classNameId`,`classPK`), KEY `IX_2A2CB130` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_7B43CD8` (`userId`), KEY `IX_D24F3956` (`uuid_`), KEY `IX_F74AB912` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `EmailAddress` -- LOCK TABLES `EmailAddress` WRITE; /*!40000 ALTER TABLE `EmailAddress` DISABLE KEYS */; /*!40000 ALTER TABLE `EmailAddress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoColumn` -- DROP TABLE IF EXISTS `ExpandoColumn`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoColumn` ( `columnId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `tableId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `defaultData` longtext, `typeSettings` longtext, PRIMARY KEY (`columnId`), UNIQUE KEY `IX_FEFC8DA7` (`tableId`,`name`), KEY `IX_A8C0CBE8` (`tableId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoColumn` -- LOCK TABLES `ExpandoColumn` WRITE; /*!40000 ALTER TABLE `ExpandoColumn` DISABLE KEYS */; INSERT INTO `ExpandoColumn` VALUES (10477,10202,10476,'aboutMe',15,'',''),(11711,10202,11710,'clientId',15,'',''),(12133,10202,12132,'socialOfficeEnabled',1,'',''),(12135,10202,12134,'layoutSetPrototypeKey',15,'',''); /*!40000 ALTER TABLE `ExpandoColumn` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoRow` -- DROP TABLE IF EXISTS `ExpandoRow`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoRow` ( `rowId_` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `tableId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`rowId_`), UNIQUE KEY `IX_81EFBFF5` (`tableId`,`classPK`), KEY `IX_D3F5D7AE` (`tableId`), KEY `IX_49EB3118` (`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoRow` -- LOCK TABLES `ExpandoRow` WRITE; /*!40000 ALTER TABLE `ExpandoRow` DISABLE KEYS */; INSERT INTO `ExpandoRow` VALUES (12146,10202,12134,12136,'2016-11-22 18:05:56'),(12220,10202,12134,12210,'2016-11-22 18:05:57'),(12278,10202,12134,12268,'2016-11-22 18:05:58'),(12308,10202,12132,12137,'2016-11-22 18:05:59'),(12310,10202,12132,12211,'2016-11-22 18:05:59'),(12312,10202,12132,12269,'2016-11-22 18:05:59'),(12392,10202,12132,10235,'2016-11-22 18:06:23'); /*!40000 ALTER TABLE `ExpandoRow` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoTable` -- DROP TABLE IF EXISTS `ExpandoTable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoTable` ( `tableId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, PRIMARY KEY (`tableId`), UNIQUE KEY `IX_37562284` (`companyId`,`classNameId`,`name`), KEY `IX_B5AE8A85` (`companyId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoTable` -- LOCK TABLES `ExpandoTable` WRITE; /*!40000 ALTER TABLE `ExpandoTable` DISABLE KEYS */; INSERT INTO `ExpandoTable` VALUES (12132,10202,10012,'CUSTOM_FIELDS'),(12015,10202,10014,'OPEN_SOCIAL_DATA_'),(12134,10202,10017,'CUSTOM_FIELDS'),(11710,10202,10046,'MP'),(10471,10202,10046,'OPEN_SOCIAL_DATA_'),(10476,10202,10046,'SN'),(11704,10202,10073,'CUSTOM_FIELDS'); /*!40000 ALTER TABLE `ExpandoTable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoValue` -- DROP TABLE IF EXISTS `ExpandoValue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoValue` ( `valueId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `tableId` bigint(20) DEFAULT NULL, `columnId` bigint(20) DEFAULT NULL, `rowId_` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `data_` longtext, PRIMARY KEY (`valueId`), UNIQUE KEY `IX_9DDD21E5` (`columnId`,`rowId_`), UNIQUE KEY `IX_D27B03E7` (`tableId`,`columnId`,`classPK`), KEY `IX_B29FEF17` (`classNameId`,`classPK`), KEY `IX_F7DD0987` (`columnId`), KEY `IX_9112A7A0` (`rowId_`), KEY `IX_F0566A77` (`tableId`), KEY `IX_1BD3F4C` (`tableId`,`classPK`), KEY `IX_CA9AFB7C` (`tableId`,`columnId`), KEY `IX_B71E92D5` (`tableId`,`rowId_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoValue` -- LOCK TABLES `ExpandoValue` WRITE; /*!40000 ALTER TABLE `ExpandoValue` DISABLE KEYS */; INSERT INTO `ExpandoValue` VALUES (12147,10202,12134,12135,12146,10017,12136,'layoutSetPrototypeKey_Site'),(12221,10202,12134,12135,12220,10017,12210,'layoutSetPrototypeKey_UserPrivate'),(12279,10202,12134,12135,12278,10017,12268,'layoutSetPrototypeKey_UserPublic'),(12309,10202,12132,12133,12308,10012,12137,'true'),(12311,10202,12132,12133,12310,10012,12211,'true'),(12313,10202,12132,12133,12312,10012,12269,'true'),(12393,10202,12132,12133,12392,10012,10235,'false'); /*!40000 ALTER TABLE `ExpandoValue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Group_` -- DROP TABLE IF EXISTS `Group_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Group_` ( `groupId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `creatorUserId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `parentGroupId` bigint(20) DEFAULT NULL, `liveGroupId` bigint(20) DEFAULT NULL, `name` varchar(150) DEFAULT NULL, `description` longtext, `type_` int(11) DEFAULT NULL, `typeSettings` longtext, `friendlyURL` varchar(255) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `site` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `treePath` longtext, `manualMembership` tinyint(4) DEFAULT NULL, `membershipRestriction` int(11) DEFAULT NULL, `remoteStagingGroupCount` int(11) DEFAULT NULL, PRIMARY KEY (`groupId`), UNIQUE KEY `IX_D0D5E397` (`companyId`,`classNameId`,`classPK`), UNIQUE KEY `IX_5DE0BE11` (`companyId`,`classNameId`,`liveGroupId`,`name`), UNIQUE KEY `IX_5BDDB872` (`companyId`,`friendlyURL`), UNIQUE KEY `IX_BBCA55B` (`companyId`,`liveGroupId`,`name`), UNIQUE KEY `IX_5AA68501` (`companyId`,`name`), UNIQUE KEY `IX_754FBB1C` (`uuid_`,`groupId`), KEY `IX_ABA5CEC2` (`companyId`), KEY `IX_16218A38` (`liveGroupId`), KEY `IX_7B590A7A` (`type_`,`active_`), KEY `IX_B584B5CC` (`companyId`,`classNameId`), KEY `IX_ABE2D54` (`companyId`,`classNameId`,`parentGroupId`), KEY `IX_5D75499E` (`companyId`,`parentGroupId`), KEY `IX_6C499099` (`companyId`,`parentGroupId`,`site`), KEY `IX_63A2AABD` (`companyId`,`site`), KEY `IX_F981514E` (`uuid_`), KEY `IX_26CC761A` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Group_` -- LOCK TABLES `Group_` WRITE; /*!40000 ALTER TABLE `Group_` DISABLE KEYS */; INSERT INTO `Group_` VALUES (10219,10202,10205,10012,10219,0,0,'Control Panel','',3,'','/control_panel',1,0,'9c126b70-95f6-45f8-b929-d8bb45a5f4e3','/10219/',1,0,0),(10227,10202,10205,10012,10227,0,0,'Guest','',1,'','/guest',1,1,'e678567c-97b1-40ed-a3bf-2e1bb44aaa38','/10227/',1,0,0),(10235,10202,10205,10008,10202,0,0,'10202','',0,'social-office-initialized=true\nsocial-office-users-configured=true\n','/global',1,1,'bea21ea5-45ac-488c-a4ff-56efbee39d62','/10235/',1,0,0),(10241,10202,10239,10046,10239,0,0,'10239','',0,'','/test',1,0,'37cb26de-dd4d-49cb-bb27-40443b57e933','/10241/',1,0,0),(10335,10202,10205,10015,10334,0,0,'10334','',0,'','/template-10334',1,0,'ab4be271-de0a-494f-a49c-db6ee2e21dd1','/10335/',1,0,0),(10344,10202,10205,10015,10343,0,0,'10343','',0,'','/template-10343',1,0,'459c3163-b904-4398-a143-41bb47f59637','/10344/',1,0,0),(10353,10202,10205,10015,10352,0,0,'10352','',0,'','/template-10352',1,0,'49b6951a-2560-43ba-bbdc-5e98e1e26b6f','/10353/',1,0,0),(10362,10202,10205,10017,10361,0,0,'10361','',0,'','/template-10361',1,0,'b94bd63d-8fc1-473c-8260-b2b90f8ef3e9','/10362/',1,0,0),(10391,10202,10205,10017,10390,0,0,'10390','',0,'','/template-10390',1,0,'ec28916e-aa55-422b-887b-3c8e4ea3abf0','/10391/',1,0,0),(10587,10202,10205,10024,10586,0,0,'7Cogs, Inc. LFR_ORGANIZATION','',3,'','/7cogs',1,1,'ad0d27c2-25ee-4f69-97dd-80c482a9ee1f','/10587/',1,0,0),(10912,10202,10205,10024,10911,0,0,'7Cogs, Inc. Mobile LFR_ORGANIZATION','',3,'','/7cogs-mobile',1,1,'5de30c45-1f1d-40d4-8145-d2d858917728','/10912/',1,0,0),(10965,10202,10963,10046,10963,0,0,'10963','',0,'','/bruno',1,0,'d584ac40-835c-4060-a4e3-c1a10f28f276','/10965/',1,0,0),(11037,10202,11035,10046,11035,0,0,'11035','',0,'','/john',1,0,'839fddc1-0f13-4d02-9629-80656dbff1b6','/11037/',1,0,0),(11109,10202,11107,10046,11107,0,0,'11107','',0,'','/michelle',1,0,'90036c91-2283-4199-9f6a-65cf848bb8a6','/11109/',1,0,0),(11181,10202,11179,10046,11179,0,0,'11179','',0,'','/richard',1,0,'3272be1a-e760-4f66-a7ca-0e2a2090f45d','/11181/',1,0,0),(11598,10202,10205,11597,10205,0,0,'User Personal Site','',3,'','/personal_site',1,0,'fc9dceaa-5f53-4fcd-93c4-71a24c0f2af2','/11598/',1,0,0),(11628,10202,10205,10015,11627,0,0,'11627','',0,'','/template-11627',1,0,'88de8c96-0e6e-474c-9a82-587a426f4103','/11628/',1,0,0),(11637,10202,10205,10017,11636,0,0,'11636','',0,'','/template-11636',1,0,'719beda1-1c87-4215-83c3-3a8a5663825c','/11637/',1,0,0),(11663,10202,10205,10017,11662,0,0,'11662','',0,'','/template-11662',1,0,'167f2366-fd04-4312-9991-a832e3e57a57','/11663/',1,0,0),(11910,10202,10205,10017,11909,0,0,'11909','',0,'','/template-11909',1,0,'d2b58881-c98a-4ce4-a56e-e9e799f1476a','/11910/',1,0,0),(11936,10202,10205,10017,11935,0,0,'11935','',0,'','/template-11935',1,0,'c5e8e924-ac6c-48c0-ad4d-41faa7fe8f32','/11936/',1,0,0),(12137,10202,10205,10017,12136,0,0,'12136','',0,'customJspServletContextName=so-hook\n','/template-12136',1,0,'247b60f5-d7b8-40cc-ad36-5851e7d2f803','/12137/',1,0,0),(12211,10202,10205,10017,12210,0,0,'12210','',0,'customJspServletContextName=so-hook\n','/template-12210',1,0,'836be62b-1a5d-4fd2-a9a2-2fe55ae28ebc','/12211/',1,0,0),(12269,10202,10205,10017,12268,0,0,'12268','',0,'customJspServletContextName=so-hook\n','/template-12268',1,0,'f80560f5-a645-4fff-a8f0-771a3420e253','/12269/',1,0,0); /*!40000 ALTER TABLE `Group_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups_Orgs` -- DROP TABLE IF EXISTS `Groups_Orgs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Groups_Orgs` ( `groupId` bigint(20) NOT NULL, `organizationId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`organizationId`), KEY `IX_75267DCA` (`groupId`), KEY `IX_6BBB7682` (`organizationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups_Orgs` -- LOCK TABLES `Groups_Orgs` WRITE; /*!40000 ALTER TABLE `Groups_Orgs` DISABLE KEYS */; /*!40000 ALTER TABLE `Groups_Orgs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups_Roles` -- DROP TABLE IF EXISTS `Groups_Roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Groups_Roles` ( `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`roleId`), KEY `IX_84471FD2` (`groupId`), KEY `IX_3103EF3D` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups_Roles` -- LOCK TABLES `Groups_Roles` WRITE; /*!40000 ALTER TABLE `Groups_Roles` DISABLE KEYS */; /*!40000 ALTER TABLE `Groups_Roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups_UserGroups` -- DROP TABLE IF EXISTS `Groups_UserGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Groups_UserGroups` ( `groupId` bigint(20) NOT NULL, `userGroupId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`userGroupId`), KEY `IX_31FB749A` (`groupId`), KEY `IX_3B69160F` (`userGroupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups_UserGroups` -- LOCK TABLES `Groups_UserGroups` WRITE; /*!40000 ALTER TABLE `Groups_UserGroups` DISABLE KEYS */; /*!40000 ALTER TABLE `Groups_UserGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Image` -- DROP TABLE IF EXISTS `Image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Image` ( `imageId` bigint(20) NOT NULL, `modifiedDate` datetime DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `height` int(11) DEFAULT NULL, `width` int(11) DEFAULT NULL, `size_` int(11) DEFAULT NULL, PRIMARY KEY (`imageId`), KEY `IX_6A925A4D` (`size_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Image` -- LOCK TABLES `Image` WRITE; /*!40000 ALTER TABLE `Image` DISABLE KEYS */; INSERT INTO `Image` VALUES (10591,'2016-11-22 17:54:16','png',58,269,3536),(10920,'2016-11-22 17:54:20','png',28,150,613),(10969,'2016-11-22 17:54:20','jpg',100,100,3341),(11041,'2016-11-22 17:54:21','jpg',100,100,3297),(11113,'2016-11-22 17:54:22','jpg',100,100,3479),(11185,'2016-11-22 17:54:22','jpg',100,100,2942); /*!40000 ALTER TABLE `Image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalArticle` -- DROP TABLE IF EXISTS `JournalArticle`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalArticle` ( `uuid_` varchar(75) DEFAULT NULL, `id_` bigint(20) NOT NULL, `resourcePrimKey` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, `version` double DEFAULT NULL, `title` longtext, `urlTitle` varchar(150) DEFAULT NULL, `description` longtext, `content` longtext, `type_` varchar(75) DEFAULT NULL, `structureId` varchar(75) DEFAULT NULL, `templateId` varchar(75) DEFAULT NULL, `displayDate` datetime DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `reviewDate` datetime DEFAULT NULL, `indexable` tinyint(4) DEFAULT NULL, `smallImage` tinyint(4) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `layoutUuid` varchar(75) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `treePath` longtext, PRIMARY KEY (`id_`), UNIQUE KEY `IX_85C52EEC` (`groupId`,`articleId`,`version`), UNIQUE KEY `IX_3463D95B` (`uuid_`,`groupId`), KEY `IX_DFF98523` (`companyId`), KEY `IX_323DF109` (`companyId`,`status`), KEY `IX_9356F865` (`groupId`), KEY `IX_68C0F69C` (`groupId`,`articleId`), KEY `IX_4D5CD982` (`groupId`,`articleId`,`status`), KEY `IX_301D024B` (`groupId`,`status`), KEY `IX_2E207659` (`groupId`,`structureId`), KEY `IX_8DEAE14E` (`groupId`,`templateId`), KEY `IX_22882D02` (`groupId`,`urlTitle`), KEY `IX_D2D249E8` (`groupId`,`urlTitle`,`status`), KEY `IX_33F49D16` (`resourcePrimKey`), KEY `IX_3E2765FC` (`resourcePrimKey`,`status`), KEY `IX_EF9B7028` (`smallImageId`), KEY `IX_F029602F` (`uuid_`), KEY `IX_3D070845` (`companyId`,`version`), KEY `IX_E82F322B` (`companyId`,`version`,`status`), KEY `IX_9CE6E0FA` (`groupId`,`classNameId`,`classPK`), KEY `IX_A2534AC2` (`groupId`,`classNameId`,`layoutUuid`), KEY `IX_91E78C35` (`groupId`,`classNameId`,`structureId`), KEY `IX_F43B9FF2` (`groupId`,`classNameId`,`templateId`), KEY `IX_3C028C1E` (`groupId`,`layoutUuid`), KEY `IX_3F1EA19E` (`layoutUuid`), KEY `IX_8E8710D9` (`structureId`), KEY `IX_9106F6CE` (`templateId`), KEY `IX_FF0E7A72` (`classNameId`,`templateId`), KEY `IX_EA05E9E1` (`displayDate`,`status`), KEY `IX_5CD17502` (`groupId`,`folderId`), KEY `IX_F35391E8` (`groupId`,`folderId`,`status`), KEY `IX_D19C1B9F` (`groupId`,`userId`), KEY `IX_43A0F80F` (`groupId`,`userId`,`classNameId`), KEY `IX_89FF8B06` (`resourcePrimKey`,`indexable`), KEY `IX_451D63EC` (`resourcePrimKey`,`indexable`,`status`), KEY `IX_71520099` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalArticle` -- LOCK TABLES `JournalArticle` WRITE; /*!40000 ALTER TABLE `JournalArticle` DISABLE KEYS */; INSERT INTO `JournalArticle` VALUES ('aa8a9be9-ff32-4102-a8ce-2d4d0bdafbcd',10527,10528,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15','10526',1,'Welcome','welcome','','\n\n \n \n .welcome {\n border: 1px solid #A7A6A9;\n border-radius: 5px;\n -moz-border-radius: 5px;\n -webkit-border-radius: 5px;\n color: #333;\n font-size: 1.21em;\n margin-bottom: 15px;\n padding: 10px;\n }\n .welcome .intro {\n font-size: 1.5em;\n }\n .welcome h2,\n .welcome h4 {\n margin: 0 0 .5em;\n }\n .welcome h3 {\n clear: both;\n margin: .5em 0 .15em;\n }\n .welcome h4 {\n color: #28477C;\n padding: .5em 0 0;\n }\n .welcome img.right {\n float: right;\n margin-left: 10px;\n }\n .welcome img.left {\n float: left;\n margin-right: 10px;\n }\n .welcome blockquote {\n font-family: \"Garamond\", \"Georgia\", Times, serif;\n font-size: 1.5em;\n font-style: italic;\n line-height: 1;\n }\n .welcome hr {\n border: none;\n border-bottom: 1px solid #CCC;\n border-top: 1px solid #EEE;\n clear: both;\n padding: 0;\n }\n \n\n
\n

\n Welcome to Liferay\n

\n\n \"Shared\n\n

\n Liferay is a complete, all-in-one open source enterprise portal solution and web application platform.\n

\n\n

\n It has over one hundred thousand deployments worldwide with sites from small businesses to Fortune 500 companies. We\'ve purposed Liferay for everything from a portal, a CMS to a web application platform. We hope you enjoy this preview release of Liferay 6.0. Take a look around, and maybe for starters, click on one of the users on the bottom right hand corner of the screen.\n

\n\n

\n Once you\'re done taking a look around, and if you haven\'t decided yet, you might want to ask yourself this question: "what are you going to use Liferay for?"\n

\n\n

As a Portal

\n\n

\n Portals are designed to unify information. Liferay was designed with people in mind. We know how important it is to communicate within companies and here\'s some of the ways we try to make it easier for you.\n

\n\n

Shared Workspaces

\n\n

\n Increase productivity by creating workspaces and workflows for documents, content, and more. Create a central meeting place for everyone related to a project; now then, imagine getting everyone on the same \"page,\" no matter where they are.\n

\n\n

Social Communities and Networks

\n\n \"Liferay\n\n

\n Remember Eddie, Olivia, and Johnny from accounting? What about Tom, Ryan, Jenn, and Steve from professional services? How do they communicate? E-mail can only go so far and instant messages can get lost or deleted. Now you\'re probably wondering, is there a better way?\n

\n\n
\n Communicate, collaborate, and consolidate information...\n
\n\n

\n By creating communities for different departments or groups within your company, then leveraging blogs, wikis, message boards, and shared calendars and get them organized and talking. With Liferay 6.0 we\'ve improved this with community templates. When creating a new community, just specify the type of community, we\'ll propagate pages with portlets commonly associated with that community, then just edit and save to your liking.\n

\n\n

Content Management System

\n\n \"Liferay\n\n

\n Liferay isn\'t just an internal portal, as an external and facing portal, you\'ll have the tools you need to create beautiful, dynamic websites. Create content through an editorial workflow then use and re-use that content ubiquitously through your portal.\n

\n\n

\n In this release, we\'ve made many improvements to make finding and publishing your content as global as possible.\n

\n\n

As a Platform

\n\n \"Platform\n\n

\n Liferay is a robust web application platform.It\'s open source so developers can see how things work.\n

\n\n

SOA

\n\n

\n Speed up development with built-in developer tools, LDAP, web services, and Spring-based architecture. Rapidly produce portlets and applications that cater to your needs.\n

\n\n

Enterprise Integration

\n\n

\n We meet industry standards which reduces risk and increases re-usability from within Liferay.\n

\n\n

Mashups

\n\n

\n Liferay supports mashup development with support for widgets, Facebook® integration, iGoogle® support, and GoogleMaps®\n

\n\n

Some Companies That Use Liferay

\n\n

\n Cisco Developer Network, Monster Energy Drink, Teambeachbody.com, EA Mobile, Poken, FCC Reboot, and many corporate intranet sites... for case studies and more, visit Liferay: Stories.\n

\n\n
\n\n

Build With Us

\n\n

\n What else does Liferay, as a company, do? We provide services.\n

\n\n
    \n
  • \n We offer Enterprise Support, 24 hours a day, seven days a week.\n
  • \n
  • \n Training tailored to fit your organization\'s needs.\n
  • \n
  • \n Through our consulting services, our experts are available to help you at every stage of the application\'s lifecycle.\n
  • \n
  • \n If you develop for the Liferay application, why not partner with us and help us build.\n
  • \n
\n\n

\n Visit Liferay.com, for updates, events, and join our community.\n

\n
\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10529,'',0,10205,' ','2016-11-22 17:54:15',0,0,'',0,'/0/'),('2a672698-c562-4cd7-917f-20d0707fd52d',10542,10543,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15','10541',1,'7Cogs Ad','7cogs-ad','','\n\n \n \n \n \"\"\n \n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10544,'',0,10205,' ','2016-11-22 17:54:15',0,0,'',0,'/0/'),('84683509-ac26-4e7b-943f-8f53aa4682fe',10554,10555,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15','10553',1,'7Cogs Mobile Ad','7cogs-mobile-ad','','\n\n \n \n \n \"\"\n \n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10556,'',0,10205,' ','2016-11-22 17:54:15',0,0,'',0,'/0/'),('05a50e5d-ee2e-4351-ad84-2da932ff2811',10564,10565,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16','10563',1,'Welcome Note','welcome-note','','\n\n \n \n \"\" These sample sites highlight features of Liferay 6.0\n

\n\n

\n The current page is the default page each user first sees when he gets to your portal. By default, unauthenticated users are Guest users, so they are redirected to the guest community: @portal_url@/web/guest/\n

\n\n

\n You can create any number of organizations or communities within the portal which will have their own public and private pages. One organization called 7cogs has already been created.\n

\n\n

\n What is new in Liferay 6.0?\n

\n\n

\n How can I upgrade to Liferay 6.0?\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10566,'',0,10205,' ','2016-11-22 17:54:16',0,0,'',0,'/0/'),('33c8561d-7460-4f82-b571-ba2dd3c3c827',10573,10574,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16','10572',1,'Welcome Login','welcome-login','','\n\n \n \n .loginuser {\n display: block;\n margin-top: 5px;\n padding: 2px 0 10px;\n text-decoration: none;\n width: 100%;\n }\n .loginuser h2 {\n font-size: 14px;\n margin: 0;\n }\n .loginuser a {\n display: block;\n margin: 2px 0 0 95px;\n padding-left: 20px;\n }\n .loginuser img {\n margin: 0 5px 0 0;\n padding: 2px;\n }\n .loginuser:hover {\n background: #CED9E2;\n }\n .express_login {\n background: url(\"/html/icons/login.png\") no-repeat;\n }\n .public_pages {\n background: url(\"/html/themes/classic/images/common/view_tasks.png\") no-repeat;\n }\n \n\n
\n \n \n \n \n \n \n \n\n
\n
\n \"\"\n
\n\n

Bruno (Admin)

\n\n
\n The admin has full control over the entire portal, allowing modification and creation of users, communitities, and roles. View bruno\'s public page Login as bruno\n\n
\n
\n
\n\n
\n \n \n \n \n \n \n \n\n
\n
\n \"\"\n
\n\n

Richard Publisher

\n\n
\n Richard has article submission rights for the content management system. View richard\'s public page Login as richard\n
\n
\n
\n\n
\n \n \n \n \n \n \n \n\n
\n
\n \"\"\n
\n\n

Michelle Editor

\n\n
\n Michelle has control over the staging and layout of all articles as well as publishing rights for workflow and the content management system. View michelle\'s public page Login as michelle\n
\n
\n
\n\n
\n \n \n \n \n \n \n \n\n
\n
\n \"\"\n
\n\n

John Regular User

\n\n
\n John is a user with minimum rights within the portal.\n \n
\n
\n
\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10575,'',0,10205,' ','2016-11-22 17:54:16',0,0,'',0,'/0/'),('1f1fd521-5b6c-4160-81b7-71e267a7336f',10664,10665,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17','10663',1,'Banner','banner','','\n\n \n \n
\n \n
\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10666,'',0,10205,' ','2016-11-22 17:54:17',0,0,'',0,'/0/'),('31a5cdff-1dcb-478b-9ea3-39d6dcb900a8',10678,10679,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17','10677',1,'Products Button','products-button','','\n\n \n \n
\n
\n
\n
\n

\n Products\n

\n

\n Our newest additions to the Titanium Series: ViX-998\n

\n
\n
\n
\n
\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10680,'',0,10205,' ','2016-11-22 17:54:17',0,0,'',0,'/0/'),('6661c0b7-cce2-4020-88f5-1cde46087dd8',10688,10689,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17','10687',1,'Blogs Button','blogs-button','','\n\n \n \n
\n
\n
\n
\n

\n Visit the Blog!\n

\n

\n Read about the latest stuff from the 7Cogs!\n

\n
\n
\n
\n
\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10690,'',0,10205,' ','2016-11-22 17:54:17',0,0,'',0,'/0/'),('9247463b-0b16-4928-9d4b-6272c6916c0d',10698,10699,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17','10697',1,'Forums Button','forums-button','','\n\n \n \n
\n
\n
\n
\n

\n To the Forums!\n

\n

\n Voice your concerns and discuss with other members.\n

\n
\n
\n
\n
\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10700,'',0,10205,' ','2016-11-22 17:54:17',0,0,'',0,'/0/'),('d4eb7bbf-56c4-4dca-ba74-a2a58c2de5de',10708,10709,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17','10707',1,'Home Page Intro','home-page-intro','','\n\n \n \n
\n

\n Leading Innovation in the Cog Industry\n

\n

\n Introducing the ViX-998: Social Networking for The Cogs Industry\n

\n
\n

\n One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin.\n He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections.\n The bedding was hardly able to cover it and seemed ready to slide off any moment.\n His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked.\n \"What\'s happened to me?\" he thought.\n It wasn\'t a dream.\n His room, a proper human room although a little too small, lay peacefully between its four familiar walls.\n A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame.\n It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer.\n Gregor then turned to look out the window at the dull weather.\n

\n

\n Read more about it >\n

\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10710,'',0,10205,' ','2016-11-22 17:54:17',0,0,'',0,'/0/'),('9c8182f1-4fe5-4409-bcd3-689e15604bb4',10720,10721,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:18','10719',1,'Cog Network Ad','cog-network-ad','','\n\n \n \n

Advertisement

\n\n
\n
\n
\n
\n
\n \n\n
\n

\n 7 Cogs Awesomeness\n

\n
    \n
  • \n 1st Point of Awesomeness\n
  • \n
  • \n 2nd Point of Awesomeness\n
  • \n
\n
\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10722,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('3682fd95-9732-433b-87ab-7d4600df3999',10737,10738,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','10736',1,'Products Banner','products-banner','','\n\n \n \n Products\n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10739,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('475151c8-c10a-485b-b62f-4490cb810f7d',10749,10750,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','10748',1,'Products Landing Intro','products-landing-intro','','\n\n \n \n
\n \n
\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10751,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('35ec5639-fddf-4ef0-ae6c-28b7c15ef114',10760,10761,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','10759',1,'Products Landing Intro Info','products-landing-intro-info','','\n\n \n \n
\n

\n Introducing the ViX-998\n

\n

\n Social Networking for the Cogs Industry\n

\n
\n

\n One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin.\n He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections.\n The bedding was hardly able to cover it and seemed ready to slide off any moment.\n His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked.\n \"What\'s happened to me?\" he thought.\n It wasn\'t a dream.\n His room, a proper human room although a little too small, lay peacefully between its four familiar walls.\n A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame.\n It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer.\n Gregor then turned to look out the window at the dull weather.\n

\n

\n Read more about it >\n

\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10762,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('747dfb2d-c96a-4359-bd20-f0d927bafaeb',10770,10771,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','10769',1,'Products Catalog','products-catalog','','\n\n \n \n

\n Advertisement\n

\n
\n
\n
\n
\n

\n Titanium Series\n

\n\n
    \n
  • \n ViX-998\n
  • \n
  • \n ViX-988\n
  • \n
  • \n ViX-876\n
  • \n
\n
\n
\n
\n
\n

\n Adamantium Series\n

\n\n
    \n
  • \n WvE-X\n
  • \n
  • \n WvE-X23\n
  • \n
  • \n WpN-X\n
  • \n
\n
\n
\n
\n
\n

\n Vibranium Series\n

\n\n
    \n
  • \n CpA-1917\n
  • \n
  • \n CpA-1945\n
  • \n
  • \n WkD-889\n
  • \n
\n
\n
\n
\n
\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10772,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('7ed91f9f-01ea-49f3-8b8d-3d0678e4bd8a',10785,10786,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','10784',1,'Blogs Banner','blogs-banner','','\n\n \n \n Blogs\n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10787,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('c9c4635d-f651-40dc-904a-257af832f937',10801,10802,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','10800',1,'Wiki Banner','wiki-banner','','\n\n \n \n Wiki\n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10803,'',0,10205,' ','2016-11-22 17:54:18',0,0,'',0,'/0/'),('4ea7f632-124e-404b-a140-bbc60959cd5d',10838,10839,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19','10837',1,'Forums Banner','forums-banner','','\n\n \n \n Forums\n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10840,'',0,10205,' ','2016-11-22 17:54:19',0,0,'',0,'/0/'),('1e529c68-60e6-42fb-bb1c-24e0a9db0392',10855,10856,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19','10854',1,'About Us Banner','about-us-banner','','\n\n \n \n About Us\n \n ]]>\n \n','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10857,'',0,10205,' ','2016-11-22 17:54:19',0,0,'',0,'/0/'),('a87a7c2e-8721-4060-8e99-1ffb68725bc4',10865,10866,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19','10864',1,'About Us','about-us','','\n\n \n \n \n \n \n \n \"\"\n \n \n \n

\n To find out more about Liferay, please visit our website www.liferay.com\n

\n \n \n \n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10867,'',0,10205,' ','2016-11-22 17:54:19',0,0,'',0,'/0/'),('ace62f61-04d1-422c-8930-06998a9b80f4',10881,10882,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:20','10880',1,'Home','home','','\n\n \n \n \"\" These are the private pages of the 7Cogs Organization, which means that only members of this organization can see them and by default, only the Organization Administrator can edit them. To define a more advanced permission system, other Organization Roles can be created in the Control Panel\n

\n\n

\n In Liferay you can create as many organizations and communities as you want and each will have its own public and private pages. Public pages can be used for a public website as anybody can see them. Private pages can be used for an intranet as only the members belonging to that organization or community can see them.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10883,'',0,10205,' ','2016-11-22 17:54:20',0,0,'',0,'/0/'),('50c3b0d5-4cb0-4b81-b04f-c23d21ae8604',10899,10900,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20','10898',1,'Shared Documents','shared-documents','','\n\n \n \n \"\" Only the members of the 7cogs organization can see the documents and images on this page. By default only the Administrator can upload new files and create folders.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10901,'',0,10205,' ','2016-11-22 17:54:20',0,0,'',0,'/0/'),('7e42ef26-211f-4fb5-9960-8f272bddcdd6',10937,10938,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20','10936',1,'Mobile Welcome','mobile-welcome','','\n\n \n \n Welcome to Our Mobile Site\n \n\n

\n We specialize in manufacturing and developing gears, sprockets, cogs, bearings, and everything in between.\n

\n\n

\n Full Product Line and Services:\n

\n\n \n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10939,'',0,10205,' ','2016-11-22 17:54:20',0,0,'',0,'/0/'),('c9d3b53e-b34c-4b9b-bc89-43569a421df7',10953,10954,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20','10952',1,'Mobile Products','mobile-products','','\n\n \n \n h3 {\n margin: 1em 0 0;\n }\n \n\n

\n Products\n

\n\n

\n UiB-612\n

\n\n

\n \"\"
\n UiB-612 ipsum dolor sit amet, consectetur adipiscing elit. Aliquam viverra pellentesque ante ut tristique. Etiam non elit nibh, id laoreet felis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla sit amet quam risus, eleifend porta massa. Nam suscipit lectus blandit arcu rutrum vitae semper dui porttitor. Curabitur rutrum ultricies mi, at aliquet nisi auctor sit amet. Fusce sed iaculis sapien.\n

\n\n

\n ZiB-550\n

\n\n

\n \"\"
\n ZiB-550 ipsum dolor sit amet, consectetur adipiscing elit. Aliquam viverra pellentesque ante ut tristique. Etiam non elit nibh, id laoreet felis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla sit amet quam risus, eleifend porta massa. Nam suscipit lectus blandit arcu rutrum vitae semper dui porttitor. Curabitur rutrum ultricies mi, at aliquet nisi auctor sit amet. Fusce sed iaculis sapien.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10955,'',0,10205,' ','2016-11-22 17:54:20',0,0,'',0,'/0/'),('940e4c99-4bc0-412d-8424-43591ec001d7',10977,10978,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20','10976',1,'Public Pages bruno','public-pages-bruno','','\n\n \n \n \"\" Bruno's Public Page\n \n\n

\n My name is Bruno Admin. My Role in 7Cogs Inc. is the portal administrator. I have all the priveleges you\'d expext from an Administrator, like:\n

\n\n
    \n
  • \n The ability to add and delete pages, articles, portlets ect..\n
  • \n
  • \n I can assign roles for editors, contributors, staff members and give them the most appropriate privileges\n
  • \n
  • \n I\'m also able to configure Liferay to suit the preferences of my company\n
  • \n
\n\n

\n This is my personal space (My Own Community). I have 2 public pages: "Profile" and "Blog". Everybody can see these pages by going to @portal_url@/web/bruno but only I can modify the content in them.\n

\n\n

\n I also have a few private pages that only I can see (my socialSpace, my workSpace and my email). When I\'m logged in, I\'m able to access the pages using the Dockbar then clicking on the "Go to" button, and selecting the → "My Private Pages".\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,10979,'',0,10963,'Bruno Admin','2016-11-22 17:54:20',0,0,'',0,'/0/'),('312648d9-f733-439d-a539-c117990a92b6',11002,11003,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21','11001',1,'Public Pages bruno','public-pages-bruno-1','','\n\n \n \n \"\" Bruno's Private Page\n \n\n

\n These are my private pages. Only I can see them, edit them and create new ones.\n

\n\n
    \n
  • \n Social Space - Shows my friends and their activities.\n
  • \n
  • \n Work Space - Has my calendar, documents, images...\n
  • \n
  • \n Email - I can configure this page to view my emails.\n
  • \n
\n\n

\n To add more applications just go to the Dockbar and click on the "+ Add" button. It should bring out a menu, from there, you\'ll be able to add a pages and applications.\n

\n\n

\n Third Party Widgets:\n

\n\n

\n You can also add widgets from any other website. I have already added a widget for facebook which was very easy, by following these steps:\n

\n\n
    \n
  1. \n On the Dockbar, click on the "+ Add" button then the → "More..." selection, from there you can search for the "iframe" portlet\n
  2. \n
  3. \n After adding the application, go to the Configuration menu (Cog shaped of the portlet when borders are hidden, or the wrench icon) and set the Url to the third party widget, in our case, we used: iphone.facebook.com\n
  4. \n
  5. \n Click on "Save," then refresh the page\n
  6. \n
\n\n

\n With this method, you\'ll be able to use almost any page designed for the iPhone as a widget in your Liferay Portal instance.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11004,'',0,10963,'Bruno Admin','2016-11-22 17:54:21',0,0,'',0,'/0/'),('e33cb2a6-9468-4ee7-81a7-90c6fc975638',11020,11021,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21','11019',1,'My documents','my-documents','','\n\n \n \n \"\" These documents and images are on my private pages, so only I can see them or use them.\n

\n\n

\n In order to share folders, documents or images with the users of an organization or community you should use the private pages of that organization or community. To see an example, access the private pages of the organization 7Cogs and find a page called Shared documents. Only the members of that organization can access the private pages. If you only want some users of the organization to be able to access that page you would define a role for them and define permissions for that role.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11022,'',0,10963,'Bruno Admin','2016-11-22 17:54:21',0,0,'',0,'/0/'),('c3821c47-732a-4c02-b375-179696eb3484',11049,11050,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21','11048',1,'Public Pages john','public-pages-john','','\n\n \n \n \"\" Michelle's Public Page\n \n\n

\n My name is John Regular. I\'m a pretty regular guy with a pretty regular role in 7Cogs inc. This is my personal space (My Own Community). I have 2 public pages: "Profile" and "Blog". Everybody can see these pages by going to @portal_url@/web/michelle but only I can modify the content in them.\n

\n\n

\n I also have a few private pages that only I can see (my socialSpace, my workSpace and my email). When I\'m logged in, I\'m able to access the pages using the Dockbar then clicking on the "Go to" button, and selecting the → "My Private Pages".\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11051,'',0,11035,'John Regular','2016-11-22 17:54:21',0,0,'',0,'/0/'),('71de5ef6-91ee-4626-a13e-e64d84a80946',11074,11075,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21','11073',1,'Public Pages john','public-pages-john-1','','\n\n \n \n \"\" John's Private Page\n \n\n

\n These are my private pages. Only I can see them, edit them and create new ones.\n

\n\n
    \n
  • \n Social Space - Shows my friends and their activities.\n
  • \n
  • \n Work Space - Has my calendar, documents, images...\n
  • \n
  • \n Email - I can configure this page to view my emails.\n
  • \n
\n\n

\n To add more applications just go to the Dockbar and click on the "+ Add" button. It should bring out a menu, from there, you\'ll be able to add a pages and applications.\n

\n\n

\n Third Party Widgets:\n

\n\n

\n You can also add widgets from any other website. I have already added a widget for facebook which was very easy, by following these steps:\n

\n\n
    \n
  1. \n On the Dockbar, click on the "+ Add" button then the → "More..." selection, from there you can search for the "iframe" portlet\n
  2. \n
  3. \n After adding the application, go to the Configuration menu (Cog shaped of the portlet when borders are hidden, or the wrench icon) and set the Url to the third party widget, in our case, we used: http://iphone.facebook.com\n
  4. \n
  5. \n Click on "Save," then refresh the page\n
  6. \n
\n\n

\n With this method, you\'ll be able to use almost any page designed for the iPhone as a widget in your Liferay Portal instance.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11076,'',0,11035,'John Regular','2016-11-22 17:54:21',0,0,'',0,'/0/'),('3cbc18a3-4e51-4158-bf18-f05dc6627ced',11092,11093,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:22','11091',1,'My documents','my-documents','','\n\n \n \n \"\" These documents and images are on my private pages, so only I can see them or use them.\n

\n\n

\n In order to share folders, documents or images with the users of an organization or community you should use the private pages of that organization or community. To see an example, access the private pages of the organization 7Cogs and find a page called Shared documents. Only the members of that organization can access the private pages. If you only want some users of the organization to be able to access that page you would define a role for them and define permissions for that role.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11094,'',0,11035,'John Regular','2016-11-22 17:54:22',0,0,'',0,'/0/'),('4d3a79e1-e4b4-4d3a-9c3e-bf707bd4824b',11121,11122,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22','11120',1,'Public Pages michelle','public-pages-michelle','','\n\n \n \n \"\" Michelle's Public Page\n \n\n

\n My name is Michelle Writer. My Role in 7Cogs Inc. is a writer. This is my personal space (My Own Community). I have 2 public pages: "Profile" and "Blog". Everybody can see these pages by going to @portal_url@/web/michelle but only I can modify the content in them.\n

\n\n

\n I also have a few private pages that only I can see (my socialSpace, my workSpace and my email). When I\'m logged in, I\'m able to access the pages using the Dockbar then clicking on the "Go to" button, and selecting the → "My Private Pages".\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11123,'',0,11107,'Michelle Writer','2016-11-22 17:54:22',0,0,'',0,'/0/'),('47977e3f-94c1-4cfc-a65a-f3cdd7433087',11146,11147,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22','11145',1,'Public Pages michelle','public-pages-michelle-1','','\n\n \n \n \"\" Michelle's Private Page\n \n\n

\n These are my private pages. Only I can see them, edit them and create new ones.\n

\n\n
    \n
  • \n Social Space - Shows my friends and their activities.\n
  • \n
  • \n Work Space - Has my calendar, documents, images...\n
  • \n
  • \n Email - I can configure this page to view my emails.\n
  • \n
\n\n

\n To add more applications just go to the Dockbar and click on the "+ Add" button. It should bring out a menu, from there, you\'ll be able to add a pages and applications.\n

\n\n

\n Third Party Widgets:\n

\n\n

\n You can also add widgets from any other website. I have already added a widget for facebook which was very easy, by following these steps:\n

\n\n
    \n
  1. \n On the Dockbar, click on the "+ Add" button then the → "More..." selection, from there you can search for the "iframe" portlet\n
  2. \n
  3. \n After adding the application, go to the Configuration menu (Cog shaped of the portlet when borders are hidden, or the wrench icon) and set the Url to the third party widget, in our case, we used: http://m.digg.com/\n
  4. \n
  5. \n Click on "Save," then refresh the page\n
  6. \n
\n\n

\n With this method, you\'ll be able to use almost any page designed for the iPhone as a widget in your Liferay Portal instance.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11148,'',0,11107,'Michelle Writer','2016-11-22 17:54:22',0,0,'',0,'/0/'),('f0138226-5a16-44bf-9e77-b030c6ad7ce1',11164,11165,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22','11163',1,'My documents','my-documents','','\n\n \n \n \"\" These documents and images are on my private pages, so only I can see them or use them.\n

\n\n

\n In order to share folders, documents or images with the users of an organization or community you should use the private pages of that organization or community. To see an example, access the private pages of the organization 7Cogs and find a page called Shared documents. Only the members of that organization can access the private pages. If you only want some users of the organization to be able to access that page you would define a role for them and define permissions for that role.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11166,'',0,11107,'Michelle Writer','2016-11-22 17:54:22',0,0,'',0,'/0/'),('b4522a62-0d94-4ced-95d8-df23e1cf12ca',11193,11194,11181,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:23','11192',1,'Public Pages richard','public-pages-richard','','\n\n \n \n \"\" Richard's Public Page\n \n\n

\n Hi, my name is Richard, I\'m the publisher here on 7Cogs. I\'ve been authorized by Bruno Admin within this portal to have article submission rights for the content management system.\n

\n\n

\n This is my personal space (My Own Community). I have 2 public pages: "Profile" and "Blog". Everybody can see these pages by going to @portal_url@/web/richard but only I can modify the content in them.\n

\n\n

\n I also have a few private pages that only I can see (my socialSpace, my workSpace and my email). When I\'m logged in, I\'m able to access the pages using the Dockbar then clicking on the "Go to" button, and selecting the → "My Private Pages".\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11195,'',0,11179,'Richard Editor','2016-11-22 17:54:23',0,0,'',0,'/0/'),('d5662f53-27c8-4bd9-948d-75b37de5c0a0',11218,11219,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23','11217',1,'Public Pages richard','public-pages-richard-1','','\n\n \n \n \"\" Richard's Private Page\n \n\n

\n These are my private pages. Only I can see them, edit them and create new ones.\n

\n\n
    \n
  • \n Social Space - Shows my friends and their activities.\n
  • \n
  • \n Work Space - Has my calendar, documents, images...\n
  • \n
  • \n Email - I can configure this page to view my emails.\n
  • \n
\n\n

\n To add more applications just go to the Dockbar and click on the "+ Add" button. It should bring out a menu, from there, you\'ll be able to add a pages and applications.\n

\n\n

Third Party Widgets:

\n\n

\n You can also add widgets from any other website. I have already added a widget for facebook which was very easy, by following these steps:\n

\n\n
    \n
  1. \n On the Dockbar, click on the "+ Add" button then the → "More..." selection, from there you can search for the "iframe" portlet\n
  2. \n
  3. \n After adding the application, go to the Configuration menu (Cog shaped of the portlet when borders are hidden, or the wrench icon) and set the Url to the third party widget, in our case, we used: http://m.linkedin.com\n
  4. \n
  5. \n Click on "Save," then refresh the page\\\n
  6. \n
\n\n

\n With this method, you\'ll be able to use almost any page designed for the iPhone as a widget in your Liferay Portal instance.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11220,'',0,11179,'Richard Editor','2016-11-22 17:54:23',0,0,'',0,'/0/'),('507495db-a4a7-4257-aae3-34f516ac820d',11236,11237,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23','11235',1,'My documents','my-documents','','\n\n \n \n \"\" These documents and images are on my private pages, so only I can see them or use them.\n

\n\n

\n In order to share folders, documents or images with the users of an organization or community you should use the private pages of that organization or community. To see an example, access the private pages of the organization 7Cogs and find a page called Shared documents. Only the members of that organization can access the private pages. If you only want some users of the organization to be able to access that page you would define a role for them and define permissions for that role.\n

\n ]]>\n
\n
','general','','','2008-02-01 00:00:00',NULL,NULL,1,0,11238,'',0,11179,'Richard Editor','2016-11-22 17:54:23',0,0,'',0,'/0/'); /*!40000 ALTER TABLE `JournalArticle` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalArticleImage` -- DROP TABLE IF EXISTS `JournalArticleImage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalArticleImage` ( `articleImageId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, `version` double DEFAULT NULL, `elInstanceId` varchar(75) DEFAULT NULL, `elName` varchar(75) DEFAULT NULL, `languageId` varchar(75) DEFAULT NULL, `tempImage` tinyint(4) DEFAULT NULL, PRIMARY KEY (`articleImageId`), UNIQUE KEY `IX_103D6207` (`groupId`,`articleId`,`version`,`elInstanceId`,`elName`,`languageId`), KEY `IX_3B51BB68` (`groupId`), KEY `IX_158B526F` (`groupId`,`articleId`,`version`), KEY `IX_D4121315` (`tempImage`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalArticleImage` -- LOCK TABLES `JournalArticleImage` WRITE; /*!40000 ALTER TABLE `JournalArticleImage` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalArticleImage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalArticleResource` -- DROP TABLE IF EXISTS `JournalArticleResource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalArticleResource` ( `uuid_` varchar(75) DEFAULT NULL, `resourcePrimKey` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, PRIMARY KEY (`resourcePrimKey`), UNIQUE KEY `IX_88DF994A` (`groupId`,`articleId`), UNIQUE KEY `IX_84AB0309` (`uuid_`,`groupId`), KEY `IX_F8433677` (`groupId`), KEY `IX_DCD1FAC1` (`uuid_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalArticleResource` -- LOCK TABLES `JournalArticleResource` WRITE; /*!40000 ALTER TABLE `JournalArticleResource` DISABLE KEYS */; INSERT INTO `JournalArticleResource` VALUES ('2f0df6a5-dbec-4f17-b9a8-1d1eb0b2e75d',10528,10227,'10526'),('2d6469c9-6341-4db5-92d5-e3226f6999e6',10543,10227,'10541'),('2b15bc61-5d60-45de-9221-488dc6faafdd',10555,10227,'10553'),('ca276d5f-f9bb-4843-a756-60220638c89d',10565,10227,'10563'),('d0a9575c-cc42-40c8-8df4-fcd14a31ff6e',10574,10227,'10572'),('c2d71864-2b4e-4b1d-950f-e4c7281d2af4',10665,10587,'10663'),('6a22b327-4aa9-4504-a55c-b924c99a51a7',10679,10587,'10677'),('d6bb43d5-e835-483d-87af-99f0695916f0',10689,10587,'10687'),('809f9e6c-2e6a-4f44-b03a-822bec62c248',10699,10587,'10697'),('254b4f32-75e1-424e-9984-818726a00761',10709,10587,'10707'),('f92ad33d-24a1-44b3-8d91-42e036076f23',10721,10587,'10719'),('d14ff9b5-c1e1-4171-b39a-d952cfee1c6e',10738,10587,'10736'),('a5e3066e-9706-435b-bd34-25d909d080fa',10750,10587,'10748'),('5a5f3bdd-f3a1-4e0f-8771-33db7b6d8796',10761,10587,'10759'),('6537c110-f2ee-4517-8edd-de50218bc25a',10771,10587,'10769'),('af4668fc-9ae2-44da-84d6-5383dcb3b629',10786,10587,'10784'),('1bb61ebb-9223-4cec-a331-87b3f493aa31',10802,10587,'10800'),('41a0ce2c-9624-4807-9126-63a53d3eda31',10839,10587,'10837'),('93e38052-fe3d-46c6-91ea-94b17bb9aade',10856,10587,'10854'),('54ee6e58-e19b-4a7a-8914-0b8de9ebb9f1',10866,10587,'10864'),('3903777c-fd8b-4140-9c0c-9502c48b2127',10882,10587,'10880'),('483bdfb9-1f36-4a16-bb82-ceccc34db768',10900,10587,'10898'),('88dc02f6-9ee3-41c1-b794-836d0fbc7b3f',10938,10912,'10936'),('fe2372cc-2168-42ac-b9fa-446dac8b24e6',10954,10912,'10952'),('ba7fa2e7-a465-4c2b-a201-92fde5bc4e05',10978,10965,'10976'),('9484867a-4c6c-4b08-897f-73f4a02db5c6',11003,10965,'11001'),('ac7a1929-b813-4991-8e19-f19293874881',11021,10965,'11019'),('a4435a4b-d37d-4db5-879f-8c7e8c61be61',11050,11037,'11048'),('59aa7f4b-65a1-463a-aa7b-0292bc26bef7',11075,11037,'11073'),('2474f07c-65f6-4108-993b-e91ade321a6a',11093,11037,'11091'),('3d6118ab-c342-410c-9d04-53fbe2d7ac69',11122,11109,'11120'),('93e1dd4a-d53e-4979-808e-3981054578f9',11147,11109,'11145'),('b4bd8c20-f6da-423a-8bcb-129addd81770',11165,11109,'11163'),('2403327a-ed5c-478c-b29f-0f4ae4076bba',11194,11181,'11192'),('01856b8f-f039-4b5b-8e94-6f535be27d7e',11219,11181,'11217'),('4005d3ae-8b20-4229-ac7c-39d71077e56e',11237,11181,'11235'); /*!40000 ALTER TABLE `JournalArticleResource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalContentSearch` -- DROP TABLE IF EXISTS `JournalContentSearch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalContentSearch` ( `contentSearchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `layoutId` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, PRIMARY KEY (`contentSearchId`), UNIQUE KEY `IX_C3AA93B8` (`groupId`,`privateLayout`,`layoutId`,`portletId`,`articleId`), KEY `IX_9207CB31` (`articleId`), KEY `IX_6838E427` (`groupId`,`articleId`), KEY `IX_20962903` (`groupId`,`privateLayout`), KEY `IX_7CC7D73E` (`groupId`,`privateLayout`,`articleId`), KEY `IX_B3B318DC` (`groupId`,`privateLayout`,`layoutId`), KEY `IX_7ACC74C9` (`groupId`,`privateLayout`,`layoutId`,`portletId`), KEY `IX_8DAF8A35` (`portletId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalContentSearch` -- LOCK TABLES `JournalContentSearch` WRITE; /*!40000 ALTER TABLE `JournalContentSearch` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalContentSearch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalFeed` -- DROP TABLE IF EXISTS `JournalFeed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalFeed` ( `uuid_` varchar(75) DEFAULT NULL, `id_` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `feedId` varchar(75) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `type_` varchar(75) DEFAULT NULL, `structureId` varchar(75) DEFAULT NULL, `templateId` varchar(75) DEFAULT NULL, `rendererTemplateId` varchar(75) DEFAULT NULL, `delta` int(11) DEFAULT NULL, `orderByCol` varchar(75) DEFAULT NULL, `orderByType` varchar(75) DEFAULT NULL, `targetLayoutFriendlyUrl` varchar(255) DEFAULT NULL, `targetPortletId` varchar(75) DEFAULT NULL, `contentField` varchar(75) DEFAULT NULL, `feedFormat` varchar(75) DEFAULT NULL, `feedVersion` double DEFAULT NULL, PRIMARY KEY (`id_`), UNIQUE KEY `IX_65576CBC` (`groupId`,`feedId`), UNIQUE KEY `IX_39031F51` (`uuid_`,`groupId`), KEY `IX_35A2DB2F` (`groupId`), KEY `IX_50C36D79` (`uuid_`), KEY `IX_CB37A10F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalFeed` -- LOCK TABLES `JournalFeed` WRITE; /*!40000 ALTER TABLE `JournalFeed` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalFeed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalFolder` -- DROP TABLE IF EXISTS `JournalFolder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalFolder` ( `uuid_` varchar(75) DEFAULT NULL, `folderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(100) DEFAULT NULL, `description` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`folderId`), UNIQUE KEY `IX_65026705` (`groupId`,`parentFolderId`,`name`), UNIQUE KEY `IX_E002061` (`uuid_`,`groupId`), KEY `IX_E6E2725D` (`companyId`), KEY `IX_C36B0443` (`companyId`,`status`), KEY `IX_742DEC1F` (`groupId`), KEY `IX_E988689E` (`groupId`,`name`), KEY `IX_190483C6` (`groupId`,`parentFolderId`), KEY `IX_EFD9CAC` (`groupId`,`parentFolderId`,`status`), KEY `IX_63BDFA69` (`uuid_`), KEY `IX_54F89E1F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalFolder` -- LOCK TABLES `JournalFolder` WRITE; /*!40000 ALTER TABLE `JournalFolder` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalFolder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoAction` -- DROP TABLE IF EXISTS `KaleoAction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoAction` ( `kaleoActionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeName` varchar(200) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `executionType` varchar(20) DEFAULT NULL, `script` longtext, `scriptLanguage` varchar(75) DEFAULT NULL, `scriptRequiredContexts` longtext, `priority` int(11) DEFAULT NULL, PRIMARY KEY (`kaleoActionId`), KEY `IX_50E9112C` (`companyId`), KEY `IX_170EFD7A` (`kaleoClassName`,`kaleoClassPK`), KEY `IX_4B2545E8` (`kaleoClassName`,`kaleoClassPK`,`executionType`), KEY `IX_F95A622` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoAction` -- LOCK TABLES `KaleoAction` WRITE; /*!40000 ALTER TABLE `KaleoAction` DISABLE KEYS */; INSERT INTO `KaleoAction` VALUES (10441,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoNode',10440,10435,'approved','approve','','onEntry',' \n Packages.com.liferay.portal.kernel.workflow.WorkflowStatusManagerUtil.updateStatus(Packages.com.liferay.portal.kernel.workflow.WorkflowConstants.toStatus(\"approved\"), workflowContext);\n \n ','javascript','',0); /*!40000 ALTER TABLE `KaleoAction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoCondition` -- DROP TABLE IF EXISTS `KaleoCondition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoCondition` ( `kaleoConditionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `script` longtext, `scriptLanguage` varchar(75) DEFAULT NULL, `scriptRequiredContexts` longtext, PRIMARY KEY (`kaleoConditionId`), KEY `IX_FEE46067` (`companyId`), KEY `IX_DC978A5D` (`kaleoDefinitionId`), KEY `IX_86CBD4C` (`kaleoNodeId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoCondition` -- LOCK TABLES `KaleoCondition` WRITE; /*!40000 ALTER TABLE `KaleoCondition` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoCondition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoDefinition` -- DROP TABLE IF EXISTS `KaleoDefinition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoDefinition` ( `kaleoDefinitionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `title` longtext, `description` longtext, `content` longtext, `version` int(11) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `startKaleoNodeId` bigint(20) DEFAULT NULL, PRIMARY KEY (`kaleoDefinitionId`), KEY `IX_40B9112F` (`companyId`), KEY `IX_408542BA` (`companyId`,`active_`), KEY `IX_76C781AE` (`companyId`,`name`), KEY `IX_4C23F11B` (`companyId`,`name`,`active_`), KEY `IX_EC14F81A` (`companyId`,`name`,`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoDefinition` -- LOCK TABLES `KaleoDefinition` WRITE; /*!40000 ALTER TABLE `KaleoDefinition` DISABLE KEYS */; INSERT INTO `KaleoDefinition` VALUES (10435,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','Single Approver','Single Approver','A single approver can approve a workflow content.','',1,1,10442); /*!40000 ALTER TABLE `KaleoDefinition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoInstance` -- DROP TABLE IF EXISTS `KaleoInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoInstance` ( `kaleoInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoDefinitionName` varchar(200) DEFAULT NULL, `kaleoDefinitionVersion` int(11) DEFAULT NULL, `rootKaleoInstanceTokenId` bigint(20) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoInstanceId`), KEY `IX_5F2FCD2D` (`companyId`), KEY `IX_BF5839F8` (`companyId`,`kaleoDefinitionName`,`kaleoDefinitionVersion`,`completionDate`), KEY `IX_4DA4D123` (`kaleoDefinitionId`), KEY `IX_ACF16238` (`kaleoDefinitionId`,`completed`), KEY `IX_58D85ECB` (`className`,`classPK`), KEY `IX_C6D7A867` (`companyId`,`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoInstance` -- LOCK TABLES `KaleoInstance` WRITE; /*!40000 ALTER TABLE `KaleoInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoInstanceToken` -- DROP TABLE IF EXISTS `KaleoInstanceToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoInstanceToken` ( `kaleoInstanceTokenId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `parentKaleoInstanceTokenId` bigint(20) DEFAULT NULL, `currentKaleoNodeId` bigint(20) DEFAULT NULL, `currentKaleoNodeName` varchar(200) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime DEFAULT NULL, PRIMARY KEY (`kaleoInstanceTokenId`), KEY `IX_153721BE` (`companyId`), KEY `IX_4A86923B` (`companyId`,`parentKaleoInstanceTokenId`), KEY `IX_360D34D9` (`companyId`,`parentKaleoInstanceTokenId`,`completionDate`), KEY `IX_7BDB04B4` (`kaleoDefinitionId`), KEY `IX_F42AAFF6` (`kaleoInstanceId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoInstanceToken` -- LOCK TABLES `KaleoInstanceToken` WRITE; /*!40000 ALTER TABLE `KaleoInstanceToken` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoInstanceToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoLog` -- DROP TABLE IF EXISTS `KaleoLog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoLog` ( `kaleoLogId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoNodeName` varchar(200) DEFAULT NULL, `terminalKaleoNode` tinyint(4) DEFAULT NULL, `kaleoActionId` bigint(20) DEFAULT NULL, `kaleoActionName` varchar(200) DEFAULT NULL, `kaleoActionDescription` longtext, `previousKaleoNodeId` bigint(20) DEFAULT NULL, `previousKaleoNodeName` varchar(200) DEFAULT NULL, `previousAssigneeClassName` varchar(200) DEFAULT NULL, `previousAssigneeClassPK` bigint(20) DEFAULT NULL, `currentAssigneeClassName` varchar(200) DEFAULT NULL, `currentAssigneeClassPK` bigint(20) DEFAULT NULL, `type_` varchar(50) DEFAULT NULL, `comment_` longtext, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `duration` bigint(20) DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoLogId`), KEY `IX_73B5F4DE` (`companyId`), KEY `IX_E66A153A` (`kaleoClassName`,`kaleoClassPK`,`kaleoInstanceTokenId`,`type_`), KEY `IX_6C64B7D4` (`kaleoDefinitionId`), KEY `IX_5BC6AB16` (`kaleoInstanceId`), KEY `IX_470B9FF8` (`kaleoInstanceTokenId`,`type_`), KEY `IX_B0CDCA38` (`kaleoTaskInstanceTokenId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoLog` -- LOCK TABLES `KaleoLog` WRITE; /*!40000 ALTER TABLE `KaleoLog` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoLog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoNode` -- DROP TABLE IF EXISTS `KaleoNode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoNode` ( `kaleoNodeId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `metadata` longtext, `description` longtext, `type_` varchar(20) DEFAULT NULL, `initial_` tinyint(4) DEFAULT NULL, `terminal` tinyint(4) DEFAULT NULL, PRIMARY KEY (`kaleoNodeId`), KEY `IX_C4E9ACE0` (`companyId`), KEY `IX_F28C443E` (`companyId`,`kaleoDefinitionId`), KEY `IX_32E94DD6` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoNode` -- LOCK TABLES `KaleoNode` WRITE; /*!40000 ALTER TABLE `KaleoNode` DISABLE KEYS */; INSERT INTO `KaleoNode` VALUES (10436,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,'update','','','TASK',0,0),(10440,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,'approved','','','STATE',0,1),(10442,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,'created','','','STATE',1,0),(10443,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,'review','','','TASK',0,0); /*!40000 ALTER TABLE `KaleoNode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoNotification` -- DROP TABLE IF EXISTS `KaleoNotification`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoNotification` ( `kaleoNotificationId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeName` varchar(200) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `executionType` varchar(20) DEFAULT NULL, `template` longtext, `templateLanguage` varchar(75) DEFAULT NULL, `notificationTypes` varchar(25) DEFAULT NULL, PRIMARY KEY (`kaleoNotificationId`), KEY `IX_38829497` (`companyId`), KEY `IX_902D342F` (`kaleoClassName`,`kaleoClassPK`), KEY `IX_F3362E93` (`kaleoClassName`,`kaleoClassPK`,`executionType`), KEY `IX_4B968E8D` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoNotification` -- LOCK TABLES `KaleoNotification` WRITE; /*!40000 ALTER TABLE `KaleoNotification` DISABLE KEYS */; INSERT INTO `KaleoNotification` VALUES (10437,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoNode',10436,10435,'update','Creator Modification Notification','','onAssignment','Your submission was rejected by a reviewer, please modify and resubmit.','text','email'),(10444,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoNode',10443,10435,'review','Review Notification','','onAssignment','You have a new submission waiting for your review in the workflow.','text','email'); /*!40000 ALTER TABLE `KaleoNotification` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoNotificationRecipient` -- DROP TABLE IF EXISTS `KaleoNotificationRecipient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoNotificationRecipient` ( `kaleoNotificationRecipientId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNotificationId` bigint(20) DEFAULT NULL, `recipientClassName` varchar(200) DEFAULT NULL, `recipientClassPK` bigint(20) DEFAULT NULL, `recipientRoleType` int(11) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, PRIMARY KEY (`kaleoNotificationRecipientId`), KEY `IX_2C8C4AF4` (`companyId`), KEY `IX_AA6697EA` (`kaleoDefinitionId`), KEY `IX_7F4FED02` (`kaleoNotificationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoNotificationRecipient` -- LOCK TABLES `KaleoNotificationRecipient` WRITE; /*!40000 ALTER TABLE `KaleoNotificationRecipient` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoNotificationRecipient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTask` -- DROP TABLE IF EXISTS `KaleoTask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTask` ( `kaleoTaskId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, PRIMARY KEY (`kaleoTaskId`), KEY `IX_E1F8B23D` (`companyId`), KEY `IX_3FFA633` (`kaleoDefinitionId`), KEY `IX_77B3F1A2` (`kaleoNodeId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTask` -- LOCK TABLES `KaleoTask` WRITE; /*!40000 ALTER TABLE `KaleoTask` DISABLE KEYS */; INSERT INTO `KaleoTask` VALUES (10438,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,10436,'update',''),(10445,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,10443,'review',''); /*!40000 ALTER TABLE `KaleoTask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTaskAssignment` -- DROP TABLE IF EXISTS `KaleoTaskAssignment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTaskAssignment` ( `kaleoTaskAssignmentId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `assigneeClassName` varchar(200) DEFAULT NULL, `assigneeClassPK` bigint(20) DEFAULT NULL, `assigneeActionId` varchar(75) DEFAULT NULL, `assigneeScript` longtext, `assigneeScriptLanguage` varchar(75) DEFAULT NULL, `assigneeScriptRequiredContexts` longtext, PRIMARY KEY (`kaleoTaskAssignmentId`), KEY `IX_611732B0` (`companyId`), KEY `IX_D835C576` (`kaleoClassName`,`kaleoClassPK`), KEY `IX_1087068E` (`kaleoClassName`,`kaleoClassPK`,`assigneeClassName`), KEY `IX_575C03A6` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTaskAssignment` -- LOCK TABLES `KaleoTaskAssignment` WRITE; /*!40000 ALTER TABLE `KaleoTaskAssignment` DISABLE KEYS */; INSERT INTO `KaleoTaskAssignment` VALUES (10439,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10438,10435,10436,'com.liferay.portal.model.User',0,'','','',''),(10446,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10447,'','','',''),(10448,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10216,'','','',''),(10449,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10215,'','','',''),(10450,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10208,'','','',''),(10451,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10218,'','','',''),(10452,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10453,'','','',''),(10454,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10213,'','','',''),(10455,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08','com.liferay.portal.workflow.kaleo.model.KaleoTask',10445,10435,10443,'com.liferay.portal.model.Role',10456,'','','',''); /*!40000 ALTER TABLE `KaleoTaskAssignment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTaskAssignmentInstance` -- DROP TABLE IF EXISTS `KaleoTaskAssignmentInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTaskAssignmentInstance` ( `kaleoTaskAssignmentInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskId` bigint(20) DEFAULT NULL, `kaleoTaskName` varchar(200) DEFAULT NULL, `assigneeClassName` varchar(200) DEFAULT NULL, `assigneeClassPK` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime DEFAULT NULL, PRIMARY KEY (`kaleoTaskAssignmentInstanceId`), KEY `IX_945F4EB7` (`assigneeClassName`), KEY `IX_3BD436FD` (`assigneeClassName`,`assigneeClassPK`), KEY `IX_6E3CDA1B` (`companyId`), KEY `IX_38A47B17` (`groupId`,`assigneeClassPK`), KEY `IX_C851011` (`kaleoDefinitionId`), KEY `IX_67A9EE93` (`kaleoInstanceId`), KEY `IX_D4C2235B` (`kaleoTaskInstanceTokenId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTaskAssignmentInstance` -- LOCK TABLES `KaleoTaskAssignmentInstance` WRITE; /*!40000 ALTER TABLE `KaleoTaskAssignmentInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTaskAssignmentInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTaskInstanceToken` -- DROP TABLE IF EXISTS `KaleoTaskInstanceToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTaskInstanceToken` ( `kaleoTaskInstanceTokenId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskId` bigint(20) DEFAULT NULL, `kaleoTaskName` varchar(200) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `completionUserId` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime DEFAULT NULL, `dueDate` datetime DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoTaskInstanceTokenId`), KEY `IX_A3271995` (`className`,`classPK`), KEY `IX_997FE723` (`companyId`), KEY `IX_608E9519` (`kaleoDefinitionId`), KEY `IX_2CE1159B` (`kaleoInstanceId`), KEY `IX_B857A115` (`kaleoInstanceId`,`kaleoTaskId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTaskInstanceToken` -- LOCK TABLES `KaleoTaskInstanceToken` WRITE; /*!40000 ALTER TABLE `KaleoTaskInstanceToken` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTaskInstanceToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTimer` -- DROP TABLE IF EXISTS `KaleoTimer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTimer` ( `kaleoTimerId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `blocking` tinyint(4) DEFAULT NULL, `description` longtext, `duration` double DEFAULT NULL, `scale` varchar(75) DEFAULT NULL, `recurrenceDuration` double DEFAULT NULL, `recurrenceScale` varchar(75) DEFAULT NULL, PRIMARY KEY (`kaleoTimerId`), KEY `IX_4DE6A889` (`kaleoClassName`,`kaleoClassPK`), KEY `IX_1A479F32` (`kaleoClassName`,`kaleoClassPK`,`blocking`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTimer` -- LOCK TABLES `KaleoTimer` WRITE; /*!40000 ALTER TABLE `KaleoTimer` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTimer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTimerInstanceToken` -- DROP TABLE IF EXISTS `KaleoTimerInstanceToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTimerInstanceToken` ( `kaleoTimerInstanceTokenId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTimerId` bigint(20) DEFAULT NULL, `kaleoTimerName` varchar(200) DEFAULT NULL, `blocking` tinyint(4) DEFAULT NULL, `completionUserId` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoTimerInstanceTokenId`), KEY `IX_DB96C55B` (`kaleoInstanceId`), KEY `IX_DB279423` (`kaleoInstanceTokenId`,`completed`), KEY `IX_9932524C` (`kaleoInstanceTokenId`,`completed`,`blocking`), KEY `IX_13A5BA2C` (`kaleoInstanceTokenId`,`kaleoTimerId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTimerInstanceToken` -- LOCK TABLES `KaleoTimerInstanceToken` WRITE; /*!40000 ALTER TABLE `KaleoTimerInstanceToken` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTimerInstanceToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTransition` -- DROP TABLE IF EXISTS `KaleoTransition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTransition` ( `kaleoTransitionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `sourceKaleoNodeId` bigint(20) DEFAULT NULL, `sourceKaleoNodeName` varchar(200) DEFAULT NULL, `targetKaleoNodeId` bigint(20) DEFAULT NULL, `targetKaleoNodeName` varchar(200) DEFAULT NULL, `defaultTransition` tinyint(4) DEFAULT NULL, PRIMARY KEY (`kaleoTransitionId`), KEY `IX_41D6C6D` (`companyId`), KEY `IX_479F3063` (`kaleoDefinitionId`), KEY `IX_A392DFD2` (`kaleoNodeId`), KEY `IX_A38E2194` (`kaleoNodeId`,`defaultTransition`), KEY `IX_85268A11` (`kaleoNodeId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTransition` -- LOCK TABLES `KaleoTransition` WRITE; /*!40000 ALTER TABLE `KaleoTransition` DISABLE KEYS */; INSERT INTO `KaleoTransition` VALUES (10457,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,10436,'resubmit','',10436,'update',10443,'review',1),(10458,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,10442,'review','',10442,'created',10443,'review',1),(10459,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,10443,'approve','',10443,'review',10440,'approved',1),(10460,0,10202,10205,'','2016-11-22 17:54:08','2016-11-22 17:54:08',10435,10443,'reject','',10443,'review',10436,'update',0); /*!40000 ALTER TABLE `KaleoTransition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Layout` -- DROP TABLE IF EXISTS `Layout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Layout` ( `uuid_` varchar(75) DEFAULT NULL, `plid` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `layoutId` bigint(20) DEFAULT NULL, `parentLayoutId` bigint(20) DEFAULT NULL, `name` longtext, `title` longtext, `description` longtext, `type_` varchar(75) DEFAULT NULL, `typeSettings` longtext, `hidden_` tinyint(4) DEFAULT NULL, `friendlyURL` varchar(255) DEFAULT NULL, `iconImage` tinyint(4) DEFAULT NULL, `iconImageId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `wapThemeId` varchar(75) DEFAULT NULL, `wapColorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `priority` int(11) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `keywords` longtext, `robots` longtext, `layoutPrototypeUuid` varchar(75) DEFAULT NULL, `layoutPrototypeLinkEnabled` tinyint(4) DEFAULT NULL, `sourcePrototypeLayoutUuid` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, PRIMARY KEY (`plid`), UNIQUE KEY `IX_BC2C4231` (`groupId`,`privateLayout`,`friendlyURL`), UNIQUE KEY `IX_7162C27C` (`groupId`,`privateLayout`,`layoutId`), UNIQUE KEY `IX_E118C537` (`uuid_`,`groupId`,`privateLayout`), KEY `IX_C7FBC998` (`companyId`), KEY `IX_C099D61A` (`groupId`), KEY `IX_705F5AA3` (`groupId`,`privateLayout`), KEY `IX_6DE88B06` (`groupId`,`privateLayout`,`parentLayoutId`), KEY `IX_1A1B61D2` (`groupId`,`privateLayout`,`type_`), KEY `IX_23922F7D` (`iconImageId`), KEY `IX_D0822724` (`uuid_`), KEY `IX_8CE8C0D9` (`groupId`,`privateLayout`,`sourcePrototypeLayoutUuid`), KEY `IX_B529BFD3` (`layoutPrototypeUuid`), KEY `IX_39A18ECC` (`sourcePrototypeLayoutUuid`), KEY `IX_2CE4BE84` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Layout` -- LOCK TABLES `Layout` WRITE; /*!40000 ALTER TABLE `Layout` DISABLE KEYS */; INSERT INTO `Layout` VALUES ('a1b9197d-b9ed-4032-a82d-27760667ae0f',10222,10219,10202,1,1,0,'Control Panel','','','control_panel','',0,'/manage',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('bd3deef3-c9c9-440f-827c-06302ed5a93e',10338,10335,10202,1,1,0,'10334','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=148_INSTANCE_2Rgs,114,\ncolumn-1=33,\n',0,'/layout',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('92e07cde-dbdd-46d3-90ba-54f2a08b281e',10347,10344,10202,1,1,0,'10343','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=3,101_INSTANCE_Sf2S,\ncolumn-1=141_INSTANCE_7oP1,122_INSTANCE_cBw5,\n',0,'/layout',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('b31353dc-cc9e-4f01-b1da-9e7a9edf2572',10356,10353,10202,1,1,0,'10352','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=122_INSTANCE_Q8rK,141_INSTANCE_9HAl,\ncolumn-1=36,\n',0,'/layout',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('e41385bf-9000-4816-9fdf-f3bc7f4f81a3',10370,10362,10202,1,1,0,'Home','','','portlet','layout-template-id=1_2_columns_ii\ncolumn-3=59_INSTANCE_BP2z,\ncolumn-2=101_INSTANCE_Zv59,\ncolumn-1=77,56_INSTANCE_qk9B,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('944a6f32-86b7-439d-8ea4-36098f97e361',10375,10362,10202,1,2,0,'Blog','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=148_INSTANCE_X2fj,114,\ncolumn-1=33,\n',0,'/blog',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('2b083c70-801e-4025-9e1b-42f48f9c7987',10380,10362,10202,1,3,0,'Wiki','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=122_INSTANCE_7cWQ,141_INSTANCE_Pwj1,\ncolumn-1=36,\n',0,'/wiki',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('9b9feecc-722a-4a25-ac19-16c104a07a29',10385,10362,10202,1,4,0,'Forum','','','portlet','layout-template-id=1_column\ncolumn-1=19,\n',0,'/forum',0,0,'','','','','',3,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('e30e0784-06b3-49be-aa88-efedbabc2e2a',10399,10391,10202,1,1,0,'Home','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=100,11,\ncolumn-1=84,116,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('76bafdd8-8da6-49e9-952a-f03e0304f4e8',10404,10391,10202,1,2,0,'Calendar','','','portlet','column-1=1_WAR_calendarportlet,\ncolumn-2=101_INSTANCE_n3iP,\nlayout-template-id=2_columns_iii\n',0,'/calendar',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('2d62a4d0-f983-4972-987e-24d9882c5f2c',10410,10391,10202,1,3,0,'Documents','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=64,\ncolumn-1=110_INSTANCE_mT8O,\n',0,'/documents',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('45d0b847-3a6d-41f6-bdc1-4f6d369d0ddb',10415,10391,10202,1,4,0,'Images','','','portlet','column-1=31_INSTANCE_ibwn8rBwfVE1,\nlayout-template-id=1_column\n',0,'/images',0,0,'','','','','',3,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('ba1db2a7-79f4-46b9-8987-21f11f9c393f',10520,10227,10202,0,1,0,'Welcome','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=56_INSTANCE_0BsX,56_INSTANCE_y2Bw,56_INSTANCE_Ea40,56_INSTANCE_5Czb,58,\ncolumn-1=19,33,56_INSTANCE_zJ2y\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:16','','','',0,'',10205,''),('f12109b9-30f3-4a7d-80c9-274c7f7fee90',10657,10587,10202,0,1,0,'Home','','','portlet','layout-template-id=home\ncolumn-8=56_INSTANCE_v2EB,\ncolumn-5=56_INSTANCE_P7wi,\ncolumn-4=56_INSTANCE_dZ7S,\ncolumn-3=56_INSTANCE_y2Dg,\ncolumn-2=56_INSTANCE_nJq4,\ncolumn-1=56_INSTANCE_Pa2s,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('39255f3c-f225-49cb-8b16-6b6e306488f4',10730,10587,10202,0,2,0,'Products','','','portlet','layout-template-id=1_2_columns_ii\ncolumn-3=56_INSTANCE_i8wB,\ncolumn-2=56_INSTANCE_pZg0,56_INSTANCE_MZ7u,\ncolumn-1=56_INSTANCE_7Fob,\n',0,'/products',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('d72f5c2d-d2fb-4121-85af-39acbef38489',10778,10587,10202,0,3,0,'Blogs','','','portlet','layout-template-id=1_2_columns_i\ncolumn-3=115,\ncolumn-2=114,\ncolumn-1=56_INSTANCE_6tPK,\n',0,'/blogs',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('02894722-9a0c-46b5-962d-4d181b991e39',10794,10587,10202,0,4,0,'Wiki','','','portlet','layout-template-id=1_column\ncolumn-1=56_INSTANCE_G9dU,36,\n',0,'/wiki',0,0,'','','','','',3,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('61a72e61-72f5-4adf-a32c-a6753a2425fd',10831,10587,10202,0,5,0,'Forums','','','portlet','layout-template-id=1_column\ncolumn-1=56_INSTANCE_Zsq5,19,\n',0,'/forums',0,0,'','','','','',4,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('2065557b-af71-4889-b141-455a05bfce45',10848,10587,10202,0,6,0,'About Us','','','portlet','layout-template-id=1_2_columns_ii\ncolumn-3=1_WAR_webformportlet_INSTANCE_3znU,\ncolumn-2=56_INSTANCE_wy0V,1_WAR_googlemapsportlet_INSTANCE_YrY9,\ncolumn-1=56_INSTANCE_GC9w,\n',0,'/about_us',0,0,'','','','','',5,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('0a9c6356-ec05-4d65-bcf0-a44142ee1266',10874,10587,10202,1,1,0,'Home','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=116,\ncolumn-1=56_INSTANCE_Y5Sr,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('d906bd04-aba6-413c-b6f3-6d98df2182a5',10892,10587,10202,1,2,0,'Documents','','','portlet','column-1=20,31_INSTANCE_ibwn8rBwfVE1,\ncolumn-2=56_INSTANCE_0uJ9,\nlayout-template-id=2_columns_iii\n',0,'/documents',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('c4d4ce58-937d-48ce-84c7-816303d56558',10930,10912,10202,0,1,0,'Home','','','portlet','layout-template-id=1_column\ncolumn-1=56_INSTANCE_7Fgi,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('5e79eeec-d8fd-4dff-935c-88112413b7c6',10946,10912,10202,0,2,0,'Products','','','portlet','layout-template-id=1_column\ncolumn-1=56_INSTANCE_Wb4N,\n',0,'/products',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('2c42df69-8640-4147-adfd-be2f019bfca7',10970,10965,10202,0,1,0,'Profile','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_42wQ,116,3_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,2_WAR_socialnetworkingportlet,\n',0,'/profile',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('8a8643f7-d04f-4703-8435-a3a2b30dc22d',10990,10965,10202,0,2,0,'Blog','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=33,\ncolumn-1=114,\n',0,'/blog',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:16','','','',0,'',10205,''),('226a7e28-a8ba-4340-963f-50f9d27251f8',10995,10965,10202,1,1,0,'Social','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_8f1N,4_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,48_INSTANCE_IX5t,\n',0,'/social',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('7806c7c0-d0e8-4b0c-8091-7eea77a58356',11013,10965,10202,1,2,0,'Workspace','','','portlet','column-1=64,20,31_INSTANCE_ibwn8rBwfVE1,\ncolumn-2=56_INSTANCE_kBu5,1_WAR_calendarportlet,\nlayout-template-id=2_columns_i\n',0,'/workspace',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('e194415c-1976-4d1b-9f89-daa26f944d76',11030,10965,10202,1,3,0,'Email','','','portlet','layout-template-id=1_column\ncolumn-1=1_WAR_mailportlet,\n',0,'/email',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('f5925a99-908c-47bd-b251-1e4efa85e737',11042,11037,10202,0,1,0,'Profile','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_g5Gu,116,3_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,2_WAR_socialnetworkingportlet,\n',0,'/profile',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('bd3ceda8-25d1-4aed-9c47-9fbe25a8af72',11062,11037,10202,0,2,0,'Blog','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=33,\ncolumn-1=114,\n',0,'/blog',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:16','','','',0,'',10205,''),('00a5b36c-ec58-4f87-ab8f-eaf881576a83',11067,11037,10202,1,1,0,'Social','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_gbD0,4_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,48_INSTANCE_r7mR,\n',0,'/social',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('08af6613-3e9a-429d-8c5e-5f5ffcdeaa29',11085,11037,10202,1,2,0,'Workspace','','','portlet','column-1=64,20,31_INSTANCE_ibwn8rBwfVE1,\ncolumn-2=56_INSTANCE_H6m6,1_WAR_calendarportlet,\nlayout-template-id=2_columns_i\n',0,'/workspace',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('8dc1361e-a43e-4798-9285-4c31668aa495',11102,11037,10202,1,3,0,'Email','','','portlet','layout-template-id=1_column\ncolumn-1=1_WAR_mailportlet,\n',0,'/email',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('4d760486-8d0b-4c03-8499-f229bfc73e90',11114,11109,10202,0,1,0,'Profile','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_Kqb9,116,3_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,2_WAR_socialnetworkingportlet,\n',0,'/profile',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('62f7bd51-f86a-4c10-8699-e0380e2d1d5a',11134,11109,10202,0,2,0,'Blog','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=33,\ncolumn-1=114,\n',0,'/blog',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:16','','','',0,'',10205,''),('892b9586-52f2-460c-9d5f-526fcd56fa74',11139,11109,10202,1,1,0,'Social','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_O5ju,4_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,48_INSTANCE_l1rO,\n',0,'/social',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('308bfa9f-8594-4e11-b029-1dbf9123a0a3',11157,11109,10202,1,2,0,'Workspace','','','portlet','column-1=64,20,31_INSTANCE_ibwn8rBwfVE1,\ncolumn-2=56_INSTANCE_Dm72,1_WAR_calendarportlet,\nlayout-template-id=2_columns_i\n',0,'/workspace',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('180f6f6b-a35e-4f25-bf13-618c36b936d4',11174,11109,10202,1,3,0,'Email','','','portlet','layout-template-id=1_column\ncolumn-1=1_WAR_mailportlet,\n',0,'/email',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('5b931ce0-666d-43e5-b54b-7e729cc0feae',11186,11181,10202,0,1,0,'Profile','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_kJ3K,116,3_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,2_WAR_socialnetworkingportlet,\n',0,'/profile',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:15','','','',0,'',10205,''),('2cc95c44-d27b-4d6f-9115-5ce62006a988',11206,11181,10202,0,2,0,'Blog','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=33,\ncolumn-1=114,\n',0,'/blog',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('05d134f2-35ae-4384-b903-dbcec65599f4',11211,11181,10202,1,1,0,'Social','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=56_INSTANCE_64Rn,4_WAR_socialnetworkingportlet,\ncolumn-1=1_WAR_socialnetworkingportlet,121,48_INSTANCE_zCQ2,\n',0,'/social',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 18:05:16','','','',0,'',10205,''),('48587d49-1702-4acd-abcd-3cda9846fabb',11229,11181,10202,1,2,0,'Workspace','','','portlet','column-1=64,20,31_INSTANCE_ibwn8rBwfVE1,\ncolumn-2=56_INSTANCE_8vmR,1_WAR_calendarportlet,\nlayout-template-id=2_columns_i\n',0,'/workspace',0,0,'','','','','',1,'2016-11-22 19:01:32','2016-11-22 18:05:16','','','',0,'',10205,''),('40f39674-1964-4f30-8eb1-71db2ea4f26f',11246,11181,10202,1,3,0,'Email','','','portlet','layout-template-id=1_column\ncolumn-1=1_WAR_mailportlet,\n',0,'/email',0,0,'','','','','',2,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('a7250132-1851-456b-8a26-f81becda7ba5',11395,10241,10202,1,1,0,'Welcome','','','portlet','column-1=82,23,11,\ncolumn-2=29,1_WAR_calendarportlet,\nlayout-template-id=2_columns_ii\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('22cc7898-3bc7-41ca-beb5-5e7979a68414',11400,10241,10202,0,1,0,'Welcome','','','portlet','layout-template-id=2_columns_ii\ncolumn-2=33,\ncolumn-1=82,3,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 19:01:32','2016-11-22 19:01:32',NULL,NULL,NULL,NULL,NULL,10205,''),('e5661391-aa44-4c0b-8eea-5aea8826d2e3',11631,11628,10202,1,1,0,'Content Display Page','','','portlet','default-asset-publisher-portlet-id=101_INSTANCE_3Zl8ACDNnNJr\nlayout-template-id=2_columns_ii\ncolumn-2=3,101_INSTANCE_3Zl8ACDNnNJr,\ncolumn-1=141_INSTANCE_9V1b2AOtSFo3,122_INSTANCE_1wEJqBCi7OBi,\n',0,'/layout',0,0,'','','','','',0,'2016-11-22 18:01:50','2016-11-22 18:01:51','','','',0,'',10205,''),('b917a21f-1f56-431d-9040-1581a4bd00a0',11645,11637,10202,1,1,0,'Home','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=3,59_INSTANCE_7OCiBH2wvCQT,180,\ncolumn-1=19,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 18:01:51','2016-11-22 18:05:16','','','',0,'',10205,''),('ae04a969-97b7-4881-87ed-d7aae478106b',11651,11637,10202,1,2,0,'Calendar','','','portlet','column-1=1_WAR_calendarportlet,\ncolumn-2=101_INSTANCE_ksMY8OBKuRAh,\nlayout-template-id=2_columns_iii\n',0,'/calendar',0,0,'','','','','',1,'2016-11-22 18:01:51','2016-11-22 18:05:16','','','',0,'',10205,''),('89d56c7c-7f84-41ac-801a-f22f03b9bfe9',11657,11637,10202,1,3,0,'Wiki','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=122_INSTANCE_tz4dFN8q9YtX,148_INSTANCE_EZJrT7YnvyPd,\ncolumn-1=36,\n',0,'/wiki',0,0,'','','','','',2,'2016-11-22 18:01:51','2016-11-22 18:01:51','','','',0,'',10205,''),('93d5e305-62cd-4b34-a78e-5dcf7db14764',11671,11663,10202,1,1,0,'Home','','','portlet','layout-template-id=2_columns_i\ncolumn-2=3,82,101_INSTANCE_TeKytA9G4V5o,\ncolumn-1=116,\n',0,'/home',0,0,'','','','','',0,'2016-11-22 18:01:51','2016-11-22 18:05:16','','','',0,'',10205,''),('5196872f-418f-40aa-acae-7951dc8f2d8d',11679,11663,10202,1,2,0,'Documents and Media','','','portlet','layout-template-id=1_column\ncolumn-1=20,\n',0,'/documents',0,0,'','','','','',1,'2016-11-22 18:01:51','2016-11-22 18:05:16','','','',0,'',10205,''),('a0c209c5-b249-4094-ba16-e23d2ee0c775',11685,11663,10202,1,3,0,'Calendar','','','portlet','column-1=1_WAR_calendarportlet,\ncolumn-2=101_INSTANCE_evqfsFp1wjx6,\nlayout-template-id=2_columns_iii\n',0,'/calendar',0,0,'','','','','',2,'2016-11-22 18:01:52','2016-11-22 18:05:16','','','',0,'',10205,''),('2000dba4-ad9a-4439-bedc-b9b16be7e1f7',11691,11663,10202,1,4,0,'News','','','portlet','layout-template-id=2_columns_iii\ncolumn-2=39_INSTANCE_0eHduU29wFyy,\ncolumn-1=39_INSTANCE_TwLfv3JnMae9,\n',0,'/news',0,0,'','','','','',3,'2016-11-22 18:01:52','2016-11-22 18:05:16','','','',0,'',10205,''),('f4634d22-c1ba-4e7d-a8e6-e25abce4252f',11921,11910,10202,1,1,0,'Home','','','portlet','column-1=19,\ncolumn-2=3,59_INSTANCE_znxjm56RXW2G,180,101_INSTANCE_MldHrawWABdj,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/home',0,0,'','','','','',0,'2016-11-22 18:05:21','2016-11-22 18:05:21','','','',0,'',10205,''),('768fd0b8-6ac9-4aec-8f73-bbba10f85023',11929,11910,10202,1,2,0,'Wiki','','','portlet','column-1=36,\ncolumn-2=122_INSTANCE_9D0eoOqDyWcb,148_INSTANCE_01lVtF7nnzcy,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/wiki',0,0,'','','','','',1,'2016-11-22 18:05:21','2016-11-22 18:05:21','','','',0,'',10205,''),('0794d849-e08c-4e89-b98b-f766ef978180',11947,11936,10202,1,1,0,'Home','','','portlet','column-1=116,\ncolumn-2=3,82,101_INSTANCE_fDNTh6IUZRTs,\nlayout-template-id=2_columns_i\nprivateLayout=true\n',0,'/home',0,0,'','','','','',0,'2016-11-22 18:05:21','2016-11-22 18:05:22','','','',0,'',10205,''),('19226ecc-7e99-4522-bba3-dbb6c356d6f9',11956,11936,10202,1,2,0,'Documents and Media','','','portlet','column-1=20,\ncolumn-2=101_INSTANCE_KIcYTPYU5NR0,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/documents',0,0,'','','','','',1,'2016-11-22 18:05:22','2016-11-22 18:05:22','','','',0,'',10205,''),('a4eac661-9508-4d9f-a23b-25e06f422195',11964,11936,10202,1,3,0,'News','','','portlet','column-1=39_INSTANCE_QnKfKFBPLW6C,\ncolumn-2=39_INSTANCE_zjfCC2EpNoGg,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/news',0,0,'','','','','',2,'2016-11-22 18:05:22','2016-11-22 18:05:22','','','',0,'',10205,''),('46937934-6983-4318-9035-e76caf3657f8',12150,12137,10202,1,1,0,'Inici主页HomeEtusivuAccueilAccueilStartseiteביתNyitólapホームInícioInicio','','','portlet','column-1=1_WAR_soannouncementsportlet,1_WAR_soportlet,\ncolumn-2=1_WAR_wysiwygportlet_INSTANCE_abcd,28,39_INSTANCE_abcd,64,1_WAR_eventsdisplayportlet,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/home',0,0,'','','','','',0,'2016-11-22 18:05:56','2016-11-22 18:05:56','','','',0,'',10205,''),('a0054551-8efc-4c89-a3b4-ef36ee2e8770',12160,12137,10202,1,2,0,'Calendari日历CalendarKalenteriCalendrierKalenderלוח שנהNaptárカレンダーCalendárioCalendario','','','portlet','column-1=1_WAR_calendarportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/calendar',0,0,'','','','','',1,'2016-11-22 18:05:56','2016-11-22 18:05:56','','','',0,'',10205,''),('b7f2549b-90eb-4a4b-92e6-2051c4cdf659',12167,12137,10202,1,3,0,'文档DocumentsAsiakirjatMes DocumentsMes DocumentsDokumenteמסמכיםDokumentumokドキュメントDocumentosDocumentos','','','portlet','column-1=20,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/documents',0,0,'','','','','',2,'2016-11-22 18:05:56','2016-11-22 18:05:57','','','',0,'',10205,''),('ce50ea4e-c595-42f3-b7a1-eec3ad75a5ee',12175,12137,10202,1,4,0,'Fòrums论坛ForumsFoorumitForumForumForenפורומיםFórumokフォーラムFórunsForos','','','portlet','column-1=73_INSTANCE_TCf1osWaeew1,19,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/forums',0,0,'','','','','',3,'2016-11-22 18:05:57','2016-11-22 18:05:57','','','',0,'',10205,''),('2cc469f9-62bb-457a-b358-bdc3759f502e',12185,12137,10202,1,5,0,'Blocs博客BlogsBlogitBloguesBloguesבלוגיםBlogokブログ','','','portlet','column-1=33,\ncolumn-2=115,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/blogs',0,0,'','','','','',4,'2016-11-22 18:05:57','2016-11-22 18:05:57','','','',0,'',10205,''),('9e91b508-448f-4536-a0f7-dd21fca48519',12194,12137,10202,1,6,0,'WikiWikitWiki (Panneau de Contrôle)ויקיפדיהWikikウィキ','','','portlet','column-1=36,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/wiki',0,0,'','','','','',5,'2016-11-22 18:05:57','2016-11-22 18:05:57','','','',0,'',10205,''),('aa9e41ab-e377-428e-8062-2b42452e4d2b',12202,12137,10202,1,7,0,'Membres成员MembersJäsenetMembresMembresMitgliederחברי מועדוןTagokメンバ数MembrosMiembros','','','portlet','column-1=2_WAR_soportlet,4_WAR_contactsportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/members',0,0,'','','','','',6,'2016-11-22 18:05:57','2016-11-22 18:05:57','','','',0,'',10205,''),('6904f3f1-95ba-464c-a9f7-582c2084be71',12224,12211,10202,1,1,0,'Tauler de controlDashboardKoontinäyttöTableau de bordTableau de bordלוח המחווניםMűszerfalダッシュボードPainelEscritorio','','','portlet','column-1=2_WAR_microblogsportlet,1_WAR_soannouncementsportlet,1_WAR_soportlet,\ncolumn-2=2_WAR_tasksportlet,1_WAR_eventsdisplayportlet,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/so/dashboard',0,0,'','','','','',0,'2016-11-22 18:05:57','2016-11-22 18:05:58','','','',0,'',10205,''),('65c387a6-2c21-4fde-95c5-dcf30b1fd45c',12233,12211,10202,1,2,0,'Centre d\'atenció multicanal通讯录Contacts CenterYhteystietokeskusCentre de ContactsCentre de ContactsKontaktverwaltungמרכז אנשי קשרKapcsolat központコンタクトセンターCentral de contatosCentro de contactos','','','portlet','column-1=1_WAR_contactsportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/contacts-center',0,0,'','','','','',1,'2016-11-22 18:05:58','2016-11-22 18:05:58','','','',0,'',10205,''),('eb1d8eba-1cf4-4365-a084-7d7c6da4475f',12240,12211,10202,1,3,0,'Microblocs微博MicroblogsMikroblogitÁllapot frissítésekマイクロブログ','','','portlet','column-1=1_WAR_microblogsportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/microblogs',0,0,'','','','','',2,'2016-11-22 18:05:58','2016-11-22 18:05:58','','','',0,'',10205,''),('a9be89f5-62fc-4357-813d-1720499673d4',12247,12211,10202,1,4,0,'Missatges消息MessagesViestitForumNachrichtenהודעותÜzenetekメッセージMensagensMensajes','','','portlet','column-1=1_WAR_privatemessagingportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/messages',0,0,'','','','','',3,'2016-11-22 18:05:58','2016-11-22 18:05:58','','','',0,'',10205,''),('ae0282a2-19ae-4a5c-b42b-d7d5fdb1f696',12254,12211,10202,1,5,0,'Els meus documents我的文档My DocumentsMinun asiakirjatMes DocumentsMes DocumentsMeine Dokumenteהמסמכים שליDokumentumaimマイドキュメントMeus documentosMis documentos','','','portlet','column-1=20,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/my-documents',0,0,'','','','','',4,'2016-11-22 18:05:58','2016-11-22 18:05:58','','','',0,'',10205,''),('57ed1dbf-4550-4f67-b008-bdfd7957c06c',12261,12211,10202,1,6,0,'Tasques任务TasksTehtävätTâchesTâchesAufgabenמטלותFeladatokタスクTarefasTareas','','','portlet','column-1=1_WAR_tasksportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/tasks',0,0,'','','','','',5,'2016-11-22 18:05:58','2016-11-22 18:05:58','','','',0,'',10205,''),('f863159b-0d54-4f84-a307-69a98502161a',12282,12269,10202,1,1,0,'Perfil概况ProfileProfiiliProfilProfilProfilפרופילProfilプロフィール編集PerfilPerfil','','','portlet','column-1=2_WAR_contactsportlet_INSTANCE_abcd,\ncolumn-2=2_WAR_microblogsportlet,2_WAR_contactsportlet_INSTANCE_efgh,1_WAR_soportlet,\ncolumn-3=2_WAR_contactsportlet_INSTANCE_ijkl,\nlayout-template-id=1_2_columns_ii\nprivateLayout=true\n',0,'/so/profile',0,0,'','','','','',0,'2016-11-22 18:05:58','2016-11-22 18:05:59','','','',0,'',10205,''),('4adda21b-2643-4ba9-aeda-7b9aa076ca1a',12292,12269,10202,1,2,0,'Contactes联系人ContactsYhteystiedotContientContientKontakteאנשי קשרKapcsolatok接触ContatosContactos','','','portlet','column-1=2_WAR_contactsportlet_INSTANCE_abcd,1_WAR_contactsportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/contacts',0,0,'','','','','',1,'2016-11-22 18:05:59','2016-11-22 18:05:59','','','',0,'',10205,''),('0ec233c9-a91e-4395-b9bf-1df9f1a83004',12300,12269,10202,1,3,0,'Microblocs微博MicroblogsMikroblogitÁllapot frissítésekマイクロブログ','','','portlet','column-1=2_WAR_contactsportlet_INSTANCE_abcd,1_WAR_microblogsportlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/so/microblogs',0,0,'','','','','',2,'2016-11-22 18:05:59','2016-11-22 18:05:59','','','',0,'',10205,''); /*!40000 ALTER TABLE `Layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutBranch` -- DROP TABLE IF EXISTS `LayoutBranch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutBranch` ( `LayoutBranchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `master` tinyint(4) DEFAULT NULL, PRIMARY KEY (`LayoutBranchId`), UNIQUE KEY `IX_FD57097D` (`layoutSetBranchId`,`plid`,`name`), KEY `IX_6C226433` (`layoutSetBranchId`), KEY `IX_2C42603E` (`layoutSetBranchId`,`plid`), KEY `IX_A705FF94` (`layoutSetBranchId`,`plid`,`master`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutBranch` -- LOCK TABLES `LayoutBranch` WRITE; /*!40000 ALTER TABLE `LayoutBranch` DISABLE KEYS */; /*!40000 ALTER TABLE `LayoutBranch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutFriendlyURL` -- DROP TABLE IF EXISTS `LayoutFriendlyURL`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutFriendlyURL` ( `uuid_` varchar(75) DEFAULT NULL, `layoutFriendlyURLId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `friendlyURL` varchar(255) DEFAULT NULL, `languageId` varchar(75) DEFAULT NULL, PRIMARY KEY (`layoutFriendlyURLId`), UNIQUE KEY `IX_A6FC2B28` (`groupId`,`privateLayout`,`friendlyURL`,`languageId`), UNIQUE KEY `IX_C5762E72` (`plid`,`languageId`), UNIQUE KEY `IX_326525D6` (`uuid_`,`groupId`), KEY `IX_EAB317C8` (`companyId`), KEY `IX_742EF04A` (`groupId`), KEY `IX_CA713461` (`groupId`,`privateLayout`,`friendlyURL`), KEY `IX_83AE56AB` (`plid`), KEY `IX_59051329` (`plid`,`friendlyURL`), KEY `IX_9F80D54` (`uuid_`), KEY `IX_F4321A54` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutFriendlyURL` -- LOCK TABLES `LayoutFriendlyURL` WRITE; /*!40000 ALTER TABLE `LayoutFriendlyURL` DISABLE KEYS */; INSERT INTO `LayoutFriendlyURL` VALUES ('8fdf7cf9-1c11-4df1-ae9d-28417a96fc45',11806,10219,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10222,1,'/manage','en_US'),('10f3a34d-9a7f-4f1d-a65a-d6dd8f451fd6',11807,10335,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10338,1,'/layout','en_US'),('8f284b98-4644-478d-9350-9403aebbf1a4',11808,10344,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10347,1,'/layout','en_US'),('c91ffd9e-7098-4a2e-bac5-af3982f01888',11809,10353,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10356,1,'/layout','en_US'),('c96263b4-d9a2-47f7-b35d-859dfd8acf69',11810,10362,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10370,1,'/home','en_US'),('2434619d-f3ab-4e3c-af08-1c26bb6dcbb8',11811,10362,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10375,1,'/blog','en_US'),('f774268f-8165-4854-85a2-27627370adc1',11812,10362,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10380,1,'/wiki','en_US'),('f1fa84d9-b262-48d2-80c7-443667d4d3de',11813,10362,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10385,1,'/forum','en_US'),('acfdb731-b8a6-44ed-a69f-edcf4a6d79f6',11814,10391,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10399,1,'/home','en_US'),('e15e4370-4e17-4058-9c89-6f031778cdb4',11815,10391,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10404,1,'/calendar','en_US'),('e07b258b-9264-45b8-8da9-09824e58d102',11816,10391,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10410,1,'/documents','en_US'),('40058bc0-7f9b-4040-b3e2-58d3f649b276',11817,10391,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10415,1,'/images','en_US'),('5f265dc8-a186-4c61-9af4-25dae28a81a7',11818,10227,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10520,0,'/home','en_US'),('6fbfbf69-1610-4d12-ab83-03d3555ccd1e',11819,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10657,0,'/home','en_US'),('3af59824-57d4-456d-a349-98ba5a297ce2',11820,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10730,0,'/products','en_US'),('82ba72ef-4dd1-4d03-82ff-f82f1a7d01f1',11821,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10778,0,'/blogs','en_US'),('8025dd2c-541e-4ea0-aabe-b4916fb2b8bb',11822,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10794,0,'/wiki','en_US'),('66c6ad0c-a864-4184-b549-1ae8ee0ef0e8',11823,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10831,0,'/forums','en_US'),('28baff0c-06d0-4c30-baff-67c355517432',11824,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10848,0,'/about_us','en_US'),('d89dad7d-e6ef-4382-94be-905b00223935',11825,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10874,1,'/home','en_US'),('429f7ca3-ad30-4b12-b8b1-d80dfd4b9edd',11826,10587,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10892,1,'/documents','en_US'),('843448e0-de1f-4a6c-b8ae-40757efea385',11827,10912,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10930,0,'/home','en_US'),('25b938ce-26e6-464b-bf99-f0608ff9244a',11828,10912,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10946,0,'/products','en_US'),('28723244-2498-46ad-95b0-6c47014737ce',11829,10965,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10970,0,'/profile','en_US'),('4a81b0a1-2fd2-4d32-afee-e92dcb32c8e8',11830,10965,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10990,0,'/blog','en_US'),('d9138fbc-5b7e-43e2-b590-67a5fd33d5f2',11831,10965,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',10995,1,'/social','en_US'),('9a6abadd-bcf2-40e0-b889-5e8482205ee1',11832,10965,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11013,1,'/workspace','en_US'),('6f76225f-c5b9-4e24-a881-9b7297d68498',11833,10965,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11030,1,'/email','en_US'),('071ecd03-451e-4660-aa93-58291d3e7c56',11834,11037,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11042,0,'/profile','en_US'),('e74b7535-d0f5-475b-8722-b6c4eaa6f4f1',11835,11037,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11062,0,'/blog','en_US'),('a7f271c3-df48-4603-92d8-d700a33b0771',11836,11037,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11067,1,'/social','en_US'),('f4888302-c1dc-4ebd-b68d-fe4f70437d18',11837,11037,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11085,1,'/workspace','en_US'),('5771d47e-f042-4854-a04a-1023a320369a',11838,11037,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11102,1,'/email','en_US'),('69815efa-8f13-4c63-8289-595d298940a2',11839,11109,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11114,0,'/profile','en_US'),('fe7d77e0-512e-4a6b-bdcd-4bad620b08bf',11840,11109,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11134,0,'/blog','en_US'),('f8aabba4-a290-402e-8826-751ac580fa3d',11841,11109,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11139,1,'/social','en_US'),('7e0a501c-e006-498d-aa10-ea3d285d9a59',11842,11109,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11157,1,'/workspace','en_US'),('b671cc21-5beb-4ee8-aaf7-f484b869d535',11843,11109,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11174,1,'/email','en_US'),('d1215a35-58c4-43b4-8691-73c416340572',11844,11181,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11186,0,'/profile','en_US'),('ef483688-dda7-431f-acbe-e8588eb60347',11845,11181,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11206,0,'/blog','en_US'),('8b62a373-eda3-4b93-a924-7770ffb7a4fe',11846,11181,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11211,1,'/social','en_US'),('ecacdaef-8c83-47e8-8ac9-03cbe967ab28',11847,11181,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11229,1,'/workspace','en_US'),('f78db9c7-4d46-49c7-b0cb-1f17b08bfba4',11848,11181,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11246,1,'/email','en_US'),('9d724775-cc06-4c8a-81e6-65ea447d4046',11849,10241,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11395,1,'/home','en_US'),('f94f6cf1-32b9-4362-a463-0f59806b1a88',11850,10241,10202,0,NULL,'2016-11-22 19:01:32','2016-11-22 19:01:32',11400,0,'/home','en_US'),('44fc4ea9-6856-4d01-95e3-1a1f631ae8c7',11851,11628,10202,0,NULL,'2016-11-22 18:01:50','2016-11-22 18:01:51',11631,1,'/layout','en_US'),('1f48f563-a7e5-4e34-b4dd-67c078258442',11852,11637,10202,0,NULL,'2016-11-22 18:01:51','2016-11-22 18:01:51',11645,1,'/home','en_US'),('2b1a1195-4bfc-46d4-b822-e3d1e6d30ec2',11853,11637,10202,0,NULL,'2016-11-22 18:01:51','2016-11-22 18:01:51',11651,1,'/calendar','en_US'),('e1d6e49c-c27c-41f7-8ea4-9d5f4c9ca043',11854,11637,10202,0,NULL,'2016-11-22 18:01:51','2016-11-22 18:01:51',11657,1,'/wiki','en_US'),('dec0a141-4eba-4d47-b29f-8be1ea0b2233',11855,11663,10202,0,NULL,'2016-11-22 18:01:51','2016-11-22 18:01:51',11671,1,'/home','en_US'),('eafca3e6-ee03-4c8e-94d8-2c0db5ebb785',11856,11663,10202,0,NULL,'2016-11-22 18:01:51','2016-11-22 18:01:52',11679,1,'/documents','en_US'),('35408b1d-609b-498b-b9b1-cd4e18c81fff',11857,11663,10202,0,NULL,'2016-11-22 18:01:52','2016-11-22 18:01:52',11685,1,'/calendar','en_US'),('10185535-27b3-4972-bc53-624caa2e2f73',11858,11663,10202,0,NULL,'2016-11-22 18:01:52','2016-11-22 18:01:52',11691,1,'/news','en_US'),('3fd2911e-3414-401e-bc24-d4348ae10cd1',11922,11910,10202,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21',11921,1,'/home','en_US'),('f0b0c937-d6c3-4eea-be70-5e05d48ba2f0',11930,11910,10202,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21',11929,1,'/wiki','en_US'),('200c2ffd-dcea-45ff-8715-d3859f51b448',11948,11936,10202,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21',11947,1,'/home','en_US'),('0f332428-3b71-4dd7-9f88-e635a2c7c689',11957,11936,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',11956,1,'/documents','en_US'),('d3027379-63a6-4f67-8a15-0132650e2afc',11965,11936,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',11964,1,'/news','en_US'),('8fb14733-ffe0-4294-8522-6bf61cf5ba8f',12151,12137,10202,10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56',12150,1,'/home','en_US'),('bae4d83a-d48c-4ec2-90a0-a4be0106cee4',12161,12137,10202,10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56',12160,1,'/calendar','en_US'),('38367a5e-d331-4a79-9b6c-2c971ec10bf4',12168,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',12167,1,'/documents','en_US'),('0cbae746-457f-445a-9759-6485d8106427',12176,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',12175,1,'/forums','en_US'),('bdc3e869-a3f0-4165-85b9-5b47b48890ae',12186,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',12185,1,'/blogs','en_US'),('3550fefe-5be8-4e6d-a842-c1e9bec30c57',12195,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',12194,1,'/wiki','en_US'),('19a017fd-34a1-481f-951c-0296d5a6b538',12203,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',12202,1,'/members','en_US'),('59b6e98e-95e9-498c-850f-7cd13e3b91fc',12225,12211,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',12224,1,'/so/dashboard','en_US'),('2cefbde3-77f1-4afe-a274-16e9069db3ed',12234,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',12233,1,'/so/contacts-center','en_US'),('6715abdf-6f3a-400c-bed5-3be30cb55d4e',12241,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',12240,1,'/so/microblogs','en_US'),('b91c826b-d308-47c1-bc47-0596ca1ea9d5',12248,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',12247,1,'/so/messages','en_US'),('862a66c6-19d4-4a76-a9cf-b32cddbbc5ca',12255,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',12254,1,'/so/my-documents','en_US'),('25e53ae6-9103-4c1c-99eb-32ddfe28cb1a',12262,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',12261,1,'/so/tasks','en_US'),('7ca7969e-1b68-4b06-b25b-29b9748e89d6',12283,12269,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',12282,1,'/so/profile','en_US'),('3cd1e59c-7411-46c6-8390-e919fc4bb1b6',12293,12269,10202,10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59',12292,1,'/so/contacts','en_US'),('a284338a-125c-4b90-b2a8-cc3cdfc6ee3c',12301,12269,10202,10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59',12300,1,'/so/microblogs','en_US'); /*!40000 ALTER TABLE `LayoutFriendlyURL` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutPrototype` -- DROP TABLE IF EXISTS `LayoutPrototype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutPrototype` ( `layoutPrototypeId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `settings_` longtext, `active_` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`layoutPrototypeId`), KEY `IX_30616AAA` (`companyId`), KEY `IX_557A639F` (`companyId`,`active_`), KEY `IX_CEF72136` (`uuid_`), KEY `IX_63ED2532` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutPrototype` -- LOCK TABLES `LayoutPrototype` WRITE; /*!40000 ALTER TABLE `LayoutPrototype` DISABLE KEYS */; INSERT INTO `LayoutPrototype` VALUES (10334,10202,'Blog','Create, edit, and view blogs from this page. Explore topics using tags, and connect with other members that blog.','',1,'3fccfca4-ba70-477c-84a8-df62e88a3900',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10343,10202,'Content','Create, edit, and explore content with this page. Search available content, explore related content with tags, and browse content categories.','',1,'735e3784-c976-4b75-b04d-66ddcb11ecef',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10352,10202,'Wiki','Collaborate with members through the wiki on this page. Discover related content through tags, and navigate quickly and easily with categories.','',1,'f20be1fe-e7f6-4f0b-b873-c279a3b41733',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(11627,10202,'Content Display Page','Create, edit, and explore web content with this page. Search available content, explore related content with tags, and browse content categories.','',1,'bf8bf524-0416-4e41-9111-29b8b4c173b3',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'); /*!40000 ALTER TABLE `LayoutPrototype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutRevision` -- DROP TABLE IF EXISTS `LayoutRevision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutRevision` ( `layoutRevisionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `layoutBranchId` bigint(20) DEFAULT NULL, `parentLayoutRevisionId` bigint(20) DEFAULT NULL, `head` tinyint(4) DEFAULT NULL, `major` tinyint(4) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `name` longtext, `title` longtext, `description` longtext, `keywords` longtext, `robots` longtext, `typeSettings` longtext, `iconImage` tinyint(4) DEFAULT NULL, `iconImageId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `wapThemeId` varchar(75) DEFAULT NULL, `wapColorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`layoutRevisionId`), KEY `IX_43E8286A` (`head`,`plid`), KEY `IX_314B621A` (`layoutSetBranchId`), KEY `IX_A9AC086E` (`layoutSetBranchId`,`head`), KEY `IX_E10AC39` (`layoutSetBranchId`,`head`,`plid`), KEY `IX_13984800` (`layoutSetBranchId`,`layoutBranchId`,`plid`), KEY `IX_4A84AF43` (`layoutSetBranchId`,`parentLayoutRevisionId`,`plid`), KEY `IX_B7B914E5` (`layoutSetBranchId`,`plid`), KEY `IX_70DA9ECB` (`layoutSetBranchId`,`plid`,`status`), KEY `IX_7FFAE700` (`layoutSetBranchId`,`status`), KEY `IX_9329C9D6` (`plid`), KEY `IX_8EC3D2BC` (`plid`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutRevision` -- LOCK TABLES `LayoutRevision` WRITE; /*!40000 ALTER TABLE `LayoutRevision` DISABLE KEYS */; /*!40000 ALTER TABLE `LayoutRevision` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutSet` -- DROP TABLE IF EXISTS `LayoutSet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutSet` ( `layoutSetId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `logo` tinyint(4) DEFAULT NULL, `logoId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `wapThemeId` varchar(75) DEFAULT NULL, `wapColorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `pageCount` int(11) DEFAULT NULL, `settings_` longtext, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `layoutSetPrototypeUuid` varchar(75) DEFAULT NULL, `layoutSetPrototypeLinkEnabled` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutSetId`), UNIQUE KEY `IX_48550691` (`groupId`,`privateLayout`), KEY `IX_A40B8BEC` (`groupId`), KEY `IX_72BBA8B7` (`layoutSetPrototypeUuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutSet` -- LOCK TABLES `LayoutSet` WRITE; /*!40000 ALTER TABLE `LayoutSet` DISABLE KEYS */; INSERT INTO `LayoutSet` VALUES (10220,10219,10202,1,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10221,10219,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10228,10227,10202,1,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10229,10227,10202,0,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10236,10235,10202,1,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10237,10235,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10242,10241,10202,1,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10243,10241,10202,0,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10336,10335,10202,1,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10337,10335,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10345,10344,10202,1,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10346,10344,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10354,10353,10202,1,0,0,'classic','01','mobile','01','',1,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10355,10353,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10363,10362,10202,1,0,0,'classic','01','mobile','01','',4,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10364,10362,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10392,10391,10202,1,0,0,'classic','01','mobile','01','',4,'','2016-11-22 19:01:33','2016-11-22 18:05:15','',0),(10393,10391,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10588,10587,10202,1,0,0,'classic','01','mobile','01','',2,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10589,10587,10202,0,1,10591,'sevencogs_WAR_sevencogstheme','01','mobile','01','',6,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10913,10912,10202,1,0,0,'classic','01','mobile','01','',0,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10914,10912,10202,0,1,10920,'sevencogsmobile_WAR_sevencogsmobiletheme','01','mobile','01','',2,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10966,10965,10202,1,0,0,'classic','01','mobile','01','',3,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(10967,10965,10202,0,0,0,'classic','01','mobile','01','',2,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11038,11037,10202,1,0,0,'classic','01','mobile','01','',3,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11039,11037,10202,0,0,0,'classic','01','mobile','01','',2,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11110,11109,10202,1,0,0,'classic','01','mobile','01','',3,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11111,11109,10202,0,0,0,'classic','01','mobile','01','',2,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11182,11181,10202,1,0,0,'classic','01','mobile','01','',3,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11183,11181,10202,0,0,0,'classic','01','mobile','01','',2,'','2016-11-22 19:01:33','2016-11-22 19:01:33',NULL,NULL),(11599,11598,10202,1,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:01:50','2016-11-22 18:01:50','',0),(11600,11598,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:01:50','2016-11-22 18:01:50','',0),(11629,11628,10202,1,0,0,'classic','01','mobile','01','',1,'','2016-11-22 18:01:50','2016-11-22 18:01:50','',0),(11630,11628,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:01:50','2016-11-22 18:01:50','',0),(11638,11637,10202,1,0,0,'classic','01','mobile','01','',3,'','2016-11-22 18:01:51','2016-11-22 18:05:16','',0),(11639,11637,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:01:51','2016-11-22 18:01:51','',0),(11664,11663,10202,1,0,0,'classic','01','mobile','01','',4,'','2016-11-22 18:01:51','2016-11-22 18:05:16','',0),(11665,11663,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:01:51','2016-11-22 18:01:51','',0),(11911,11910,10202,1,0,0,'classic','01','mobile','01','',2,'','2016-11-22 18:05:20','2016-11-22 18:05:21','',0),(11912,11910,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:05:20','2016-11-22 18:05:20','',0),(11937,11936,10202,1,0,0,'classic','01','mobile','01','',3,'','2016-11-22 18:05:21','2016-11-22 18:05:22','',0),(11938,11936,10202,0,0,0,'classic','01','mobile','01','',0,'','2016-11-22 18:05:21','2016-11-22 18:05:21','',0),(12138,12137,10202,1,0,0,'so_WAR_sotheme','01','mobile','01','',7,'','2016-11-22 18:05:56','2016-11-22 18:05:59','',0),(12139,12137,10202,0,0,0,'so_WAR_sotheme','01','mobile','01','',0,'','2016-11-22 18:05:56','2016-11-22 18:05:59','',0),(12212,12211,10202,1,0,0,'so_WAR_sotheme','01','mobile','01','',6,'','2016-11-22 18:05:57','2016-11-22 18:05:59','',0),(12213,12211,10202,0,0,0,'so_WAR_sotheme','01','mobile','01','',0,'','2016-11-22 18:05:57','2016-11-22 18:05:59','',0),(12270,12269,10202,1,0,0,'so_WAR_sotheme','01','mobile','01','',3,'','2016-11-22 18:05:58','2016-11-22 18:05:59','',0),(12271,12269,10202,0,0,0,'so_WAR_sotheme','01','mobile','01','',0,'','2016-11-22 18:05:58','2016-11-22 18:05:59','',0); /*!40000 ALTER TABLE `LayoutSet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutSetBranch` -- DROP TABLE IF EXISTS `LayoutSetBranch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutSetBranch` ( `layoutSetBranchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `master` tinyint(4) DEFAULT NULL, `logo` tinyint(4) DEFAULT NULL, `logoId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `wapThemeId` varchar(75) DEFAULT NULL, `wapColorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `settings_` longtext, `layoutSetPrototypeUuid` varchar(75) DEFAULT NULL, `layoutSetPrototypeLinkEnabled` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutSetBranchId`), UNIQUE KEY `IX_5FF18552` (`groupId`,`privateLayout`,`name`), KEY `IX_8FF5D6EA` (`groupId`), KEY `IX_C4079FD3` (`groupId`,`privateLayout`), KEY `IX_CCF0DA29` (`groupId`,`privateLayout`,`master`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutSetBranch` -- LOCK TABLES `LayoutSetBranch` WRITE; /*!40000 ALTER TABLE `LayoutSetBranch` DISABLE KEYS */; /*!40000 ALTER TABLE `LayoutSetBranch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutSetPrototype` -- DROP TABLE IF EXISTS `LayoutSetPrototype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutSetPrototype` ( `layoutSetPrototypeId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `settings_` longtext, `active_` tinyint(4) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, PRIMARY KEY (`layoutSetPrototypeId`), KEY `IX_55F63D98` (`companyId`), KEY `IX_9178FC71` (`companyId`,`active_`), KEY `IX_C5D69B24` (`uuid_`), KEY `IX_D9FFCA84` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutSetPrototype` -- LOCK TABLES `LayoutSetPrototype` WRITE; /*!40000 ALTER TABLE `LayoutSetPrototype` DISABLE KEYS */; INSERT INTO `LayoutSetPrototype` VALUES (10361,10202,'Site with Blog, Wiki and Forum','Pages that are available to both guests and members of this community or organization.','',1,'2016-11-22 19:01:33','2016-11-22 19:01:33','2036068a-cd47-4e88-9ccd-b9d24e2fc324',10205,''),(10390,10202,'Site with Calendar, Documents and Images','Pages that are only available to members of this community or organization.','',1,'2016-11-22 19:01:33','2016-11-22 18:05:15','e26e78cf-b0b7-4c3d-92df-05c7c94fdc5a',10205,''),(11636,10202,'Community Site','Site with Forums, Calendar and Wiki','layoutsUpdateable=true\n',1,'2016-11-22 18:01:51','2016-11-22 18:05:16','c44f1239-5441-4164-a979-d32e26058789',10205,''),(11662,10202,'Intranet Site','Site with Documents, Calendar and News','layoutsUpdateable=true\n',1,'2016-11-22 18:01:51','2016-11-22 18:05:16','f3858ba7-9a24-41c3-b30f-b6ef0282f998',10205,''),(11909,10202,'Community Site','Site with Forums and Wiki','layoutsUpdateable=true\n',1,'2016-11-22 18:05:20','2016-11-22 18:05:21','65cdf81c-410c-4077-a8cb-28d74291e16b',10205,''),(11935,10202,'Intranet Site','Site with Documents and News','layoutsUpdateable=true\n',1,'2016-11-22 18:05:21','2016-11-22 18:05:22','b6e18278-2933-4c43-bdbb-57ed30c73d4d',10205,''),(12136,10202,'Default Social Office Site','Default Social Office Site','customJspServletContextName=so-hook\nlayoutsUpdateable=true\n',1,'2016-11-22 18:05:56','2016-11-22 18:05:59','6ec06083-5abb-47fc-b2f2-b1bb29a5221a',10205,''),(12210,10202,'Social Office User Home','Social Office User Home','customJspServletContextName=so-hook\nlayoutsUpdateable=true\n',1,'2016-11-22 18:05:57','2016-11-22 18:05:59','f8c9fb8b-52ce-4dc8-a619-e9dd577bc7f2',10205,''),(12268,10202,'Social Office User Profile','Social Office User Profile','customJspServletContextName=so-hook\nlayoutsUpdateable=true\n',1,'2016-11-22 18:05:58','2016-11-22 18:05:59','636df713-b61c-4feb-9d69-98681005d5f8',10205,''); /*!40000 ALTER TABLE `LayoutSetPrototype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ListType` -- DROP TABLE IF EXISTS `ListType`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ListType` ( `listTypeId` int(11) NOT NULL, `name` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, PRIMARY KEY (`listTypeId`), KEY `IX_2932DD37` (`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ListType` -- LOCK TABLES `ListType` WRITE; /*!40000 ALTER TABLE `ListType` DISABLE KEYS */; INSERT INTO `ListType` VALUES (10000,'Billing','com.liferay.portal.model.Account.address'),(10001,'Other','com.liferay.portal.model.Account.address'),(10002,'P.O. Box','com.liferay.portal.model.Account.address'),(10003,'Shipping','com.liferay.portal.model.Account.address'),(10004,'E-mail','com.liferay.portal.model.Account.emailAddress'),(10005,'E-mail 2','com.liferay.portal.model.Account.emailAddress'),(10006,'E-mail 3','com.liferay.portal.model.Account.emailAddress'),(10007,'Fax','com.liferay.portal.model.Account.phone'),(10008,'Local','com.liferay.portal.model.Account.phone'),(10009,'Other','com.liferay.portal.model.Account.phone'),(10010,'Toll-Free','com.liferay.portal.model.Account.phone'),(10011,'TTY','com.liferay.portal.model.Account.phone'),(10012,'Intranet','com.liferay.portal.model.Account.website'),(10013,'Public','com.liferay.portal.model.Account.website'),(11000,'Business','com.liferay.portal.model.Contact.address'),(11001,'Other','com.liferay.portal.model.Contact.address'),(11002,'Personal','com.liferay.portal.model.Contact.address'),(11003,'E-mail','com.liferay.portal.model.Contact.emailAddress'),(11004,'E-mail 2','com.liferay.portal.model.Contact.emailAddress'),(11005,'E-mail 3','com.liferay.portal.model.Contact.emailAddress'),(11006,'Business','com.liferay.portal.model.Contact.phone'),(11007,'Business Fax','com.liferay.portal.model.Contact.phone'),(11008,'Mobile','com.liferay.portal.model.Contact.phone'),(11009,'Other','com.liferay.portal.model.Contact.phone'),(11010,'Pager','com.liferay.portal.model.Contact.phone'),(11011,'Personal','com.liferay.portal.model.Contact.phone'),(11012,'Personal Fax','com.liferay.portal.model.Contact.phone'),(11013,'TTY','com.liferay.portal.model.Contact.phone'),(11014,'Dr.','com.liferay.portal.model.Contact.prefix'),(11015,'Mr.','com.liferay.portal.model.Contact.prefix'),(11016,'Mrs.','com.liferay.portal.model.Contact.prefix'),(11017,'Ms.','com.liferay.portal.model.Contact.prefix'),(11020,'II','com.liferay.portal.model.Contact.suffix'),(11021,'III','com.liferay.portal.model.Contact.suffix'),(11022,'IV','com.liferay.portal.model.Contact.suffix'),(11023,'Jr.','com.liferay.portal.model.Contact.suffix'),(11024,'PhD.','com.liferay.portal.model.Contact.suffix'),(11025,'Sr.','com.liferay.portal.model.Contact.suffix'),(11026,'Blog','com.liferay.portal.model.Contact.website'),(11027,'Business','com.liferay.portal.model.Contact.website'),(11028,'Other','com.liferay.portal.model.Contact.website'),(11029,'Personal','com.liferay.portal.model.Contact.website'),(12000,'Billing','com.liferay.portal.model.Organization.address'),(12001,'Other','com.liferay.portal.model.Organization.address'),(12002,'P.O. Box','com.liferay.portal.model.Organization.address'),(12003,'Shipping','com.liferay.portal.model.Organization.address'),(12004,'E-mail','com.liferay.portal.model.Organization.emailAddress'),(12005,'E-mail 2','com.liferay.portal.model.Organization.emailAddress'),(12006,'E-mail 3','com.liferay.portal.model.Organization.emailAddress'),(12007,'Fax','com.liferay.portal.model.Organization.phone'),(12008,'Local','com.liferay.portal.model.Organization.phone'),(12009,'Other','com.liferay.portal.model.Organization.phone'),(12010,'Toll-Free','com.liferay.portal.model.Organization.phone'),(12011,'TTY','com.liferay.portal.model.Organization.phone'),(12012,'Administrative','com.liferay.portal.model.Organization.service'),(12013,'Contracts','com.liferay.portal.model.Organization.service'),(12014,'Donation','com.liferay.portal.model.Organization.service'),(12015,'Retail','com.liferay.portal.model.Organization.service'),(12016,'Training','com.liferay.portal.model.Organization.service'),(12017,'Full Member','com.liferay.portal.model.Organization.status'),(12018,'Provisional Member','com.liferay.portal.model.Organization.status'),(12019,'Intranet','com.liferay.portal.model.Organization.website'),(12020,'Public','com.liferay.portal.model.Organization.website'); /*!40000 ALTER TABLE `ListType` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Lock_` -- DROP TABLE IF EXISTS `Lock_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Lock_` ( `uuid_` varchar(75) DEFAULT NULL, `lockId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `className` varchar(75) DEFAULT NULL, `key_` varchar(200) DEFAULT NULL, `owner` varchar(300) DEFAULT NULL, `inheritable` tinyint(4) DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, PRIMARY KEY (`lockId`), UNIQUE KEY `IX_228562AD` (`className`,`key_`), KEY `IX_E3F1286B` (`expirationDate`), KEY `IX_13C5CD3A` (`uuid_`), KEY `IX_2C418EAE` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Lock_` -- LOCK TABLES `Lock_` WRITE; /*!40000 ALTER TABLE `Lock_` DISABLE KEYS */; /*!40000 ALTER TABLE `Lock_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBBan` -- DROP TABLE IF EXISTS `MBBan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBBan` ( `banId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `banUserId` bigint(20) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, PRIMARY KEY (`banId`), UNIQUE KEY `IX_8ABC4E3B` (`groupId`,`banUserId`), UNIQUE KEY `IX_2A3B68F6` (`uuid_`,`groupId`), KEY `IX_69951A25` (`banUserId`), KEY `IX_5C3FF12A` (`groupId`), KEY `IX_48814BBA` (`userId`), KEY `IX_8A13C634` (`uuid_`), KEY `IX_4F841574` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBBan` -- LOCK TABLES `MBBan` WRITE; /*!40000 ALTER TABLE `MBBan` DISABLE KEYS */; /*!40000 ALTER TABLE `MBBan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBCategory` -- DROP TABLE IF EXISTS `MBCategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBCategory` ( `uuid_` varchar(75) DEFAULT NULL, `categoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentCategoryId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `threadCount` int(11) DEFAULT NULL, `messageCount` int(11) DEFAULT NULL, `lastPostDate` datetime DEFAULT NULL, `displayStyle` varchar(75) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`categoryId`), UNIQUE KEY `IX_F7D28C2F` (`uuid_`,`groupId`), KEY `IX_BC735DCF` (`companyId`), KEY `IX_BB870C11` (`groupId`), KEY `IX_ED292508` (`groupId`,`parentCategoryId`), KEY `IX_C2626EDB` (`uuid_`), KEY `IX_E15A5DB5` (`companyId`,`status`), KEY `IX_C295DBEE` (`groupId`,`parentCategoryId`,`status`), KEY `IX_DA84A9F7` (`groupId`,`status`), KEY `IX_13DF4E6D` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBCategory` -- LOCK TABLES `MBCategory` WRITE; /*!40000 ALTER TABLE `MBCategory` DISABLE KEYS */; INSERT INTO `MBCategory` VALUES ('4ceaf575-6423-476d-a31e-22e1b0fac3e6',11354,10587,10202,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',0,'Using the forum','Some advice on using the forum',1,1,'2016-11-22 17:54:24','default',0,10963,'Bruno Admin','2016-11-22 17:54:24'),('dc0ad64e-f401-4be3-9590-7881d0db8281',11363,10587,10202,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',0,'General Questions','Product questions and more!',1,3,'2016-11-22 17:54:24','default',0,10963,'Bruno Admin','2016-11-22 17:54:24'); /*!40000 ALTER TABLE `MBCategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBDiscussion` -- DROP TABLE IF EXISTS `MBDiscussion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBDiscussion` ( `discussionId` bigint(20) NOT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `threadId` bigint(20) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`discussionId`), UNIQUE KEY `IX_33A4DE38` (`classNameId`,`classPK`), UNIQUE KEY `IX_B5CA2DC` (`threadId`), UNIQUE KEY `IX_F7AAC799` (`uuid_`,`groupId`), KEY `IX_79D0120B` (`classNameId`), KEY `IX_5477D431` (`uuid_`), KEY `IX_7E965757` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBDiscussion` -- LOCK TABLES `MBDiscussion` WRITE; /*!40000 ALTER TABLE `MBDiscussion` DISABLE KEYS */; INSERT INTO `MBDiscussion` VALUES (10226,10014,10222,10224,'f2004021-e6b6-4afb-bbe5-117f6e849c13',10219,10202,0,'',NULL,NULL),(10342,10014,10338,10340,'51afbce7-1c98-41b2-938d-492b423c0f04',10335,10202,0,'',NULL,NULL),(10351,10014,10347,10349,'69dabf76-f462-4228-9047-7e77912359f3',10344,10202,0,'',NULL,NULL),(10360,10014,10356,10358,'858a88ce-9e41-45be-90dc-94afe8b760ff',10353,10202,0,'',NULL,NULL),(10374,10014,10370,10372,'da16bb17-9508-46c9-931e-384b3b821d3b',10362,10202,0,'',NULL,NULL),(10379,10014,10375,10377,'6f98ee03-1db7-46c0-b7f8-d74aa31bca27',10362,10202,0,'',NULL,NULL),(10384,10014,10380,10382,'b86560a5-2c6c-4ae7-80e5-ca2ed40a8e72',10362,10202,0,'',NULL,NULL),(10389,10014,10385,10387,'5f115909-f104-46ef-a159-afbc2dfa1b52',10362,10202,0,'',NULL,NULL),(10403,10014,10399,10401,'8d44523b-8c9d-403c-93eb-41f61ff04e80',10391,10202,0,'',NULL,NULL),(10408,10014,10404,10406,'b9310e58-d166-4ed5-9775-b46819a5b7a2',10391,10202,0,'',NULL,NULL),(10414,10014,10410,10412,'b63f9594-3c6f-4a97-a62e-31200eac48d7',10391,10202,0,'',NULL,NULL),(10419,10014,10415,10417,'2d622d2d-60ac-45b4-8594-5b0e0ff77dcb',10391,10202,0,'',NULL,NULL),(10524,10014,10520,10522,'f5cf6a7e-8616-4df9-9a6e-cb30b7301c12',10227,10202,0,'',NULL,NULL),(10538,10084,10528,10536,'6f1ddb55-3cf0-490b-91ff-b29d48983738',10227,10202,0,'',NULL,NULL),(10551,10084,10543,10549,'103a0561-2b81-43cb-bb97-42fb46783018',10227,10202,0,'',NULL,NULL),(10561,10084,10555,10559,'ed2622df-fa62-43e7-a986-86fbd93c9924',10227,10202,0,'',NULL,NULL),(10571,10084,10565,10569,'3a23b392-9f46-4fe3-a606-d6c298134c6a',10227,10202,0,'',NULL,NULL),(10584,10084,10574,10582,'d1fec81a-e05e-4ae0-8b5f-3305f6290711',10227,10202,0,'',NULL,NULL),(10661,10014,10657,10659,'4520a246-ae7a-449a-b110-77844e3b9843',10587,10202,0,'',NULL,NULL),(10674,10084,10665,10672,'2c7c4313-77eb-4c10-bdbd-8985686dd111',10587,10202,0,'',NULL,NULL),(10685,10084,10679,10683,'79aa5b67-24ab-4a7b-a62b-bfbc5ed7ea62',10587,10202,0,'',NULL,NULL),(10695,10084,10689,10693,'c33145a9-1eeb-41e6-bca1-802c00d15d03',10587,10202,0,'',NULL,NULL),(10705,10084,10699,10703,'02845fa9-ce1a-48bc-af65-24b9f28c5756',10587,10202,0,'',NULL,NULL),(10717,10084,10709,10715,'2d860271-18cc-4d4e-ae03-0cb22662a49f',10587,10202,0,'',NULL,NULL),(10729,10084,10721,10727,'9d70e8b6-9c16-4ad0-918a-a5e79de1ac45',10587,10202,0,'',NULL,NULL),(10734,10014,10730,10732,'2a753ced-6e2a-49e0-96de-d82499e89e34',10587,10202,0,'',NULL,NULL),(10746,10084,10738,10744,'52764f68-d050-4987-b5e4-8c734f578bde',10587,10202,0,'',NULL,NULL),(10757,10084,10750,10755,'73e67136-51c4-419b-8de4-d7b7cc979da1',10587,10202,0,'',NULL,NULL),(10767,10084,10761,10765,'977ce7d8-ce88-4f21-8f77-ed4ec69da3d0',10587,10202,0,'',NULL,NULL),(10777,10084,10771,10775,'ac1a42b0-e3d8-4b86-b24f-85098bdc88da',10587,10202,0,'',NULL,NULL),(10782,10014,10778,10780,'fd881124-7f4a-40a6-be64-533e23226324',10587,10202,0,'',NULL,NULL),(10792,10084,10786,10790,'63d457b9-8b5e-47a7-bec9-2e820e383dae',10587,10202,0,'',NULL,NULL),(10798,10014,10794,10796,'4ac44fc1-f72b-42af-8e32-015d6e4913c0',10587,10202,0,'',NULL,NULL),(10808,10084,10802,10806,'d34bb695-2caf-4141-9344-c1e2993ad5bc',10587,10202,0,'',NULL,NULL),(10821,10129,10812,10819,'71ce3dcc-7506-4d4b-b326-f3a9772a2d36',10587,10202,0,'',NULL,NULL),(10830,10129,10824,10828,'2069b237-9186-41d6-bbc7-88fc55f2a5b2',10587,10202,0,'',NULL,NULL),(10835,10014,10831,10833,'44752cc2-67e4-4b29-a342-fb9d41288fae',10587,10202,0,'',NULL,NULL),(10846,10084,10839,10844,'8e5e0ac9-9656-4b4a-a273-6953f8e0eba1',10587,10202,0,'',NULL,NULL),(10852,10014,10848,10850,'85d159e8-f9a4-4902-a0eb-92f412db44b3',10587,10202,0,'',NULL,NULL),(10862,10084,10856,10860,'53ee0459-f3bc-4ec5-8d6a-bb6afc364118',10587,10202,0,'',NULL,NULL),(10872,10084,10866,10870,'a7056d0f-7a83-439a-884b-d988b6342473',10587,10202,0,'',NULL,NULL),(10878,10014,10874,10876,'8e0aa1b6-2ab0-4213-bdce-a5ed5ed6be97',10587,10202,0,'',NULL,NULL),(10890,10084,10882,10888,'7d569078-488b-42d1-b5a9-35db58d8bc1c',10587,10202,0,'',NULL,NULL),(10896,10014,10892,10894,'d4676d2c-2578-42ae-b7db-76e3193f99c5',10587,10202,0,'',NULL,NULL),(10910,10084,10900,10908,'a5b7fa03-a782-4872-94c5-168440a0cb86',10587,10202,0,'',NULL,NULL),(10934,10014,10930,10932,'8cab7084-aaec-4553-8258-8bf2277b4325',10912,10202,0,'',NULL,NULL),(10944,10084,10938,10942,'f89ba445-2c18-48d3-9694-bd5c1a9aeab0',10912,10202,0,'',NULL,NULL),(10950,10014,10946,10948,'a132978a-5b28-4573-9434-1783b38916f2',10912,10202,0,'',NULL,NULL),(10960,10084,10954,10958,'4be8bef0-81c1-4ff8-b7f7-750bcbe68c73',10912,10202,0,'',NULL,NULL),(10974,10014,10970,10972,'318c1270-9c45-4c47-b367-54eba01d3c2c',10965,10202,0,'',NULL,NULL),(10988,10084,10978,10986,'f64f98f6-492e-4997-9904-33b1032e1298',10965,10202,0,'',NULL,NULL),(10994,10014,10990,10992,'268fd523-19e4-4dd9-85fa-75746daed75c',10965,10202,0,'',NULL,NULL),(10999,10014,10995,10997,'a7ed9d22-6cab-4b25-a921-a84b1bb8303b',10965,10202,0,'',NULL,NULL),(11011,10084,11003,11009,'b8039f55-af76-4df0-9b40-2e8bc7372e58',10965,10202,0,'',NULL,NULL),(11017,10014,11013,11015,'179946b7-f1cc-47e9-bc2c-6311b1f493d6',10965,10202,0,'',NULL,NULL),(11029,10084,11021,11027,'2cd982ef-7560-47e6-9535-5024c8fc409b',10965,10202,0,'',NULL,NULL),(11034,10014,11030,11032,'3d3e44b6-96ea-40a3-a16e-f4302d23383f',10965,10202,0,'',NULL,NULL),(11046,10014,11042,11044,'0ce35ff9-a124-4a22-b496-61eaedfa27d7',11037,10202,0,'',NULL,NULL),(11060,10084,11050,11058,'836b9bdf-b600-4847-b3b3-2875797671ca',11037,10202,0,'',NULL,NULL),(11066,10014,11062,11064,'801f8f60-214c-46fe-aaee-7b5dbd23de87',11037,10202,0,'',NULL,NULL),(11071,10014,11067,11069,'2000b96d-475b-489d-b502-6574d974f98e',11037,10202,0,'',NULL,NULL),(11083,10084,11075,11081,'59846015-4a62-4ebb-b0f5-780341cb42e5',11037,10202,0,'',NULL,NULL),(11089,10014,11085,11087,'79e1688f-b765-4101-b0ad-d3b42a6ec510',11037,10202,0,'',NULL,NULL),(11101,10084,11093,11099,'6ec105ed-140c-4670-b393-07c8d1081515',11037,10202,0,'',NULL,NULL),(11106,10014,11102,11104,'a6c495d4-b3e2-431c-a7ac-e8d82f1b5426',11037,10202,0,'',NULL,NULL),(11118,10014,11114,11116,'8bf93b7e-b3bc-4383-b412-4978e5fcaf21',11109,10202,0,'',NULL,NULL),(11132,10084,11122,11130,'66e4151a-e8f3-45b8-b543-cf2183b7a623',11109,10202,0,'',NULL,NULL),(11138,10014,11134,11136,'38f414f5-1a74-4dc2-80ac-444948df695c',11109,10202,0,'',NULL,NULL),(11143,10014,11139,11141,'6a945317-c8e5-4618-9818-16f35c9dd785',11109,10202,0,'',NULL,NULL),(11155,10084,11147,11153,'19bffc27-718d-4674-a48a-a464699dc079',11109,10202,0,'',NULL,NULL),(11161,10014,11157,11159,'57e766f3-ef1d-4cce-bd1a-b391c90a10be',11109,10202,0,'',NULL,NULL),(11173,10084,11165,11171,'b99c1215-317d-4c21-a20e-75c2d85126a8',11109,10202,0,'',NULL,NULL),(11178,10014,11174,11176,'272a1594-9316-4792-94c5-edf1cbbd795d',11109,10202,0,'',NULL,NULL),(11190,10014,11186,11188,'1f91ca76-da00-4bbd-aae9-66f3dbe7527c',11181,10202,0,'',NULL,NULL),(11204,10084,11194,11202,'69267d6a-e556-4b3b-8028-c2cabc8a70dc',11181,10202,0,'',NULL,NULL),(11210,10014,11206,11208,'89f13bea-802b-43f8-adc8-2ffea32c95f0',11181,10202,0,'',NULL,NULL),(11215,10014,11211,11213,'5144903e-a12d-409c-8759-7f05f7e291aa',11181,10202,0,'',NULL,NULL),(11227,10084,11219,11225,'bce5c7f3-5e84-4013-b67c-df9f7c3ccfef',11181,10202,0,'',NULL,NULL),(11233,10014,11229,11231,'8ca0f9d9-a4b7-4410-8cbd-9867f945eb11',11181,10202,0,'',NULL,NULL),(11245,10084,11237,11243,'3872a303-49df-44c8-899d-47f86afbf986',11181,10202,0,'',NULL,NULL),(11250,10014,11246,11248,'134ca6cd-2107-49d3-bfd3-eada4da34851',11181,10202,0,'',NULL,NULL),(11262,10068,11251,11260,'9cf4041b-8827-4329-aac3-1ffef176f1af',10965,10202,0,'',NULL,NULL),(11277,10068,11266,11275,'d8ef595c-d7ed-4fa7-a540-25e48182420b',10965,10202,0,'',NULL,NULL),(11289,10068,11278,11287,'3f6749bf-8d78-428c-8bb9-5cab9a197684',11037,10202,0,'',NULL,NULL),(11306,10068,11293,11304,'19383a38-2a6f-4dfc-95ed-66969dc634fd',11109,10202,0,'',NULL,NULL),(11323,10073,11311,11321,'92f7ceaa-d9cc-40d4-8c4a-9b49ccf1235d',10965,10202,0,'',NULL,NULL),(11338,10073,11326,11336,'4a50bf6a-74a1-4e99-bd4f-bf18f26902a8',11109,10202,0,'',NULL,NULL),(11353,10073,11341,11351,'fa9e16ca-1282-4900-9208-84d268d56eaa',11181,10202,0,'',NULL,NULL),(11399,10014,11395,11397,'db2820c5-3285-4bac-851b-78082ed1e830',10241,10202,0,'',NULL,NULL),(11404,10014,11400,11402,'cd8c0745-796f-4007-807e-447a0c2f6782',10241,10202,0,'',NULL,NULL),(11417,10068,11412,11415,'45493c7e-aed1-431d-a76d-1ad511c990f5',10227,10202,0,'',NULL,NULL),(11635,10014,11631,11633,'37433245-6a1d-49f3-9ae1-af444cb221d1',11628,10202,0,'',NULL,NULL),(11649,10014,11645,11647,'75353833-ff42-43de-9288-babca3a5f6ba',11637,10202,0,'',NULL,NULL),(11655,10014,11651,11653,'02dcc235-9938-4c2a-90f5-aa69cf2f6c74',11637,10202,0,'',NULL,NULL),(11661,10014,11657,11659,'499b7cbb-d077-4d0a-a207-746d22cd1e33',11637,10202,0,'',NULL,NULL),(11675,10014,11671,11673,'1cc51a43-50f0-49b2-8a86-10dc264fb6c5',11663,10202,0,'',NULL,NULL),(11683,10014,11679,11681,'51c98a46-b009-4022-855a-41450b5ac1a5',11663,10202,0,'',NULL,NULL),(11689,10014,11685,11687,'d9e4627f-9dac-4ff0-a19c-459f03fd0e7f',11663,10202,0,'',NULL,NULL),(11695,10014,11691,11693,'c79b2a70-cce7-403b-bedb-7c39bc59751d',11663,10202,0,'',NULL,NULL),(11926,10014,11921,11924,'dfba6bfb-7a55-49a7-b4c8-37bf7ae8f414',0,0,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21'),(11934,10014,11929,11932,'8715dd12-5455-4c19-8682-5326e6c040d0',0,0,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21'),(11952,10014,11947,11950,'c309c538-171e-4473-84fb-266bb6a782e0',0,0,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21'),(11961,10014,11956,11959,'2faff199-9be6-4fe0-9990-d0165f6d107a',0,0,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22'),(11969,10014,11964,11967,'fec6bcde-d92a-4122-bfe6-c2614ee1b01b',0,0,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22'),(12155,10014,12150,12153,'4c5b364e-d310-4dcd-b911-8a0990981cc7',0,0,10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56'),(12165,10014,12160,12163,'1bc92207-f294-4680-a47e-1debef243026',0,0,10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56'),(12172,10014,12167,12170,'3068f4e9-a5a0-4040-8e58-5b8ee2394627',0,0,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12180,10014,12175,12178,'8e586670-a21a-4caf-abc7-9cf26ee4ee77',0,0,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12190,10014,12185,12188,'4bf78566-9738-4fac-8d93-af03df1f072a',0,0,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12199,10014,12194,12197,'f6ceacce-2373-4845-85cf-8624e0f6d080',0,0,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12207,10014,12202,12205,'6cf0c5e5-a8fb-4b85-aeba-78d2f21abe29',0,0,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12229,10014,12224,12227,'9a7cf3f4-8fd9-4b78-b6bd-4d3cbb944bf8',0,0,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12238,10014,12233,12236,'4400e97c-1fd0-4fa4-8971-effb353fa1ec',0,0,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12245,10014,12240,12243,'c3bcb9c2-fe67-4b11-b26a-baa1d7741eff',0,0,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12252,10014,12247,12250,'f93f7caf-8024-48ce-89e8-9f3b41253017',0,0,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12259,10014,12254,12257,'e9367842-3a2f-4a8b-afa7-02925067147a',0,0,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12266,10014,12261,12264,'1d81da2e-6092-4326-a355-0bcb4d7ed338',0,0,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12287,10014,12282,12285,'5d277893-72dd-495c-a75c-8618e3564d35',0,0,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12297,10014,12292,12295,'54774318-5e38-4fdc-8f78-c2813fa5880d',0,0,10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59'),(12305,10014,12300,12303,'065f5b8d-fda4-4fbc-af80-4bd49d85c96f',0,0,10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59'); /*!40000 ALTER TABLE `MBDiscussion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBMailingList` -- DROP TABLE IF EXISTS `MBMailingList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBMailingList` ( `uuid_` varchar(75) DEFAULT NULL, `mailingListId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `emailAddress` varchar(75) DEFAULT NULL, `inProtocol` varchar(75) DEFAULT NULL, `inServerName` varchar(75) DEFAULT NULL, `inServerPort` int(11) DEFAULT NULL, `inUseSSL` tinyint(4) DEFAULT NULL, `inUserName` varchar(75) DEFAULT NULL, `inPassword` varchar(75) DEFAULT NULL, `inReadInterval` int(11) DEFAULT NULL, `outEmailAddress` varchar(75) DEFAULT NULL, `outCustom` tinyint(4) DEFAULT NULL, `outServerName` varchar(75) DEFAULT NULL, `outServerPort` int(11) DEFAULT NULL, `outUseSSL` tinyint(4) DEFAULT NULL, `outUserName` varchar(75) DEFAULT NULL, `outPassword` varchar(75) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `allowAnonymous` tinyint(4) DEFAULT NULL, PRIMARY KEY (`mailingListId`), UNIQUE KEY `IX_76CE9CDD` (`groupId`,`categoryId`), UNIQUE KEY `IX_E858F170` (`uuid_`,`groupId`), KEY `IX_BFEB984F` (`active_`), KEY `IX_4115EC7A` (`uuid_`), KEY `IX_FC61676E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBMailingList` -- LOCK TABLES `MBMailingList` WRITE; /*!40000 ALTER TABLE `MBMailingList` DISABLE KEYS */; INSERT INTO `MBMailingList` VALUES ('3c11ac59-ebc2-47c3-8628-30df9e0c8368',11355,10587,10202,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',11354,'','','',0,0,'','',1,'',0,'',0,0,'','',0,NULL),('6a96ba20-3dd2-47e4-bc2c-c857b2f49396',11364,10587,10202,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',11363,'','','',0,0,'','',1,'',0,'',0,0,'','',0,NULL); /*!40000 ALTER TABLE `MBMailingList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBMessage` -- DROP TABLE IF EXISTS `MBMessage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBMessage` ( `uuid_` varchar(75) DEFAULT NULL, `messageId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `threadId` bigint(20) DEFAULT NULL, `rootMessageId` bigint(20) DEFAULT NULL, `parentMessageId` bigint(20) DEFAULT NULL, `subject` varchar(75) DEFAULT NULL, `body` longtext, `anonymous` tinyint(4) DEFAULT NULL, `priority` double DEFAULT NULL, `allowPingbacks` tinyint(4) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, `format` varchar(75) DEFAULT NULL, `answer` tinyint(4) DEFAULT NULL, PRIMARY KEY (`messageId`), UNIQUE KEY `IX_8D12316E` (`uuid_`,`groupId`), KEY `IX_51A8D44D` (`classNameId`,`classPK`), KEY `IX_F6687633` (`classNameId`,`classPK`,`status`), KEY `IX_B1432D30` (`companyId`), KEY `IX_1AD93C16` (`companyId`,`status`), KEY `IX_5B153FB2` (`groupId`), KEY `IX_1073AB9F` (`groupId`,`categoryId`), KEY `IX_4257DB85` (`groupId`,`categoryId`,`status`), KEY `IX_B674AB58` (`groupId`,`categoryId`,`threadId`), KEY `IX_385E123E` (`groupId`,`categoryId`,`threadId`,`status`), KEY `IX_ED39AC98` (`groupId`,`status`), KEY `IX_8EB8C5EC` (`groupId`,`userId`), KEY `IX_377858D2` (`groupId`,`userId`,`status`), KEY `IX_75B95071` (`threadId`), KEY `IX_A7038CD7` (`threadId`,`parentMessageId`), KEY `IX_9DC8E57` (`threadId`,`status`), KEY `IX_7A040C32` (`userId`), KEY `IX_C57B16BC` (`uuid_`), KEY `IX_CBFDBF0A` (`groupId`,`categoryId`,`threadId`,`answer`), KEY `IX_9D7C3B23` (`threadId`,`answer`), KEY `IX_59F9CE5C` (`userId`,`classNameId`), KEY `IX_ABEB6D07` (`userId`,`classNameId`,`classPK`), KEY `IX_4A4BB4ED` (`userId`,`classNameId`,`classPK`,`status`), KEY `IX_3321F142` (`userId`,`classNameId`,`status`), KEY `IX_57CA9FEC` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBMessage` -- LOCK TABLES `MBMessage` WRITE; /*!40000 ALTER TABLE `MBMessage` DISABLE KEYS */; INSERT INTO `MBMessage` VALUES ('5fee85b7-3ee9-42b8-a474-c735ea904578',10223,10219,10202,10205,' ','2016-11-22 17:54:02','2016-11-22 17:54:02',10014,10222,-1,10224,10223,0,'10222','10222',1,0,0,0,10205,' ','2016-11-22 17:54:02','bbcode',NULL),('51371789-9042-442b-9996-710ca9b6fa74',10339,10335,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10338,-1,10340,10339,0,'10338','10338',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('170fd98a-c167-4603-8043-ef1d13d59d77',10348,10344,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10347,-1,10349,10348,0,'10347','10347',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('bbe0f56c-1d9e-44e3-8c16-dfecdb9b1e0e',10357,10353,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10356,-1,10358,10357,0,'10356','10356',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('51303a03-0a07-4968-9ae0-7790b032ef2b',10371,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10370,-1,10372,10371,0,'10370','10370',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('b5b0c36d-e185-4c54-a3fa-da207a262961',10376,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10375,-1,10377,10376,0,'10375','10375',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('480ca220-2b89-4a1a-904f-4cef25a7ef6e',10381,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10380,-1,10382,10381,0,'10380','10380',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('91080e95-4986-4302-9896-a78541d5d903',10386,10362,10202,10205,' ','2016-11-22 17:54:05','2016-11-22 17:54:05',10014,10385,-1,10387,10386,0,'10385','10385',1,0,0,0,10205,' ','2016-11-22 17:54:05','bbcode',NULL),('caf0f6a7-7b04-4a3c-aa1f-aad2b601fa5a',10400,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10014,10399,-1,10401,10400,0,'10399','10399',1,0,0,0,10205,' ','2016-11-22 17:54:06','bbcode',NULL),('1d8db30a-43e8-4361-ae83-fa40ca32ca49',10405,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10014,10404,-1,10406,10405,0,'10404','10404',1,0,0,0,10205,' ','2016-11-22 17:54:06','bbcode',NULL),('a4f06bb4-af50-4d98-9eb5-62301cdc95dc',10411,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10014,10410,-1,10412,10411,0,'10410','10410',1,0,0,0,10205,' ','2016-11-22 17:54:06','bbcode',NULL),('0cb8ab44-928f-4f2f-b25b-5ded8658d4a5',10416,10391,10202,10205,' ','2016-11-22 17:54:06','2016-11-22 17:54:06',10014,10415,-1,10417,10416,0,'10415','10415',1,0,0,0,10205,' ','2016-11-22 17:54:06','bbcode',NULL),('368ba1a4-f9f9-4868-844b-e303c6d2d093',10521,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10014,10520,-1,10522,10521,0,'10520','10520',1,0,0,0,10205,' ','2016-11-22 17:54:15','bbcode',NULL),('78e7720a-26a5-40fc-a46c-543f96a93522',10535,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10084,10528,-1,10536,10535,0,'10528','10528',1,0,0,0,10205,' ','2016-11-22 17:54:15','bbcode',NULL),('492159a2-7736-4b8f-9de3-b94148979843',10548,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10084,10543,-1,10549,10548,0,'10543','10543',1,0,0,0,10205,' ','2016-11-22 17:54:15','bbcode',NULL),('0230e416-4a9d-44db-bf31-294f9e1d480a',10558,10227,10202,10205,' ','2016-11-22 17:54:15','2016-11-22 17:54:15',10084,10555,-1,10559,10558,0,'10555','10555',1,0,0,0,10205,' ','2016-11-22 17:54:15','bbcode',NULL),('f2e60600-b67b-4584-9ee4-ef827886f5a5',10568,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10084,10565,-1,10569,10568,0,'10565','10565',1,0,0,0,10205,' ','2016-11-22 17:54:16','bbcode',NULL),('c9fcd8b0-862c-41da-81db-1d1e1adac23e',10581,10227,10202,10205,' ','2016-11-22 17:54:16','2016-11-22 17:54:16',10084,10574,-1,10582,10581,0,'10574','10574',1,0,0,0,10205,' ','2016-11-22 17:54:16','bbcode',NULL),('8002905d-f33a-43d2-adae-af432bd7c2c6',10658,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10014,10657,-1,10659,10658,0,'10657','10657',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('c5a90e4e-3c0e-4298-9156-795450237bec',10671,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10665,-1,10672,10671,0,'10665','10665',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('7b7250d7-8128-4847-a5f5-780d75ad056f',10682,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10679,-1,10683,10682,0,'10679','10679',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('340047e9-4987-459d-b560-fde04b621c76',10692,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10689,-1,10693,10692,0,'10689','10689',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('dd54174d-04f2-48dd-935d-17aa1e80b6f1',10702,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10699,-1,10703,10702,0,'10699','10699',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('2841da8f-1034-4447-a360-6c2fd9584850',10714,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10709,-1,10715,10714,0,'10709','10709',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('995f3044-631f-4f23-9abe-c71756cf69e5',10726,10587,10202,10205,' ','2016-11-22 17:54:17','2016-11-22 17:54:17',10084,10721,-1,10727,10726,0,'10721','10721',1,0,0,0,10205,' ','2016-11-22 17:54:17','bbcode',NULL),('ef2d2b68-aa9a-4c2e-b17c-2398313ede54',10731,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10014,10730,-1,10732,10731,0,'10730','10730',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('7d3e7b45-3d1e-4f4a-a681-ce6f4474e774',10743,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10738,-1,10744,10743,0,'10738','10738',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('f2a47320-7630-404b-9afb-d5ffe29edff8',10754,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10750,-1,10755,10754,0,'10750','10750',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('9ff0db4b-dd84-41ed-b68c-4bf05c658024',10764,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10761,-1,10765,10764,0,'10761','10761',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('124946fa-0364-4003-8459-0df3b2a545c2',10774,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10771,-1,10775,10774,0,'10771','10771',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('c46e07b2-87a2-4306-94a9-600b7610ce25',10779,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10014,10778,-1,10780,10779,0,'10778','10778',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('16becbe7-2b43-47cc-9545-38e19b97818e',10789,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10786,-1,10790,10789,0,'10786','10786',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('b0dfe2b5-abb1-409a-9190-3149b77f9a24',10795,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10014,10794,-1,10796,10795,0,'10794','10794',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('4adc7b39-2629-425a-a024-75caf9b08869',10805,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10084,10802,-1,10806,10805,0,'10802','10802',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('08b57a78-7570-45f1-8e9b-719f94c3c946',10818,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10129,10812,-1,10819,10818,0,'10812','10812',1,0,0,0,10205,' ','2016-11-22 17:54:18','bbcode',NULL),('dc519ecc-82cc-4c51-bfa0-33a80c6016b5',10827,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10129,10824,-1,10828,10827,0,'10824','10824',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('ad0b5aad-6f99-4156-951d-731bb019effb',10832,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10014,10831,-1,10833,10832,0,'10831','10831',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('9acad59a-0de4-4964-b488-f2ed4f097297',10843,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10084,10839,-1,10844,10843,0,'10839','10839',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('21ffe2e7-113d-4552-8108-bed2572c1068',10849,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10014,10848,-1,10850,10849,0,'10848','10848',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('76f668fa-ccd3-4130-8806-e715b31c621b',10859,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10084,10856,-1,10860,10859,0,'10856','10856',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('3bb58cf8-ba6b-4b4c-9f36-70f847239ca4',10869,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10084,10866,-1,10870,10869,0,'10866','10866',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('a3236fcc-5264-4edf-8161-89170664f736',10875,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10014,10874,-1,10876,10875,0,'10874','10874',1,0,0,0,10205,' ','2016-11-22 17:54:19','bbcode',NULL),('48bdda1b-f46c-47fa-b86a-da54dca32e7e',10887,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10882,-1,10888,10887,0,'10882','10882',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('65db212a-9f76-44ec-b699-75588768dec3',10893,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10014,10892,-1,10894,10893,0,'10892','10892',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('5329d39c-40a3-4eef-b89b-05382188d4be',10907,10587,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10900,-1,10908,10907,0,'10900','10900',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('bbce0108-4cea-4838-a450-4a840e84317c',10931,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10014,10930,-1,10932,10931,0,'10930','10930',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('2d666426-f658-4c2e-baf5-f58a1cb91cbb',10941,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10938,-1,10942,10941,0,'10938','10938',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('99ac6122-5e76-4765-a09b-175bd21cc2d8',10947,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10014,10946,-1,10948,10947,0,'10946','10946',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('2819fe0f-46c8-418e-b814-613c9e05db49',10957,10912,10202,10205,' ','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10954,-1,10958,10957,0,'10954','10954',1,0,0,0,10205,' ','2016-11-22 17:54:20','bbcode',NULL),('033a9e5d-f252-4c1c-8e04-5ff0dd315110',10971,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20',10014,10970,-1,10972,10971,0,'10970','10970',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:20','bbcode',NULL),('ab99451d-ab02-4e24-9064-af87a1cfa300',10985,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20',10084,10978,-1,10986,10985,0,'10978','10978',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:20','bbcode',NULL),('e29b39ab-457a-4c07-b9c0-2f3b9670a38d',10991,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,10990,-1,10992,10991,0,'10990','10990',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:21','bbcode',NULL),('0daa5c6e-5f84-4bf6-9bc9-416648355d6b',10996,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,10995,-1,10997,10996,0,'10995','10995',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:21','bbcode',NULL),('476b8f8a-7247-4ded-9e4b-02f6551b114e',11008,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11003,-1,11009,11008,0,'11003','11003',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:21','bbcode',NULL),('e0def183-df1e-457d-b286-9095e46981d5',11014,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,11013,-1,11015,11014,0,'11013','11013',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:21','bbcode',NULL),('8c025da3-4eac-471c-b94e-21c5c724b0b2',11026,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11021,-1,11027,11026,0,'11021','11021',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:21','bbcode',NULL),('96e3f4a0-8b7a-45ba-bcab-6aac1d201c03',11031,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,11030,-1,11032,11031,0,'11030','11030',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:21','bbcode',NULL),('538dcfa8-4d5c-4113-ab54-1a1d1375b82f',11043,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,11042,-1,11044,11043,0,'11042','11042',0,0,0,0,11035,'John Regular','2016-11-22 17:54:21','bbcode',NULL),('37248cd8-1f70-40ed-8efe-c9360356e918',11057,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11050,-1,11058,11057,0,'11050','11050',0,0,0,0,11035,'John Regular','2016-11-22 17:54:21','bbcode',NULL),('502ec3ed-f122-48bc-b217-51add3af466a',11063,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,11062,-1,11064,11063,0,'11062','11062',0,0,0,0,11035,'John Regular','2016-11-22 17:54:21','bbcode',NULL),('a0364522-24da-4084-b5c4-6242607b4f1b',11068,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,11067,-1,11069,11068,0,'11067','11067',0,0,0,0,11035,'John Regular','2016-11-22 17:54:21','bbcode',NULL),('4e3e9863-50cc-415e-94a4-f37585339cb7',11080,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10084,11075,-1,11081,11080,0,'11075','11075',0,0,0,0,11035,'John Regular','2016-11-22 17:54:21','bbcode',NULL),('5d8e0861-7324-4f50-ab21-a7eccf44da2d',11086,11037,10202,11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21',10014,11085,-1,11087,11086,0,'11085','11085',0,0,0,0,11035,'John Regular','2016-11-22 17:54:21','bbcode',NULL),('462d8e00-3180-4ab0-9615-589cdd31296f',11098,11037,10202,11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11093,-1,11099,11098,0,'11093','11093',0,0,0,0,11035,'John Regular','2016-11-22 17:54:22','bbcode',NULL),('18c1fdd6-cb5a-4a15-873f-ca827a86b92e',11103,11037,10202,11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11102,-1,11104,11103,0,'11102','11102',0,0,0,0,11035,'John Regular','2016-11-22 17:54:22','bbcode',NULL),('1aebd1c9-ba45-42ef-b07b-6bc600e60dab',11115,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11114,-1,11116,11115,0,'11114','11114',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('b2d87596-3f12-47e8-918b-10031ef75a58',11129,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11122,-1,11130,11129,0,'11122','11122',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('c21ce722-d12e-4915-9a2c-78e3278889f7',11135,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11134,-1,11136,11135,0,'11134','11134',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('d82dfd97-2a52-4c01-9d32-aeee62375894',11140,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11139,-1,11141,11140,0,'11139','11139',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('38b5eb1d-b02d-4e31-9611-9a46587e791b',11152,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11147,-1,11153,11152,0,'11147','11147',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('10136d6a-63f6-4414-84cf-1f8810c24e0c',11158,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11157,-1,11159,11158,0,'11157','11157',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('d7babfce-1a1f-4976-af02-cd2b508c14e2',11170,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11165,-1,11171,11170,0,'11165','11165',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('ecf54fb2-9a1c-4408-aee2-3105ef27bfa3',11175,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11174,-1,11176,11175,0,'11174','11174',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:22','bbcode',NULL),('36ee7149-b0a1-462c-b666-6b299ee40a74',11187,11181,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22',10014,11186,-1,11188,11187,0,'11186','11186',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:22','bbcode',NULL),('111bd8da-7db1-4232-8485-64a6c469f1ab',11201,11181,10202,11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22',10084,11194,-1,11202,11201,0,'11194','11194',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:22','bbcode',NULL),('86ccc57b-2ab6-48ee-afe8-d024b882e424',11207,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10014,11206,-1,11208,11207,0,'11206','11206',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:23','bbcode',NULL),('625792ab-2b8c-46bb-a03c-346c80f47c77',11212,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10014,11211,-1,11213,11212,0,'11211','11211',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:23','bbcode',NULL),('337fd55a-7c90-47b1-8508-3b870944adf6',11224,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10084,11219,-1,11225,11224,0,'11219','11219',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:23','bbcode',NULL),('c94ed765-5cab-487a-ac08-99d256092e1d',11230,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10014,11229,-1,11231,11230,0,'11229','11229',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:23','bbcode',NULL),('d42b22eb-1f16-489e-b503-f15eacee50e1',11242,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10084,11237,-1,11243,11242,0,'11237','11237',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:23','bbcode',NULL),('8e8eea17-8b84-4e6d-8095-89b24c103624',11247,11181,10202,11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23',10014,11246,-1,11248,11247,0,'11246','11246',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:23','bbcode',NULL),('0d20091f-0d37-427d-a804-381e1183f701',11259,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',10068,11251,-1,11260,11259,0,'11251','11251',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:23','bbcode',NULL),('9001bb56-5e9a-4d88-ac75-eb4de75502c6',11274,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',10068,11266,-1,11275,11274,0,'11266','11266',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:23','bbcode',NULL),('14fc1d9c-2261-4590-a207-095d94f446d9',11286,11037,10202,11035,'John Regular','2016-11-22 17:54:23','2016-11-22 17:54:23',10068,11278,-1,11287,11286,0,'11278','11278',0,0,0,0,11035,'John Regular','2016-11-22 17:54:23','bbcode',NULL),('f4955e6b-39a5-4d4c-9e11-4dfbf5828460',11303,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:23','2016-11-22 17:54:23',10068,11293,-1,11304,11303,0,'11293','11293',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:23','bbcode',NULL),('1ff183d5-6269-40b6-b38b-512d556a8519',11320,10965,10202,10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23',10073,11311,-1,11321,11320,0,'11311','11311',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:23','bbcode',NULL),('d43fe10f-6bb1-4274-a513-248e70a14756',11335,11109,10202,11107,'Michelle Writer','2016-11-22 17:54:24','2016-11-22 17:54:24',10073,11326,-1,11336,11335,0,'11326','11326',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:24','bbcode',NULL),('5538646f-cd10-408d-8ec9-e39688f4e126',11350,11181,10202,11179,'Richard Editor','2016-11-22 17:54:24','2016-11-22 17:54:24',10073,11341,-1,11351,11350,0,'11341','11341',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:24','bbcode',NULL),('f86062d1-85b4-4ca6-8fea-e8ab8d76b241',11356,10587,10202,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',0,0,11354,11357,11356,0,'Nice Forums','All the users in the 7Cogs organization will be able to add threads (messages) to the forums. If you want them to be able to do more things (create categories, delete messages, etc.) you can use the Control Panel: \n\n1. Log in as Bruno Administrator\n2. Go to the Welcome menu\n3. Choose Control Panel\n4. Click Portal --> Roles --> Define Permissions\n\nAll the content in the forums can also be managed from the Control Panel --> Content --> Message Boards\n\nEnjoy!',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:24','bbcode',NULL),('c2a0e4b2-a952-4afc-b441-eea871050c5a',11365,10587,10202,10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24',0,0,11363,11366,11365,0,'About the Vix-998','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean a nisi sed tortor molestie lacinia. Suspendisse sollicitudin adipiscing lacus. Ut nulla quam, iaculis id, mollis eu, gravida nec, lorem. In vel tellus non neque aliquam semper. Praesent gravida. Duis nec pede vitae dui interdum scelerisque. Proin metus nisi, blandit sit amet, mollis vel, sodales id, leo. Sed ut nisl quis est vestibulum commodo. Proin eros arcu, aliquam vitae, gravida at, pharetra eu, leo. Nulla pede lacus, feugiat ut, tincidunt vel, semper in, felis. Cras dictum pulvinar turpis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi aliquet nisl at eros tempus volutpat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin posuere lectus lacinia turpis. Quisque nunc. Aliquam ultrices felis hendrerit tellus.',0,0,0,0,10963,'Bruno Admin','2016-11-22 17:54:24','bbcode',NULL),('a5a1d21d-6b20-41aa-a9d8-b3c803c37cca',11369,10587,10202,11179,'Richard Editor','2016-11-22 17:54:24','2016-11-22 17:54:24',0,0,11363,11366,11365,11365,'RE: About the Vix-998','[quote=Bruno Administrator]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean a nisi sed tortor molestie lacinia. Suspendisse sollicitudin adipiscing lacus. Ut nulla quam, iaculis id, mollis eu, gravida nec, lorem. In vel tellus non neque aliquam semper. Praesent gravida. Duis nec pede vitae dui interdum scelerisque. Proin metus nisi, blandit sit amet, mollis vel, sodales id, leo. Sed ut nisl quis est vestibulum commodo. Proin eros arcu, aliquam vitae, gravida at, pharetra eu, leo. Nulla pede lacus, feugiat ut, tincidunt vel, semper in, felis. Cras dictum pulvinar turpis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi aliquet nisl at eros tempus volutpat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin posuere lectus lacinia turpis. Quisque nunc. Aliquam ultrices felis hendrerit tellus.[/quote]\n\nPlease translate! I don\'t understand Latin.',0,0,0,0,11179,'Richard Editor','2016-11-22 17:54:24','bbcode',NULL),('80e9ad74-07b6-4de7-b624-07e178f2649e',11374,10587,10202,11107,'Michelle Writer','2016-11-22 17:54:24','2016-11-22 17:54:24',0,0,11363,11366,11365,11369,'RE: About the Vix-998','[quote=Rich Publisher]Please translate! I don\'t understand Latin.[/quote]\n\nVos don\'t agnosco Latin? Qualis of vulgo es vos!',0,0,0,0,11107,'Michelle Writer','2016-11-22 17:54:24','bbcode',NULL),('8b39eb27-fceb-44b9-b593-9361b99cfd7b',11396,10241,10202,10239,'Test Test','2016-11-22 17:54:34','2016-11-22 17:54:34',10014,11395,-1,11397,11396,0,'11395','11395',0,0,0,0,10239,'Test Test','2016-11-22 17:54:34','bbcode',NULL),('4b58da4d-3965-44df-9135-1547993adbf7',11401,10241,10202,10239,'Test Test','2016-11-22 17:54:34','2016-11-22 17:54:34',10014,11400,-1,11402,11401,0,'11400','11400',0,0,0,0,10239,'Test Test','2016-11-22 17:54:34','bbcode',NULL),('f5771704-ec4d-4891-bb97-6f5fde5aae10',11414,10227,10202,10239,'Test Test','2016-11-22 17:55:02','2016-11-22 17:55:02',10068,11412,-1,11415,11414,0,'11412','11412',0,0,0,0,10239,'Test Test','2016-11-22 17:55:02','bbcode',NULL),('3cbabc3f-aa7d-4ea0-b616-7650385ab4ee',11423,10227,10202,10239,'Test Test','2016-11-22 17:55:11','2016-11-22 17:55:11',0,0,0,11424,11423,0,'asfa','asdfa',0,0,1,0,10239,'Test Test','2016-11-22 17:55:11','bbcode',NULL),('33594616-45c2-4487-af60-6830ecd4252b',11632,11628,10202,10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50',10014,11631,-1,11633,11632,0,'11631','11631',1,0,0,0,10205,'','2016-11-22 18:01:50','bbcode',0),('c207c6d3-664f-44db-abfc-8f24d194925e',11646,11637,10202,10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51',10014,11645,-1,11647,11646,0,'11645','11645',1,0,0,0,10205,'','2016-11-22 18:01:51','bbcode',0),('e62d0de0-c0c1-44b1-ad82-929321a1d5ce',11652,11637,10202,10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51',10014,11651,-1,11653,11652,0,'11651','11651',1,0,0,0,10205,'','2016-11-22 18:01:51','bbcode',0),('4b07c907-d7f3-40ba-8a6e-161f639c7226',11658,11637,10202,10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51',10014,11657,-1,11659,11658,0,'11657','11657',1,0,0,0,10205,'','2016-11-22 18:01:51','bbcode',0),('7640c4e0-2fd4-4615-9fee-d1c447addbd2',11672,11663,10202,10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51',10014,11671,-1,11673,11672,0,'11671','11671',1,0,0,0,10205,'','2016-11-22 18:01:51','bbcode',0),('982ee3a1-7b9f-45b1-82fa-ddbab0bd4020',11680,11663,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',10014,11679,-1,11681,11680,0,'11679','11679',1,0,0,0,10205,'','2016-11-22 18:01:52','bbcode',0),('59a47b17-1f8c-448e-af01-9b06845e9260',11686,11663,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',10014,11685,-1,11687,11686,0,'11685','11685',1,0,0,0,10205,'','2016-11-22 18:01:52','bbcode',0),('4653aac3-daf9-491b-a966-1ffa995ce69e',11692,11663,10202,10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52',10014,11691,-1,11693,11692,0,'11691','11691',1,0,0,0,10205,'','2016-11-22 18:01:52','bbcode',0),('b6a79ada-b6aa-4808-bf93-55446c8b2326',11923,11910,10202,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21',10014,11921,-1,11924,11923,0,'11921','11921',1,0,0,0,10205,'','2016-11-22 18:05:21','bbcode',0),('2896b44f-f33d-4464-adb3-606a084a675d',11931,11910,10202,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21',10014,11929,-1,11932,11931,0,'11929','11929',1,0,0,0,10205,'','2016-11-22 18:05:21','bbcode',0),('57a4edb8-f602-4d29-b761-b74f282c74e7',11949,11936,10202,10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21',10014,11947,-1,11950,11949,0,'11947','11947',1,0,0,0,10205,'','2016-11-22 18:05:21','bbcode',0),('bdd277dc-ac33-4c81-bafd-51b2ce122a3f',11958,11936,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',10014,11956,-1,11959,11958,0,'11956','11956',1,0,0,0,10205,'','2016-11-22 18:05:22','bbcode',0),('0b953746-fe13-4808-a4cc-233401ea319a',11966,11936,10202,10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22',10014,11964,-1,11967,11966,0,'11964','11964',1,0,0,0,10205,'','2016-11-22 18:05:22','bbcode',0),('97da20e7-6e20-4031-9f71-e17a5b7f0507',12152,12137,10202,10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56',10014,12150,-1,12153,12152,0,'12150','12150',1,0,0,0,10205,'','2016-11-22 18:05:56','bbcode',0),('c6c1b3ab-6c6b-43e0-b735-aa572ffe90e7',12162,12137,10202,10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56',10014,12160,-1,12163,12162,0,'12160','12160',1,0,0,0,10205,'','2016-11-22 18:05:56','bbcode',0),('192a8887-eb2e-4090-aa59-4f58c7ca098b',12169,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',10014,12167,-1,12170,12169,0,'12167','12167',1,0,0,0,10205,'','2016-11-22 18:05:57','bbcode',0),('e48fff83-c359-4a87-9cd5-d73fd20f66cb',12177,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',10014,12175,-1,12178,12177,0,'12175','12175',1,0,0,0,10205,'','2016-11-22 18:05:57','bbcode',0),('b2c69de8-9986-4d3a-83d7-b2f7a07ba93c',12187,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',10014,12185,-1,12188,12187,0,'12185','12185',1,0,0,0,10205,'','2016-11-22 18:05:57','bbcode',0),('70f5333d-61a3-47d0-8059-a0f743fe8cf3',12196,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',10014,12194,-1,12197,12196,0,'12194','12194',1,0,0,0,10205,'','2016-11-22 18:05:57','bbcode',0),('29b0867d-50af-46a0-baeb-981a708eeabc',12204,12137,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',10014,12202,-1,12205,12204,0,'12202','12202',1,0,0,0,10205,'','2016-11-22 18:05:57','bbcode',0),('8a6d5360-7763-45bc-b1dc-86296e3bbd25',12226,12211,10202,10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57',10014,12224,-1,12227,12226,0,'12224','12224',1,0,0,0,10205,'','2016-11-22 18:05:57','bbcode',0),('21916f28-5c8e-4fe7-9acc-7c1987748cd7',12235,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',10014,12233,-1,12236,12235,0,'12233','12233',1,0,0,0,10205,'','2016-11-22 18:05:58','bbcode',0),('a6bc504f-d250-4af7-9501-e9d73a59cc60',12242,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',10014,12240,-1,12243,12242,0,'12240','12240',1,0,0,0,10205,'','2016-11-22 18:05:58','bbcode',0),('e0e1fc85-6b62-41f5-a778-5231b218dddd',12249,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',10014,12247,-1,12250,12249,0,'12247','12247',1,0,0,0,10205,'','2016-11-22 18:05:58','bbcode',0),('89e34ec6-71dc-477b-8016-3873e3f93865',12256,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',10014,12254,-1,12257,12256,0,'12254','12254',1,0,0,0,10205,'','2016-11-22 18:05:58','bbcode',0),('8e3cf4cf-8d06-4c39-ac00-a4fd9dd1e6e8',12263,12211,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',10014,12261,-1,12264,12263,0,'12261','12261',1,0,0,0,10205,'','2016-11-22 18:05:58','bbcode',0),('688e92b7-f5f2-4ebc-842f-e94e447fd21c',12284,12269,10202,10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58',10014,12282,-1,12285,12284,0,'12282','12282',1,0,0,0,10205,'','2016-11-22 18:05:58','bbcode',0),('af543019-c231-4f6e-8b62-6eac77efc32d',12294,12269,10202,10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59',10014,12292,-1,12295,12294,0,'12292','12292',1,0,0,0,10205,'','2016-11-22 18:05:59','bbcode',0),('a3624e9d-5897-4b60-8d0a-ba96b7614c18',12302,12269,10202,10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59',10014,12300,-1,12303,12302,0,'12300','12300',1,0,0,0,10205,'','2016-11-22 18:05:59','bbcode',0); /*!40000 ALTER TABLE `MBMessage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBStatsUser` -- DROP TABLE IF EXISTS `MBStatsUser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBStatsUser` ( `statsUserId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `messageCount` int(11) DEFAULT NULL, `lastPostDate` datetime DEFAULT NULL, PRIMARY KEY (`statsUserId`), UNIQUE KEY `IX_9168E2C9` (`groupId`,`userId`), KEY `IX_A00A898F` (`groupId`), KEY `IX_847F92B5` (`userId`), KEY `IX_D33A5445` (`groupId`,`userId`,`messageCount`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBStatsUser` -- LOCK TABLES `MBStatsUser` WRITE; /*!40000 ALTER TABLE `MBStatsUser` DISABLE KEYS */; INSERT INTO `MBStatsUser` VALUES (11362,10587,10963,2,'2016-11-22 17:54:24'),(11373,10587,11179,1,'2016-11-22 17:54:24'),(11378,10587,11107,1,'2016-11-22 17:54:24'),(11426,10227,10239,1,'2016-11-22 17:55:11'); /*!40000 ALTER TABLE `MBStatsUser` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBThread` -- DROP TABLE IF EXISTS `MBThread`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBThread` ( `threadId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `rootMessageId` bigint(20) DEFAULT NULL, `messageCount` int(11) DEFAULT NULL, `viewCount` int(11) DEFAULT NULL, `lastPostByUserId` bigint(20) DEFAULT NULL, `lastPostDate` datetime DEFAULT NULL, `priority` double DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `rootMessageUserId` bigint(20) DEFAULT NULL, `question` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`threadId`), UNIQUE KEY `IX_3A200B7B` (`uuid_`,`groupId`), KEY `IX_41F6DC8A` (`categoryId`,`priority`), KEY `IX_95C0EA45` (`groupId`), KEY `IX_9A2D11B2` (`groupId`,`categoryId`), KEY `IX_50F1904A` (`groupId`,`categoryId`,`lastPostDate`), KEY `IX_485F7E98` (`groupId`,`categoryId`,`status`), KEY `IX_E1E7142B` (`groupId`,`status`), KEY `IX_AEDD9CB5` (`lastPostDate`,`priority`), KEY `IX_CC993ECB` (`rootMessageId`), KEY `IX_7E264A0F` (`uuid_`), KEY `IX_F8CA2AB9` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBThread` -- LOCK TABLES `MBThread` WRITE; /*!40000 ALTER TABLE `MBThread` DISABLE KEYS */; INSERT INTO `MBThread` VALUES (10224,10219,-1,10223,1,0,0,'2016-11-22 17:54:02',0,0,10205,' ','2016-11-22 17:54:02',10202,10205,NULL,'10a36a19-f3d9-4ea4-adb3-ec11367357d1',10205,'','2016-11-22 17:54:02','2016-11-22 17:54:02'),(10340,10335,-1,10339,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'67d2d68f-3972-488f-a333-92af6c22e14d',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10349,10344,-1,10348,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'1ca57ff1-cd21-42ad-a92b-d933a848c0d6',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10358,10353,-1,10357,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'6c192fd9-b1db-4374-921e-138d68a3d76d',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10372,10362,-1,10371,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'291126f2-4331-45e7-bc0a-ef8e185d10d7',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10377,10362,-1,10376,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'ee5c280d-4e8d-4387-b924-4c00a80d7123',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10382,10362,-1,10381,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'93a4ffe8-f01d-466b-bfc9-d944ffc95968',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10387,10362,-1,10386,1,0,0,'2016-11-22 17:54:05',0,0,10205,' ','2016-11-22 17:54:05',10202,10205,NULL,'1215e4aa-a653-4911-bf83-7e0cf19ecb0a',10205,'','2016-11-22 17:54:05','2016-11-22 17:54:05'),(10401,10391,-1,10400,1,0,0,'2016-11-22 17:54:06',0,0,10205,' ','2016-11-22 17:54:06',10202,10205,NULL,'9af568d1-c91c-4af0-b849-4a91068a9723',10205,'','2016-11-22 17:54:06','2016-11-22 17:54:06'),(10406,10391,-1,10405,1,0,0,'2016-11-22 17:54:06',0,0,10205,' ','2016-11-22 17:54:06',10202,10205,NULL,'80dc53f4-fcc3-4346-998e-c5e9cc4fe001',10205,'','2016-11-22 17:54:06','2016-11-22 17:54:06'),(10412,10391,-1,10411,1,0,0,'2016-11-22 17:54:06',0,0,10205,' ','2016-11-22 17:54:06',10202,10205,NULL,'2169c353-edea-4e7e-abe3-675e8052d378',10205,'','2016-11-22 17:54:06','2016-11-22 17:54:06'),(10417,10391,-1,10416,1,0,0,'2016-11-22 17:54:06',0,0,10205,' ','2016-11-22 17:54:06',10202,10205,NULL,'53abe145-29b4-456f-accc-6aacf787bd24',10205,'','2016-11-22 17:54:06','2016-11-22 17:54:06'),(10522,10227,-1,10521,1,0,0,'2016-11-22 17:54:15',0,0,10205,' ','2016-11-22 17:54:15',10202,10205,NULL,'19624fda-1c38-4eba-93bc-4f670b7c8a96',10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15'),(10536,10227,-1,10535,1,0,0,'2016-11-22 17:54:15',0,0,10205,' ','2016-11-22 17:54:15',10202,10205,NULL,'978baa62-519c-41be-8a83-9537b3a999e4',10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15'),(10549,10227,-1,10548,1,0,0,'2016-11-22 17:54:15',0,0,10205,' ','2016-11-22 17:54:15',10202,10205,NULL,'b2d4f531-e19f-4817-9575-a61ca4020def',10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15'),(10559,10227,-1,10558,1,0,0,'2016-11-22 17:54:15',0,0,10205,' ','2016-11-22 17:54:15',10202,10205,NULL,'2af949ee-e867-48de-ae69-0796c8b440d3',10205,'','2016-11-22 17:54:15','2016-11-22 17:54:15'),(10569,10227,-1,10568,1,0,0,'2016-11-22 17:54:16',0,0,10205,' ','2016-11-22 17:54:16',10202,10205,NULL,'11889dd5-14c8-470c-a45c-2095b2f3e45e',10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16'),(10582,10227,-1,10581,1,0,0,'2016-11-22 17:54:16',0,0,10205,' ','2016-11-22 17:54:16',10202,10205,NULL,'326866a9-00fa-4fd5-9a88-5863e69f82fd',10205,'','2016-11-22 17:54:16','2016-11-22 17:54:16'),(10659,10587,-1,10658,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'b63f5961-eaff-40eb-af72-06a7a15e6508',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10672,10587,-1,10671,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'33717a94-ed56-477d-b158-70fd63108bf6',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10683,10587,-1,10682,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'d5b310aa-5109-46cc-80af-7961add4382d',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10693,10587,-1,10692,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'c5cab15b-5b55-4a12-815b-f54e39fd6387',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10703,10587,-1,10702,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'047fd607-67c8-4bb0-874a-da63f77f13fc',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10715,10587,-1,10714,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'37b09808-d469-4e06-a6ae-589e65ebe2bb',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10727,10587,-1,10726,1,0,0,'2016-11-22 17:54:17',0,0,10205,' ','2016-11-22 17:54:17',10202,10205,NULL,'9712b97c-3202-4701-bbf8-c352717d8cfd',10205,'','2016-11-22 17:54:17','2016-11-22 17:54:17'),(10732,10587,-1,10731,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'320167cd-8d7c-4369-aeef-645253c92fd3',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10744,10587,-1,10743,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'e0cbb6cf-d384-4045-a5d1-3eb6b3f6f937',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10755,10587,-1,10754,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'a48cc3cc-ddab-4cdb-8d36-6494bc90bd5b',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10765,10587,-1,10764,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'c8391c9c-f551-437f-a541-8a293afadc9a',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10775,10587,-1,10774,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'5b4b1859-bce6-477c-8b16-2df085c5b253',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10780,10587,-1,10779,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'2f2d7a69-fcb8-4094-9237-f8a4a179e8f5',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10790,10587,-1,10789,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'7bbf6351-4613-4ce0-b4ac-7d5bb8c0d4a9',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10796,10587,-1,10795,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'a0c289a1-3c9f-4018-b918-f07e303a034c',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10806,10587,-1,10805,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'16613f59-697b-4ffd-918a-ddc482a95bca',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10819,10587,-1,10818,1,0,0,'2016-11-22 17:54:18',0,0,10205,' ','2016-11-22 17:54:18',10202,10205,NULL,'1e959e63-b4f6-4e85-83de-e136fe6c7e84',10205,'','2016-11-22 17:54:18','2016-11-22 17:54:18'),(10828,10587,-1,10827,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'5315a486-6913-44cb-9117-103bf04324ae',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10833,10587,-1,10832,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'8ab53e3a-c902-42fa-989e-8b7834ef4916',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10844,10587,-1,10843,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'b2d5408c-c636-44b6-ae90-73e87862576d',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10850,10587,-1,10849,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'acf396c1-3abf-43bd-b348-a31beb9afb7a',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10860,10587,-1,10859,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'9e647432-5a9b-49dc-8ef1-4ffecf1a9f55',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10870,10587,-1,10869,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'32d27f06-c862-4f81-9e97-08eb9857de47',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10876,10587,-1,10875,1,0,0,'2016-11-22 17:54:19',0,0,10205,' ','2016-11-22 17:54:19',10202,10205,NULL,'fb51e2db-16a5-43fe-bb3a-df5abfa15391',10205,'','2016-11-22 17:54:19','2016-11-22 17:54:19'),(10888,10587,-1,10887,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'d7ef62c5-72c5-467f-9dea-72d8dbb24110',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10894,10587,-1,10893,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'121e806d-115f-4a7c-aa18-1b368e375af4',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10908,10587,-1,10907,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'62faee6e-a922-4783-99cd-1c68b10da3ba',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10932,10912,-1,10931,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'7bc8a234-3848-4281-adc0-52326562fdba',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10942,10912,-1,10941,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'b9cfc5db-f088-4ad7-9ce4-5ea12a7f9185',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10948,10912,-1,10947,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'0dc25c15-892e-4fd3-ac0b-9712bcbfe87b',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10958,10912,-1,10957,1,0,0,'2016-11-22 17:54:20',0,0,10205,' ','2016-11-22 17:54:20',10202,10205,NULL,'f7c37f70-332a-4d03-b1b8-7e8554d42f32',10205,'','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10972,10965,-1,10971,1,0,10963,'2016-11-22 17:54:20',0,0,10963,'Bruno Admin','2016-11-22 17:54:20',10202,10963,NULL,'ae7e4a7c-f6bf-449e-a401-3cb6d541f607',10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10986,10965,-1,10985,1,0,10963,'2016-11-22 17:54:20',0,0,10963,'Bruno Admin','2016-11-22 17:54:20',10202,10963,NULL,'e131f7ac-4003-479d-a0ee-8a0bb1a28971',10963,'Bruno Admin','2016-11-22 17:54:20','2016-11-22 17:54:20'),(10992,10965,-1,10991,1,0,10963,'2016-11-22 17:54:21',0,0,10963,'Bruno Admin','2016-11-22 17:54:21',10202,10963,NULL,'b8b07a28-20e2-448d-8446-fccaca682312',10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21'),(10997,10965,-1,10996,1,0,10963,'2016-11-22 17:54:21',0,0,10963,'Bruno Admin','2016-11-22 17:54:21',10202,10963,NULL,'f86d21d9-eafb-4c16-97eb-722685d5f7e2',10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11009,10965,-1,11008,1,0,10963,'2016-11-22 17:54:21',0,0,10963,'Bruno Admin','2016-11-22 17:54:21',10202,10963,NULL,'d0734baf-9295-452f-842b-6c46dda52f69',10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11015,10965,-1,11014,1,0,10963,'2016-11-22 17:54:21',0,0,10963,'Bruno Admin','2016-11-22 17:54:21',10202,10963,NULL,'7ffb6588-2ce2-489f-b932-181dd3ca0a42',10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11027,10965,-1,11026,1,0,10963,'2016-11-22 17:54:21',0,0,10963,'Bruno Admin','2016-11-22 17:54:21',10202,10963,NULL,'377304a3-6703-4a15-8067-19668c493811',10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11032,10965,-1,11031,1,0,10963,'2016-11-22 17:54:21',0,0,10963,'Bruno Admin','2016-11-22 17:54:21',10202,10963,NULL,'79b4b2d7-d7fa-4ee9-837a-7f7e281dd2bb',10963,'Bruno Admin','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11044,11037,-1,11043,1,0,11035,'2016-11-22 17:54:21',0,0,11035,'John Regular','2016-11-22 17:54:21',10202,11035,NULL,'29913ae7-c8c9-4a09-bdb0-221f59639420',11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11058,11037,-1,11057,1,0,11035,'2016-11-22 17:54:21',0,0,11035,'John Regular','2016-11-22 17:54:21',10202,11035,NULL,'282556e8-11be-4fef-ae03-d3c38c2bfe91',11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11064,11037,-1,11063,1,0,11035,'2016-11-22 17:54:21',0,0,11035,'John Regular','2016-11-22 17:54:21',10202,11035,NULL,'deaf2259-b419-4263-8342-cfdd14075797',11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11069,11037,-1,11068,1,0,11035,'2016-11-22 17:54:21',0,0,11035,'John Regular','2016-11-22 17:54:21',10202,11035,NULL,'c954ece0-4162-4d29-9974-b31b84fd3f89',11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11081,11037,-1,11080,1,0,11035,'2016-11-22 17:54:21',0,0,11035,'John Regular','2016-11-22 17:54:21',10202,11035,NULL,'d1c91795-aaf6-4b29-ab4b-30d910a5330d',11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11087,11037,-1,11086,1,0,11035,'2016-11-22 17:54:21',0,0,11035,'John Regular','2016-11-22 17:54:21',10202,11035,NULL,'d936230c-a1c9-4c00-9119-b66911ae6afc',11035,'John Regular','2016-11-22 17:54:21','2016-11-22 17:54:21'),(11099,11037,-1,11098,1,0,11035,'2016-11-22 17:54:22',0,0,11035,'John Regular','2016-11-22 17:54:22',10202,11035,NULL,'c75d3201-7563-46f1-88d4-9ec7e6822085',11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11104,11037,-1,11103,1,0,11035,'2016-11-22 17:54:22',0,0,11035,'John Regular','2016-11-22 17:54:22',10202,11035,NULL,'51799e39-0d20-406a-b9f2-ca56f3747f8b',11035,'John Regular','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11116,11109,-1,11115,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'5b3946b4-2b83-4ae5-a552-a2a999972923',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11130,11109,-1,11129,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'6bd84383-708e-4e7b-979f-d04700e76143',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11136,11109,-1,11135,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'441c16b2-5917-46bc-8119-aa5f5ccca112',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11141,11109,-1,11140,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'c2087913-c5ed-49f5-aa84-7964e8e6fbe8',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11153,11109,-1,11152,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'5b209200-11d4-4e65-8f00-9896934e6d72',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11159,11109,-1,11158,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'fe191de6-85a4-4a43-9395-553577410f64',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11171,11109,-1,11170,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'b00c3c6d-9679-44e5-9f1d-75e2ef913ef0',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11176,11109,-1,11175,1,0,11107,'2016-11-22 17:54:22',0,0,11107,'Michelle Writer','2016-11-22 17:54:22',10202,11107,NULL,'93194c29-9935-4319-916b-53f59553a5ee',11107,'Michelle Writer','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11188,11181,-1,11187,1,0,11179,'2016-11-22 17:54:22',0,0,11179,'Richard Editor','2016-11-22 17:54:22',10202,11179,NULL,'b445a3c0-dfae-456a-ab32-150799fb33fc',11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11202,11181,-1,11201,1,0,11179,'2016-11-22 17:54:22',0,0,11179,'Richard Editor','2016-11-22 17:54:22',10202,11179,NULL,'0fc2f0d1-226e-4797-ab28-7e098b57d43b',11179,'Richard Editor','2016-11-22 17:54:22','2016-11-22 17:54:22'),(11208,11181,-1,11207,1,0,11179,'2016-11-22 17:54:23',0,0,11179,'Richard Editor','2016-11-22 17:54:23',10202,11179,NULL,'d4acc3c3-b64d-4ad8-93e3-5499d4c9a2d4',11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11213,11181,-1,11212,1,0,11179,'2016-11-22 17:54:23',0,0,11179,'Richard Editor','2016-11-22 17:54:23',10202,11179,NULL,'561e51e0-3529-4314-98b3-bef31d85aa51',11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11225,11181,-1,11224,1,0,11179,'2016-11-22 17:54:23',0,0,11179,'Richard Editor','2016-11-22 17:54:23',10202,11179,NULL,'bd8d37c3-6b3c-46d4-9f17-68a6f30cd2e7',11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11231,11181,-1,11230,1,0,11179,'2016-11-22 17:54:23',0,0,11179,'Richard Editor','2016-11-22 17:54:23',10202,11179,NULL,'efa2826b-893e-4390-93f3-d84ca65b274f',11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11243,11181,-1,11242,1,0,11179,'2016-11-22 17:54:23',0,0,11179,'Richard Editor','2016-11-22 17:54:23',10202,11179,NULL,'0d14464e-59ee-405a-b6d9-4c95409df877',11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11248,11181,-1,11247,1,0,11179,'2016-11-22 17:54:23',0,0,11179,'Richard Editor','2016-11-22 17:54:23',10202,11179,NULL,'1fa86276-62a6-477c-b161-58dbe8733c04',11179,'Richard Editor','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11260,10965,-1,11259,1,0,10963,'2016-11-22 17:54:23',0,0,10963,'Bruno Admin','2016-11-22 17:54:23',10202,10963,NULL,'67a9820e-9cf8-4398-9d2c-c67fa594044a',10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11275,10965,-1,11274,1,0,10963,'2016-11-22 17:54:23',0,0,10963,'Bruno Admin','2016-11-22 17:54:23',10202,10963,NULL,'d804bf59-6c93-48cd-8620-c5b26c5b7fb2',10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11287,11037,-1,11286,1,0,11035,'2016-11-22 17:54:23',0,0,11035,'John Regular','2016-11-22 17:54:23',10202,11035,NULL,'049f81f8-4416-4362-872d-13433c0cb45b',11035,'John Regular','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11304,11109,-1,11303,1,0,11107,'2016-11-22 17:54:23',0,0,11107,'Michelle Writer','2016-11-22 17:54:23',10202,11107,NULL,'23c3a306-4c47-4ea0-ba01-b1a43dd9c143',11107,'Michelle Writer','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11321,10965,-1,11320,1,0,10963,'2016-11-22 17:54:23',0,0,10963,'Bruno Admin','2016-11-22 17:54:23',10202,10963,NULL,'ef58c465-5ca8-48b0-aeb6-feef3741f745',10963,'Bruno Admin','2016-11-22 17:54:23','2016-11-22 17:54:23'),(11336,11109,-1,11335,1,0,11107,'2016-11-22 17:54:24',0,0,11107,'Michelle Writer','2016-11-22 17:54:24',10202,11107,NULL,'3774ebde-8715-4f90-aa99-a11e4d37bb1a',11107,'Michelle Writer','2016-11-22 17:54:24','2016-11-22 17:54:24'),(11351,11181,-1,11350,1,0,11179,'2016-11-22 17:54:24',0,0,11179,'Richard Editor','2016-11-22 17:54:24',10202,11179,NULL,'4540515c-b213-4dee-b497-ce13a2973ca5',11179,'Richard Editor','2016-11-22 17:54:24','2016-11-22 17:54:24'),(11357,10587,11354,11356,1,0,10963,'2016-11-22 17:54:24',0,0,10963,'Bruno Admin','2016-11-22 17:54:24',10202,10963,NULL,'46697c2f-43b8-4990-8026-01d4c2a0ed11',10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24'),(11366,10587,11363,11365,3,0,11107,'2016-11-22 17:54:24',0,0,10963,'Bruno Admin','2016-11-22 17:54:24',10202,10963,NULL,'a5ed9dcc-34fa-4790-87c4-2f6a6cdec910',10963,'Bruno Admin','2016-11-22 17:54:24','2016-11-22 17:54:24'),(11397,10241,-1,11396,1,0,10239,'2016-11-22 17:54:34',0,0,10239,'Test Test','2016-11-22 17:54:34',10202,10239,NULL,'b5e894e3-24c8-48f0-b1a9-08952cad0bb6',10239,'Test Test','2016-11-22 17:54:34','2016-11-22 17:54:34'),(11402,10241,-1,11401,1,0,10239,'2016-11-22 17:54:34',0,0,10239,'Test Test','2016-11-22 17:54:34',10202,10239,NULL,'4d25dbf2-1357-4e72-ba1a-fad929680f72',10239,'Test Test','2016-11-22 17:54:34','2016-11-22 17:54:34'),(11415,10227,-1,11414,1,0,10239,'2016-11-22 17:55:02',0,0,10239,'Test Test','2016-11-22 17:55:02',10202,10239,NULL,'c9444cb1-233a-429c-88b7-5c90c4a0521e',10239,'Test Test','2016-11-22 17:55:02','2016-11-22 17:55:02'),(11424,10227,0,11423,1,0,10239,'2016-11-22 17:55:11',0,0,10239,'Test Test','2016-11-22 17:55:11',10202,10239,NULL,'05fd9ba8-3b48-46aa-a608-c4586b4477d3',10239,'Test Test','2016-11-22 17:55:11','2016-11-22 17:55:11'),(11633,11628,-1,11632,1,0,0,'2016-11-22 18:01:50',0,0,10205,'','2016-11-22 18:01:50',10202,10205,0,'8e397166-6ae6-4c0a-b9d9-98b0723594c2',10205,'','2016-11-22 18:01:50','2016-11-22 18:01:50'),(11647,11637,-1,11646,1,0,0,'2016-11-22 18:01:51',0,0,10205,'','2016-11-22 18:01:51',10202,10205,0,'3dcc7ed2-bd34-4090-bf50-7a77d1606033',10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51'),(11653,11637,-1,11652,1,0,0,'2016-11-22 18:01:51',0,0,10205,'','2016-11-22 18:01:51',10202,10205,0,'40eb7394-1325-4937-8a27-04024d697039',10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51'),(11659,11637,-1,11658,1,0,0,'2016-11-22 18:01:51',0,0,10205,'','2016-11-22 18:01:51',10202,10205,0,'e6e3929b-aa6d-4289-a1a0-d218729520da',10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51'),(11673,11663,-1,11672,1,0,0,'2016-11-22 18:01:51',0,0,10205,'','2016-11-22 18:01:51',10202,10205,0,'7b5aabb6-0164-4013-b51f-135af8789c8d',10205,'','2016-11-22 18:01:51','2016-11-22 18:01:51'),(11681,11663,-1,11680,1,0,0,'2016-11-22 18:01:52',0,0,10205,'','2016-11-22 18:01:52',10202,10205,0,'9aa4b643-d462-4e17-8dd1-456200993b7b',10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52'),(11687,11663,-1,11686,1,0,0,'2016-11-22 18:01:52',0,0,10205,'','2016-11-22 18:01:52',10202,10205,0,'229b036d-3bf2-4d81-8ccf-2b24ce21f3b8',10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52'),(11693,11663,-1,11692,1,0,0,'2016-11-22 18:01:52',0,0,10205,'','2016-11-22 18:01:52',10202,10205,0,'aa24bfc0-7802-4822-ad3f-40d30931a5f5',10205,'','2016-11-22 18:01:52','2016-11-22 18:01:52'),(11924,11910,-1,11923,1,0,0,'2016-11-22 18:05:21',0,0,10205,'','2016-11-22 18:05:21',10202,10205,0,'a9c2ce0b-27ff-49b6-aa1e-2aebf320c8c3',10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21'),(11932,11910,-1,11931,1,0,0,'2016-11-22 18:05:21',0,0,10205,'','2016-11-22 18:05:21',10202,10205,0,'00bc66b4-b2c3-4281-802c-10a181095d40',10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21'),(11950,11936,-1,11949,1,0,0,'2016-11-22 18:05:21',0,0,10205,'','2016-11-22 18:05:21',10202,10205,0,'6c25f3e8-5888-4020-9e2f-7eb49da6e0a2',10205,'','2016-11-22 18:05:21','2016-11-22 18:05:21'),(11959,11936,-1,11958,1,0,0,'2016-11-22 18:05:22',0,0,10205,'','2016-11-22 18:05:22',10202,10205,0,'70d54170-593d-48cf-8e4e-599e9847a4d7',10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22'),(11967,11936,-1,11966,1,0,0,'2016-11-22 18:05:22',0,0,10205,'','2016-11-22 18:05:22',10202,10205,0,'e8090a3e-1347-4ffa-9a99-97a727005701',10205,'','2016-11-22 18:05:22','2016-11-22 18:05:22'),(12153,12137,-1,12152,1,0,0,'2016-11-22 18:05:56',0,0,10205,'','2016-11-22 18:05:56',10202,10205,0,'b7c6cf83-8216-41e2-b104-c1ff824786ee',10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56'),(12163,12137,-1,12162,1,0,0,'2016-11-22 18:05:56',0,0,10205,'','2016-11-22 18:05:56',10202,10205,0,'9305fde9-3b6a-413e-92c7-c94c836dd46a',10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56'),(12170,12137,-1,12169,1,0,0,'2016-11-22 18:05:57',0,0,10205,'','2016-11-22 18:05:57',10202,10205,0,'ae43d8be-814b-4bf1-898f-ce70c48643d2',10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12178,12137,-1,12177,1,0,0,'2016-11-22 18:05:57',0,0,10205,'','2016-11-22 18:05:57',10202,10205,0,'791393ca-90c7-4ed8-8e67-d097767b98c4',10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12188,12137,-1,12187,1,0,0,'2016-11-22 18:05:57',0,0,10205,'','2016-11-22 18:05:57',10202,10205,0,'5c7c98e6-a1a8-4e90-8801-e0715c75583f',10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12197,12137,-1,12196,1,0,0,'2016-11-22 18:05:57',0,0,10205,'','2016-11-22 18:05:57',10202,10205,0,'ba1b9f9b-a79b-4b37-815d-3a6c8da57fd5',10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12205,12137,-1,12204,1,0,0,'2016-11-22 18:05:57',0,0,10205,'','2016-11-22 18:05:57',10202,10205,0,'52ba5cc2-94f1-4442-b862-977db26d8b84',10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12227,12211,-1,12226,1,0,0,'2016-11-22 18:05:57',0,0,10205,'','2016-11-22 18:05:57',10202,10205,0,'d9c38c9e-6508-4bb7-817b-b729a0acbfbd',10205,'','2016-11-22 18:05:57','2016-11-22 18:05:57'),(12236,12211,-1,12235,1,0,0,'2016-11-22 18:05:58',0,0,10205,'','2016-11-22 18:05:58',10202,10205,0,'6be5d56d-0915-44d3-996f-82834414ee3d',10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12243,12211,-1,12242,1,0,0,'2016-11-22 18:05:58',0,0,10205,'','2016-11-22 18:05:58',10202,10205,0,'4ffa7ad9-cd3b-4b70-8711-72df30f12947',10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12250,12211,-1,12249,1,0,0,'2016-11-22 18:05:58',0,0,10205,'','2016-11-22 18:05:58',10202,10205,0,'e61b06ba-65c3-4582-9b44-18ffee23ad2b',10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12257,12211,-1,12256,1,0,0,'2016-11-22 18:05:58',0,0,10205,'','2016-11-22 18:05:58',10202,10205,0,'4f73c21e-bbd1-4e33-9635-b7d1c36bffc2',10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12264,12211,-1,12263,1,0,0,'2016-11-22 18:05:58',0,0,10205,'','2016-11-22 18:05:58',10202,10205,0,'ad98b069-6bc3-4759-957d-014f64ab22fc',10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12285,12269,-1,12284,1,0,0,'2016-11-22 18:05:58',0,0,10205,'','2016-11-22 18:05:58',10202,10205,0,'d4fcb615-4762-4d61-b434-aa551cfb8c8d',10205,'','2016-11-22 18:05:58','2016-11-22 18:05:58'),(12295,12269,-1,12294,1,0,0,'2016-11-22 18:05:59',0,0,10205,'','2016-11-22 18:05:59',10202,10205,0,'24aea6c5-f474-4793-9c07-9c0012c06717',10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59'),(12303,12269,-1,12302,1,0,0,'2016-11-22 18:05:59',0,0,10205,'','2016-11-22 18:05:59',10202,10205,0,'630fa45f-f636-4003-9b21-1be1eb54f635',10205,'','2016-11-22 18:05:59','2016-11-22 18:05:59'); /*!40000 ALTER TABLE `MBThread` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBThreadFlag` -- DROP TABLE IF EXISTS `MBThreadFlag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBThreadFlag` ( `threadFlagId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `threadId` bigint(20) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, PRIMARY KEY (`threadFlagId`), UNIQUE KEY `IX_33781904` (`userId`,`threadId`), UNIQUE KEY `IX_FEB0FC87` (`uuid_`,`groupId`), KEY `IX_8CB0A24A` (`threadId`), KEY `IX_A28004B` (`userId`), KEY `IX_F36BBB83` (`uuid_`), KEY `IX_DCE308C5` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBThreadFlag` -- LOCK TABLES `MBThreadFlag` WRITE; /*!40000 ALTER TABLE `MBThreadFlag` DISABLE KEYS */; /*!40000 ALTER TABLE `MBThreadFlag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRAction` -- DROP TABLE IF EXISTS `MDRAction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRAction` ( `uuid_` varchar(75) DEFAULT NULL, `actionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `ruleGroupInstanceId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `type_` varchar(255) DEFAULT NULL, `typeSettings` longtext, PRIMARY KEY (`actionId`), UNIQUE KEY `IX_75BE36AD` (`uuid_`,`groupId`), KEY `IX_FD90786C` (`ruleGroupInstanceId`), KEY `IX_77BB5E9D` (`uuid_`), KEY `IX_C58A516B` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRAction` -- LOCK TABLES `MDRAction` WRITE; /*!40000 ALTER TABLE `MDRAction` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRAction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRRule` -- DROP TABLE IF EXISTS `MDRRule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRRule` ( `uuid_` varchar(75) DEFAULT NULL, `ruleId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `ruleGroupId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `type_` varchar(255) DEFAULT NULL, `typeSettings` longtext, PRIMARY KEY (`ruleId`), UNIQUE KEY `IX_F3EFDCB3` (`uuid_`,`groupId`), KEY `IX_4F4293F1` (`ruleGroupId`), KEY `IX_EA63B9D7` (`uuid_`), KEY `IX_7DEA8DF1` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRRule` -- LOCK TABLES `MDRRule` WRITE; /*!40000 ALTER TABLE `MDRRule` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRRule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRRuleGroup` -- DROP TABLE IF EXISTS `MDRRuleGroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRRuleGroup` ( `uuid_` varchar(75) DEFAULT NULL, `ruleGroupId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` longtext, `description` longtext, PRIMARY KEY (`ruleGroupId`), UNIQUE KEY `IX_46665CC4` (`uuid_`,`groupId`), KEY `IX_5849891C` (`groupId`), KEY `IX_7F26B2A6` (`uuid_`), KEY `IX_CC14DC2` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRRuleGroup` -- LOCK TABLES `MDRRuleGroup` WRITE; /*!40000 ALTER TABLE `MDRRuleGroup` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRRuleGroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRRuleGroupInstance` -- DROP TABLE IF EXISTS `MDRRuleGroupInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRRuleGroupInstance` ( `uuid_` varchar(75) DEFAULT NULL, `ruleGroupInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `ruleGroupId` bigint(20) DEFAULT NULL, `priority` int(11) DEFAULT NULL, PRIMARY KEY (`ruleGroupInstanceId`), UNIQUE KEY `IX_808A0036` (`classNameId`,`classPK`,`ruleGroupId`), UNIQUE KEY `IX_9CBC6A39` (`uuid_`,`groupId`), KEY `IX_C95A08D8` (`classNameId`,`classPK`), KEY `IX_AFF28547` (`groupId`), KEY `IX_22DAB85C` (`groupId`,`classNameId`,`classPK`), KEY `IX_BF3E642B` (`ruleGroupId`), KEY `IX_B6A6BD91` (`uuid_`), KEY `IX_25C9D1F7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRRuleGroupInstance` -- LOCK TABLES `MDRRuleGroupInstance` WRITE; /*!40000 ALTER TABLE `MDRRuleGroupInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRRuleGroupInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Mail_Account` -- DROP TABLE IF EXISTS `Mail_Account`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Mail_Account` ( `accountId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `address` varchar(75) DEFAULT NULL, `personalName` varchar(75) DEFAULT NULL, `protocol` varchar(75) DEFAULT NULL, `incomingHostName` varchar(75) DEFAULT NULL, `incomingPort` int(11) DEFAULT NULL, `incomingSecure` tinyint(4) DEFAULT NULL, `outgoingHostName` varchar(75) DEFAULT NULL, `outgoingPort` int(11) DEFAULT NULL, `outgoingSecure` tinyint(4) DEFAULT NULL, `login` varchar(75) DEFAULT NULL, `password_` varchar(75) DEFAULT NULL, `savePassword` tinyint(4) DEFAULT NULL, `signature` varchar(75) DEFAULT NULL, `useSignature` tinyint(4) DEFAULT NULL, `folderPrefix` varchar(75) DEFAULT NULL, `inboxFolderId` bigint(20) DEFAULT NULL, `draftFolderId` bigint(20) DEFAULT NULL, `sentFolderId` bigint(20) DEFAULT NULL, `trashFolderId` bigint(20) DEFAULT NULL, `defaultSender` tinyint(4) DEFAULT NULL, PRIMARY KEY (`accountId`), KEY `IX_C4F22765` (`userId`), KEY `IX_6B92F85F` (`userId`,`address`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Mail_Account` -- LOCK TABLES `Mail_Account` WRITE; /*!40000 ALTER TABLE `Mail_Account` DISABLE KEYS */; /*!40000 ALTER TABLE `Mail_Account` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Mail_Attachment` -- DROP TABLE IF EXISTS `Mail_Attachment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Mail_Attachment` ( `attachmentId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `accountId` bigint(20) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `messageId` bigint(20) DEFAULT NULL, `contentPath` varchar(75) DEFAULT NULL, `fileName` varchar(75) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, PRIMARY KEY (`attachmentId`), KEY `IX_F661D061` (`messageId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Mail_Attachment` -- LOCK TABLES `Mail_Attachment` WRITE; /*!40000 ALTER TABLE `Mail_Attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `Mail_Attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Mail_Folder` -- DROP TABLE IF EXISTS `Mail_Folder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Mail_Folder` ( `folderId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `accountId` bigint(20) DEFAULT NULL, `fullName` varchar(75) DEFAULT NULL, `displayName` varchar(75) DEFAULT NULL, `remoteMessageCount` int(11) DEFAULT NULL, PRIMARY KEY (`folderId`), KEY `IX_3841821C` (`accountId`), KEY `IX_310E554A` (`accountId`,`fullName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Mail_Folder` -- LOCK TABLES `Mail_Folder` WRITE; /*!40000 ALTER TABLE `Mail_Folder` DISABLE KEYS */; /*!40000 ALTER TABLE `Mail_Folder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Mail_Message` -- DROP TABLE IF EXISTS `Mail_Message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Mail_Message` ( `messageId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `accountId` bigint(20) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `sender` longtext, `to_` longtext, `cc` longtext, `bcc` longtext, `sentDate` datetime DEFAULT NULL, `subject` longtext, `preview` varchar(75) DEFAULT NULL, `body` longtext, `flags` varchar(75) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `remoteMessageId` bigint(20) DEFAULT NULL, PRIMARY KEY (`messageId`), KEY `IX_163EBD83` (`companyId`), KEY `IX_64F72622` (`folderId`), KEY `IX_200D262A` (`folderId`,`remoteMessageId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Mail_Message` -- LOCK TABLES `Mail_Message` WRITE; /*!40000 ALTER TABLE `Mail_Message` DISABLE KEYS */; /*!40000 ALTER TABLE `Mail_Message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Marketplace_App` -- DROP TABLE IF EXISTS `Marketplace_App`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Marketplace_App` ( `uuid_` varchar(75) DEFAULT NULL, `appId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `remoteAppId` bigint(20) DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `description` longtext, `category` varchar(75) DEFAULT NULL, `iconURL` longtext, `version` varchar(75) DEFAULT NULL, PRIMARY KEY (`appId`), KEY `IX_94A7EF25` (`category`), KEY `IX_865B7BD5` (`companyId`), KEY `IX_20F14D93` (`remoteAppId`), KEY `IX_3E667FE1` (`uuid_`), KEY `IX_A7807DA7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Marketplace_App` -- LOCK TABLES `Marketplace_App` WRITE; /*!40000 ALTER TABLE `Marketplace_App` DISABLE KEYS */; /*!40000 ALTER TABLE `Marketplace_App` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Marketplace_Module` -- DROP TABLE IF EXISTS `Marketplace_Module`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Marketplace_Module` ( `uuid_` varchar(75) DEFAULT NULL, `moduleId` bigint(20) NOT NULL, `appId` bigint(20) DEFAULT NULL, `bundleSymbolicName` varchar(500) DEFAULT NULL, `bundleVersion` varchar(75) DEFAULT NULL, `contextName` varchar(75) DEFAULT NULL, PRIMARY KEY (`moduleId`), KEY `IX_7DC16D26` (`appId`), KEY `IX_5848F52D` (`appId`,`bundleSymbolicName`,`bundleVersion`), KEY `IX_C6938724` (`appId`,`contextName`), KEY `IX_DD03D499` (`bundleSymbolicName`), KEY `IX_F2F1E964` (`contextName`), KEY `IX_A7EFD80E` (`uuid_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Marketplace_Module` -- LOCK TABLES `Marketplace_Module` WRITE; /*!40000 ALTER TABLE `Marketplace_Module` DISABLE KEYS */; /*!40000 ALTER TABLE `Marketplace_Module` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MembershipRequest` -- DROP TABLE IF EXISTS `MembershipRequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MembershipRequest` ( `membershipRequestId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `comments` longtext, `replyComments` longtext, `replyDate` datetime DEFAULT NULL, `replierUserId` bigint(20) DEFAULT NULL, `statusId` int(11) DEFAULT NULL, PRIMARY KEY (`membershipRequestId`), KEY `IX_8A1CC4B` (`groupId`), KEY `IX_C28C72EC` (`groupId`,`statusId`), KEY `IX_66D70879` (`userId`), KEY `IX_35AA8FA6` (`groupId`,`userId`,`statusId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MembershipRequest` -- LOCK TABLES `MembershipRequest` WRITE; /*!40000 ALTER TABLE `MembershipRequest` DISABLE KEYS */; /*!40000 ALTER TABLE `MembershipRequest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MicroblogsEntry` -- DROP TABLE IF EXISTS `MicroblogsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MicroblogsEntry` ( `microblogsEntryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `content` longtext, `type_` int(11) DEFAULT NULL, `receiverUserId` bigint(20) DEFAULT NULL, `receiverMicroblogsEntryId` bigint(20) DEFAULT NULL, `socialRelationType` int(11) DEFAULT NULL, PRIMARY KEY (`microblogsEntryId`), KEY `IX_837C013D` (`companyId`), KEY `IX_36CA3D37` (`type_`,`receiverMicroblogsEntryId`), KEY `IX_7ABB0AB3` (`type_`,`receiverUserId`), KEY `IX_6C297B45` (`userId`), KEY `IX_92BA6F0` (`userId`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MicroblogsEntry` -- LOCK TABLES `MicroblogsEntry` WRITE; /*!40000 ALTER TABLE `MicroblogsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `MicroblogsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Notifications_UserNotificationEvent` -- DROP TABLE IF EXISTS `Notifications_UserNotificationEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Notifications_UserNotificationEvent` ( `notificationEventId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userNotificationEventId` bigint(20) DEFAULT NULL, `timestamp` bigint(20) DEFAULT NULL, `delivered` tinyint(4) DEFAULT NULL, `actionRequired` tinyint(4) DEFAULT NULL, `archived` tinyint(4) DEFAULT NULL, PRIMARY KEY (`notificationEventId`), UNIQUE KEY `IX_DC9FCEDC` (`userNotificationEventId`), KEY `IX_93C52776` (`userId`,`actionRequired`), KEY `IX_36E5AE4C` (`userId`,`actionRequired`,`archived`), KEY `IX_73C065F0` (`userId`,`delivered`,`actionRequired`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Notifications_UserNotificationEvent` -- LOCK TABLES `Notifications_UserNotificationEvent` WRITE; /*!40000 ALTER TABLE `Notifications_UserNotificationEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `Notifications_UserNotificationEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OpenSocial_Gadget` -- DROP TABLE IF EXISTS `OpenSocial_Gadget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OpenSocial_Gadget` ( `uuid_` varchar(75) DEFAULT NULL, `gadgetId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `url` longtext, `portletCategoryNames` longtext, PRIMARY KEY (`gadgetId`), KEY `IX_729869EE` (`companyId`), KEY `IX_E1F8627A` (`uuid_`), KEY `IX_3C79316E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OpenSocial_Gadget` -- LOCK TABLES `OpenSocial_Gadget` WRITE; /*!40000 ALTER TABLE `OpenSocial_Gadget` DISABLE KEYS */; /*!40000 ALTER TABLE `OpenSocial_Gadget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OpenSocial_OAuthConsumer` -- DROP TABLE IF EXISTS `OpenSocial_OAuthConsumer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OpenSocial_OAuthConsumer` ( `oAuthConsumerId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `gadgetKey` varchar(75) DEFAULT NULL, `serviceName` varchar(75) DEFAULT NULL, `consumerKey` varchar(75) DEFAULT NULL, `consumerSecret` longtext, `keyType` varchar(75) DEFAULT NULL, PRIMARY KEY (`oAuthConsumerId`), KEY `IX_47206618` (`gadgetKey`), KEY `IX_8E715BF8` (`gadgetKey`,`serviceName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OpenSocial_OAuthConsumer` -- LOCK TABLES `OpenSocial_OAuthConsumer` WRITE; /*!40000 ALTER TABLE `OpenSocial_OAuthConsumer` DISABLE KEYS */; /*!40000 ALTER TABLE `OpenSocial_OAuthConsumer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OpenSocial_OAuthToken` -- DROP TABLE IF EXISTS `OpenSocial_OAuthToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OpenSocial_OAuthToken` ( `oAuthTokenId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `gadgetKey` varchar(75) DEFAULT NULL, `serviceName` varchar(75) DEFAULT NULL, `moduleId` bigint(20) DEFAULT NULL, `accessToken` varchar(75) DEFAULT NULL, `tokenName` varchar(75) DEFAULT NULL, `tokenSecret` varchar(75) DEFAULT NULL, `sessionHandle` varchar(75) DEFAULT NULL, `expiration` bigint(20) DEFAULT NULL, PRIMARY KEY (`oAuthTokenId`), KEY `IX_6C8CCC3D` (`gadgetKey`,`serviceName`), KEY `IX_CDD35402` (`userId`,`gadgetKey`,`serviceName`,`moduleId`,`tokenName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OpenSocial_OAuthToken` -- LOCK TABLES `OpenSocial_OAuthToken` WRITE; /*!40000 ALTER TABLE `OpenSocial_OAuthToken` DISABLE KEYS */; /*!40000 ALTER TABLE `OpenSocial_OAuthToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OrgGroupRole` -- DROP TABLE IF EXISTS `OrgGroupRole`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OrgGroupRole` ( `organizationId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, PRIMARY KEY (`organizationId`,`groupId`,`roleId`), KEY `IX_4A527DD3` (`groupId`), KEY `IX_AB044D1C` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OrgGroupRole` -- LOCK TABLES `OrgGroupRole` WRITE; /*!40000 ALTER TABLE `OrgGroupRole` DISABLE KEYS */; /*!40000 ALTER TABLE `OrgGroupRole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OrgLabor` -- DROP TABLE IF EXISTS `OrgLabor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OrgLabor` ( `orgLaborId` bigint(20) NOT NULL, `organizationId` bigint(20) DEFAULT NULL, `typeId` int(11) DEFAULT NULL, `sunOpen` int(11) DEFAULT NULL, `sunClose` int(11) DEFAULT NULL, `monOpen` int(11) DEFAULT NULL, `monClose` int(11) DEFAULT NULL, `tueOpen` int(11) DEFAULT NULL, `tueClose` int(11) DEFAULT NULL, `wedOpen` int(11) DEFAULT NULL, `wedClose` int(11) DEFAULT NULL, `thuOpen` int(11) DEFAULT NULL, `thuClose` int(11) DEFAULT NULL, `friOpen` int(11) DEFAULT NULL, `friClose` int(11) DEFAULT NULL, `satOpen` int(11) DEFAULT NULL, `satClose` int(11) DEFAULT NULL, PRIMARY KEY (`orgLaborId`), KEY `IX_6AF0D434` (`organizationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OrgLabor` -- LOCK TABLES `OrgLabor` WRITE; /*!40000 ALTER TABLE `OrgLabor` DISABLE KEYS */; /*!40000 ALTER TABLE `OrgLabor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Organization_` -- DROP TABLE IF EXISTS `Organization_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Organization_` ( `organizationId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `parentOrganizationId` bigint(20) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `recursable` tinyint(4) DEFAULT NULL, `regionId` bigint(20) DEFAULT NULL, `countryId` bigint(20) DEFAULT NULL, `statusId` int(11) DEFAULT NULL, `comments` longtext, `treePath` longtext, `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`organizationId`), UNIQUE KEY `IX_E301BDF5` (`companyId`,`name`), KEY `IX_834BCEB6` (`companyId`), KEY `IX_418E4522` (`companyId`,`parentOrganizationId`), KEY `IX_396D6B42` (`uuid_`), KEY `IX_A9D85BA6` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Organization_` -- LOCK TABLES `Organization_` WRITE; /*!40000 ALTER TABLE `Organization_` DISABLE KEYS */; INSERT INTO `Organization_` VALUES (10586,10202,0,'7Cogs, Inc.','regular-organization',1,0,0,12017,'','/10586/','0fecaa4c-e5ff-403d-a8ec-c872a3788eba',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10911,10202,10586,'7Cogs, Inc. Mobile','regular-organization',1,0,0,12017,'','/10586/10911/','343fb8dc-18ec-45da-9e27-de144aa29c63',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'); /*!40000 ALTER TABLE `Organization_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PM_UserThread` -- DROP TABLE IF EXISTS `PM_UserThread`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PM_UserThread` ( `userThreadId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `mbThreadId` bigint(20) DEFAULT NULL, `topMBMessageId` bigint(20) DEFAULT NULL, `read_` tinyint(4) DEFAULT NULL, `deleted` tinyint(4) DEFAULT NULL, PRIMARY KEY (`userThreadId`), KEY `IX_A821854B` (`mbThreadId`), KEY `IX_3084E97` (`userId`), KEY `IX_434EE852` (`userId`,`deleted`), KEY `IX_466F2985` (`userId`,`mbThreadId`), KEY `IX_A16EF3C7` (`userId`,`read_`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PM_UserThread` -- LOCK TABLES `PM_UserThread` WRITE; /*!40000 ALTER TABLE `PM_UserThread` DISABLE KEYS */; /*!40000 ALTER TABLE `PM_UserThread` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PasswordPolicy` -- DROP TABLE IF EXISTS `PasswordPolicy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PasswordPolicy` ( `passwordPolicyId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `defaultPolicy` tinyint(4) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `changeable` tinyint(4) DEFAULT NULL, `changeRequired` tinyint(4) DEFAULT NULL, `minAge` bigint(20) DEFAULT NULL, `checkSyntax` tinyint(4) DEFAULT NULL, `allowDictionaryWords` tinyint(4) DEFAULT NULL, `minAlphanumeric` int(11) DEFAULT NULL, `minLength` int(11) DEFAULT NULL, `minLowerCase` int(11) DEFAULT NULL, `minNumbers` int(11) DEFAULT NULL, `minSymbols` int(11) DEFAULT NULL, `minUpperCase` int(11) DEFAULT NULL, `history` tinyint(4) DEFAULT NULL, `historyCount` int(11) DEFAULT NULL, `expireable` tinyint(4) DEFAULT NULL, `maxAge` bigint(20) DEFAULT NULL, `warningTime` bigint(20) DEFAULT NULL, `graceLimit` int(11) DEFAULT NULL, `lockout` tinyint(4) DEFAULT NULL, `maxFailure` int(11) DEFAULT NULL, `lockoutDuration` bigint(20) DEFAULT NULL, `requireUnlock` tinyint(4) DEFAULT NULL, `resetFailureCount` bigint(20) DEFAULT NULL, `resetTicketMaxAge` bigint(20) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `regex` varchar(75) DEFAULT NULL, PRIMARY KEY (`passwordPolicyId`), UNIQUE KEY `IX_3FBFA9F4` (`companyId`,`name`), KEY `IX_2C1142E` (`companyId`,`defaultPolicy`), KEY `IX_8FEE65F5` (`companyId`), KEY `IX_51437A01` (`uuid_`), KEY `IX_E4D7EF87` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PasswordPolicy` -- LOCK TABLES `PasswordPolicy` WRITE; /*!40000 ALTER TABLE `PasswordPolicy` DISABLE KEYS */; INSERT INTO `PasswordPolicy` VALUES (10238,10202,10205,' ','2016-11-22 17:54:02','2016-11-22 17:54:02',1,'Default Password Policy','Default Password Policy',1,0,0,0,1,0,6,0,1,0,1,0,6,0,8640000,86400,0,0,3,0,1,600,86400,'f2380f1a-19bb-4796-b95d-109415b5989a',NULL); /*!40000 ALTER TABLE `PasswordPolicy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PasswordPolicyRel` -- DROP TABLE IF EXISTS `PasswordPolicyRel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PasswordPolicyRel` ( `passwordPolicyRelId` bigint(20) NOT NULL, `passwordPolicyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, PRIMARY KEY (`passwordPolicyRelId`), UNIQUE KEY `IX_C3A17327` (`classNameId`,`classPK`), KEY `IX_CD25266E` (`passwordPolicyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PasswordPolicyRel` -- LOCK TABLES `PasswordPolicyRel` WRITE; /*!40000 ALTER TABLE `PasswordPolicyRel` DISABLE KEYS */; /*!40000 ALTER TABLE `PasswordPolicyRel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PasswordTracker` -- DROP TABLE IF EXISTS `PasswordTracker`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PasswordTracker` ( `passwordTrackerId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `password_` varchar(75) DEFAULT NULL, PRIMARY KEY (`passwordTrackerId`), KEY `IX_326F75BD` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PasswordTracker` -- LOCK TABLES `PasswordTracker` WRITE; /*!40000 ALTER TABLE `PasswordTracker` DISABLE KEYS */; /*!40000 ALTER TABLE `PasswordTracker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Phone` -- DROP TABLE IF EXISTS `Phone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Phone` ( `phoneId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `number_` varchar(75) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `typeId` int(11) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, PRIMARY KEY (`phoneId`), KEY `IX_9F704A14` (`companyId`), KEY `IX_A2E4AFBA` (`companyId`,`classNameId`), KEY `IX_9A53569` (`companyId`,`classNameId`,`classPK`), KEY `IX_812CE07A` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_F202B9CE` (`userId`), KEY `IX_EA6245A0` (`uuid_`), KEY `IX_B271FA88` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Phone` -- LOCK TABLES `Phone` WRITE; /*!40000 ALTER TABLE `Phone` DISABLE KEYS */; /*!40000 ALTER TABLE `Phone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PluginSetting` -- DROP TABLE IF EXISTS `PluginSetting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PluginSetting` ( `pluginSettingId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `pluginId` varchar(75) DEFAULT NULL, `pluginType` varchar(75) DEFAULT NULL, `roles` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`pluginSettingId`), UNIQUE KEY `IX_7171B2E8` (`companyId`,`pluginId`,`pluginType`), KEY `IX_B9746445` (`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PluginSetting` -- LOCK TABLES `PluginSetting` WRITE; /*!40000 ALTER TABLE `PluginSetting` DISABLE KEYS */; /*!40000 ALTER TABLE `PluginSetting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PollsChoice` -- DROP TABLE IF EXISTS `PollsChoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PollsChoice` ( `uuid_` varchar(75) DEFAULT NULL, `choiceId` bigint(20) NOT NULL, `questionId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`choiceId`), UNIQUE KEY `IX_D76DD2CF` (`questionId`,`name`), UNIQUE KEY `IX_C222BD31` (`uuid_`,`groupId`), KEY `IX_EC370F10` (`questionId`), KEY `IX_6660B399` (`uuid_`), KEY `IX_8AE746EF` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PollsChoice` -- LOCK TABLES `PollsChoice` WRITE; /*!40000 ALTER TABLE `PollsChoice` DISABLE KEYS */; /*!40000 ALTER TABLE `PollsChoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PollsQuestion` -- DROP TABLE IF EXISTS `PollsQuestion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PollsQuestion` ( `uuid_` varchar(75) DEFAULT NULL, `questionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `title` longtext, `description` longtext, `expirationDate` datetime DEFAULT NULL, `lastVoteDate` datetime DEFAULT NULL, PRIMARY KEY (`questionId`), UNIQUE KEY `IX_F3C9F36` (`uuid_`,`groupId`), KEY `IX_9FF342EA` (`groupId`), KEY `IX_51F087F4` (`uuid_`), KEY `IX_F910BBB4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PollsQuestion` -- LOCK TABLES `PollsQuestion` WRITE; /*!40000 ALTER TABLE `PollsQuestion` DISABLE KEYS */; /*!40000 ALTER TABLE `PollsQuestion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PollsVote` -- DROP TABLE IF EXISTS `PollsVote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PollsVote` ( `voteId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `questionId` bigint(20) DEFAULT NULL, `choiceId` bigint(20) DEFAULT NULL, `voteDate` datetime DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, PRIMARY KEY (`voteId`), UNIQUE KEY `IX_1BBFD4D3` (`questionId`,`userId`), UNIQUE KEY `IX_A88C673A` (`uuid_`,`groupId`), KEY `IX_D5DF7B54` (`choiceId`), KEY `IX_12112599` (`questionId`), KEY `IX_FD32EB70` (`uuid_`), KEY `IX_7D8E92B8` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PollsVote` -- LOCK TABLES `PollsVote` WRITE; /*!40000 ALTER TABLE `PollsVote` DISABLE KEYS */; /*!40000 ALTER TABLE `PollsVote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PortalPreferences` -- DROP TABLE IF EXISTS `PortalPreferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PortalPreferences` ( `portalPreferencesId` bigint(20) NOT NULL, `ownerId` bigint(20) DEFAULT NULL, `ownerType` int(11) DEFAULT NULL, `preferences` longtext, PRIMARY KEY (`portalPreferencesId`), KEY `IX_D1F795F1` (`ownerId`,`ownerType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PortalPreferences` -- LOCK TABLES `PortalPreferences` WRITE; /*!40000 ALTER TABLE `PortalPreferences` DISABLE KEYS */; INSERT INTO `PortalPreferences` VALUES (11521,0,1,'\n\n'),(11552,10202,1,'\n\n'),(11553,10205,4,'\n\n'),(11554,10239,4,'com.liferay.portal.util.SessionClicks#panel-manage-site_administration.contentopencom.liferay.portal.util.SessionClicks#panel-manage-site_administration.pagesclosedcom.liferay.portal.util.SessionClicks#p_authI3pTtgCU'); /*!40000 ALTER TABLE `PortalPreferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Portlet` -- DROP TABLE IF EXISTS `Portlet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Portlet` ( `id_` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `roles` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`id_`), UNIQUE KEY `IX_12B5E51D` (`companyId`,`portletId`), KEY `IX_80CC9508` (`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Portlet` -- LOCK TABLES `Portlet` WRITE; /*!40000 ALTER TABLE `Portlet` DISABLE KEYS */; INSERT INTO `Portlet` VALUES (10245,10202,'98','',0),(10246,10202,'66','',1),(10247,10202,'27','',1),(10248,10202,'152','',1),(10249,10202,'134','',1),(10250,10202,'130','',1),(10251,10202,'122','',1),(10252,10202,'36','',1),(10253,10202,'26','',1),(10254,10202,'104','',1),(10255,10202,'153','',1),(10256,10202,'64','',1),(10257,10202,'129','',1),(10258,10202,'100','',1),(10259,10202,'19','',1),(10260,10202,'157','',1),(10261,10202,'128','',1),(10262,10202,'154','',1),(10263,10202,'148','',1),(10264,10202,'11','',1),(10265,10202,'29','',1),(10266,10202,'158','',1),(10267,10202,'1_WAR_calendarportlet','',1),(10268,10202,'58','',1),(10269,10202,'155','',1),(10270,10202,'71','',1),(10271,10202,'97','',1),(10272,10202,'39','',1),(10273,10202,'85','',1),(10274,10202,'118','',1),(10275,10202,'79','',1),(10276,10202,'107','',1),(10277,10202,'30','',1),(10278,10202,'147','',1),(10279,10202,'48','',1),(10280,10202,'125','',1),(10281,10202,'146','',1),(10282,10202,'62','',0),(10283,10202,'159','',1),(10284,10202,'108','',1),(10285,10202,'84','',1),(10286,10202,'101','',1),(10287,10202,'121','',1),(10288,10202,'37','',1),(10289,10202,'143','',1),(10290,10202,'77','',1),(10291,10202,'115','',1),(10292,10202,'56','',1),(10293,10202,'16','',1),(10294,10202,'111','',1),(10295,10202,'3','',1),(10296,10202,'23','',1),(10297,10202,'20','',1),(10298,10202,'83','',1),(10299,10202,'99','',1),(10300,10202,'70','',1),(10301,10202,'141','',1),(10302,10202,'9','',1),(10303,10202,'28','',1),(10304,10202,'137','',1),(10305,10202,'47','',1),(10306,10202,'15','',1),(10307,10202,'116','',1),(10308,10202,'82','',1),(10309,10202,'151','',1),(10310,10202,'54','',1),(10311,10202,'132','',1),(10312,10202,'34','',1),(10313,10202,'61','',1),(10314,10202,'73','',1),(10315,10202,'31','',1),(10316,10202,'136','',1),(10317,10202,'50','',1),(10318,10202,'127','',1),(10319,10202,'25','',1),(10320,10202,'33','',1),(10321,10202,'150','',1),(10322,10202,'126','',1),(10323,10202,'114','',1),(10324,10202,'149','',1),(10325,10202,'67','',1),(10326,10202,'110','',1),(10327,10202,'59','',1),(10328,10202,'135','',1),(10329,10202,'131','',1),(10330,10202,'102','',1),(10420,10202,'1_WAR_googlemapsportlet','',1),(10466,10202,'1_WAR_mailportlet','',1),(10467,10202,'2_WAR_mailportlet','',1),(10470,10202,'1_WAR_opensocialportlet','',1),(10478,10202,'6_WAR_socialnetworkingportlet','',1),(10479,10202,'1_WAR_socialnetworkingportlet','',1),(10480,10202,'3_WAR_socialnetworkingportlet','',1),(10481,10202,'7_WAR_socialnetworkingportlet','',1),(10482,10202,'8_WAR_socialnetworkingportlet','',1),(10483,10202,'4_WAR_socialnetworkingportlet','',1),(10484,10202,'2_WAR_socialnetworkingportlet','',1),(10485,10202,'5_WAR_socialnetworkingportlet','',1),(10486,10202,'1_WAR_webformportlet','',1),(11390,10202,'1_WAR_wsrpportlet','',1),(11601,10202,'161','',1),(11602,10202,'162','',1),(11603,10202,'164','',1),(11604,10202,'166','',1),(11605,10202,'167','',1),(11606,10202,'169','',1),(11607,10202,'173','',0),(11608,10202,'175','',1),(11609,10202,'176','',1),(11610,10202,'177','',1),(11611,10202,'178','',1),(11612,10202,'179','',1),(11613,10202,'180','',1),(11614,10202,'181','',1),(11899,10202,'193','',1),(11900,10202,'194','',1),(11901,10202,'182','',1),(11902,10202,'183','',1),(11903,10202,'184','',1),(11904,10202,'186','',1),(11905,10202,'187','',1),(11906,10202,'188','',1),(11995,10202,'1_WAR_eventsdisplayportlet','',1),(12003,10202,'1_WAR_microblogsportlet','',1),(12004,10202,'2_WAR_microblogsportlet','',1),(12008,10202,'1_WAR_notificationsportlet','',1),(12012,10202,'2_WAR_opensocialportlet','',1),(12013,10202,'3_WAR_opensocialportlet','',1),(12014,10202,'4_WAR_opensocialportlet','',1),(12019,10202,'1_WAR_privatemessagingportlet','',1),(12020,10202,'1_WAR_soannouncementsportlet','',1),(12025,10202,'2_WAR_soportlet','',1),(12026,10202,'1_WAR_soportlet','',1),(12030,10202,'2_WAR_contactsportlet','',1),(12031,10202,'4_WAR_contactsportlet','',1),(12032,10202,'1_WAR_contactsportlet','',1),(12033,10202,'3_WAR_contactsportlet','',1),(12070,10202,'2_WAR_tasksportlet','',1),(12071,10202,'1_WAR_tasksportlet','',1),(12129,10202,'1_WAR_wysiwygportlet','',1); /*!40000 ALTER TABLE `Portlet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PortletItem` -- DROP TABLE IF EXISTS `PortletItem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PortletItem` ( `portletItemId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, PRIMARY KEY (`portletItemId`), KEY `IX_96BDD537` (`groupId`,`classNameId`), KEY `IX_D699243F` (`groupId`,`name`,`portletId`,`classNameId`), KEY `IX_2C61314E` (`groupId`,`portletId`), KEY `IX_E922D6C0` (`groupId`,`portletId`,`classNameId`), KEY `IX_8E71167F` (`groupId`,`portletId`,`classNameId`,`name`), KEY `IX_33B8CE8D` (`groupId`,`portletId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PortletItem` -- LOCK TABLES `PortletItem` WRITE; /*!40000 ALTER TABLE `PortletItem` DISABLE KEYS */; /*!40000 ALTER TABLE `PortletItem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PortletPreferences` -- DROP TABLE IF EXISTS `PortletPreferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PortletPreferences` ( `portletPreferencesId` bigint(20) NOT NULL, `ownerId` bigint(20) DEFAULT NULL, `ownerType` int(11) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `preferences` longtext, PRIMARY KEY (`portletPreferencesId`), UNIQUE KEY `IX_C7057FF7` (`ownerId`,`ownerType`,`plid`,`portletId`), KEY `IX_E4F13E6E` (`ownerId`,`ownerType`,`plid`), KEY `IX_F15C1C4F` (`plid`), KEY `IX_D340DB76` (`plid`,`portletId`), KEY `IX_D5EDA3A1` (`ownerType`,`plid`,`portletId`), KEY `IX_8E6DA3A1` (`portletId`), KEY `IX_C9A3FCE2` (`ownerId`,`ownerType`,`portletId`), KEY `IX_A3B2A80C` (`ownerType`,`portletId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PortletPreferences` -- LOCK TABLES `PortletPreferences` WRITE; /*!40000 ALTER TABLE `PortletPreferences` DISABLE KEYS */; INSERT INTO `PortletPreferences` VALUES (10409,0,3,10404,'101_INSTANCE_n3iP','portletSetupUseCustomTitletrueclassTypeIds11501anyClassTypeDLFileEntryAssetRendererFactory11501portletSetupTitle_en_USUpcoming EventsclassNameIds11989anyAssetTypefalse'),(10525,0,3,10520,'56_INSTANCE_zJ2y','groupId10227articleId10526portletSetupShowBordersfalse'),(10539,10227,2,0,'15',''),(10540,0,3,10520,'56_INSTANCE_0BsX','groupId10227articleId10541portletSetupShowBordersfalse'),(10552,0,3,10520,'56_INSTANCE_y2Bw','groupId10227articleId10553portletSetupShowBordersfalse'),(10562,0,3,10520,'56_INSTANCE_Ea40','groupId10227articleId10563portletSetupShowBordersfalse'),(10585,0,3,10520,'56_INSTANCE_5Czb','portletSetupUseCustomTitletrueportletSetupTitle_en_USCurrent UsersportletSetupTitleCurrent UsersgroupId10227articleId10572'),(10662,0,3,10657,'56_INSTANCE_Pa2s','groupId10587articleId10663portletSetupShowBordersfalse'),(10675,10587,2,0,'15',''),(10676,0,3,10657,'56_INSTANCE_nJq4','groupId10587articleId10677portletSetupShowBordersfalse'),(10686,0,3,10657,'56_INSTANCE_y2Dg','groupId10587articleId10687portletSetupShowBordersfalse'),(10696,0,3,10657,'56_INSTANCE_dZ7S','groupId10587articleId10697portletSetupShowBordersfalse'),(10706,0,3,10657,'56_INSTANCE_P7wi','groupId10587articleId10707portletSetupShowBordersfalse'),(10718,0,3,10657,'56_INSTANCE_v2EB','groupId10587articleId10719portletSetupShowBordersfalse'),(10735,0,3,10730,'56_INSTANCE_7Fob','groupId10587articleId10736portletSetupShowBordersfalse'),(10747,0,3,10730,'56_INSTANCE_pZg0','groupId10587articleId10748portletSetupShowBordersfalse'),(10758,0,3,10730,'56_INSTANCE_MZ7u','groupId10587articleId10759portletSetupShowBordersfalse'),(10768,0,3,10730,'56_INSTANCE_i8wB','groupId10587articleId10769portletSetupShowBordersfalse'),(10783,0,3,10778,'56_INSTANCE_6tPK','groupId10587articleId10784portletSetupShowBordersfalse'),(10793,0,3,10778,'115','portletSetupTitleBlogs'),(10799,0,3,10794,'56_INSTANCE_G9dU','groupId10587articleId10800portletSetupShowBordersfalse'),(10809,0,3,10794,'36','portletSetupShowBordersfalse'),(10822,10587,2,0,'36',''),(10836,0,3,10831,'56_INSTANCE_Zsq5','groupId10587articleId10837portletSetupShowBordersfalse'),(10847,0,3,10831,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksYoungling=0Padawan=25Jedi Knight=100Jedi Master=250Jedi Council Member=500Yoda=1000Moderator=site-role:Message Boards AdministratorModerator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=user-group:Message Boards AdministratorportletSetupShowBordersfalse'),(10853,0,3,10848,'56_INSTANCE_GC9w','groupId10587articleId10854portletSetupShowBordersfalse'),(10863,0,3,10848,'56_INSTANCE_wy0V','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId10587articleId10864portletSetupShowBordersfalse'),(10873,0,3,10848,'1_WAR_googlemapsportlet_INSTANCE_YrY9','map-addressLos Angeles, USAheight300'),(10879,0,3,10874,'56_INSTANCE_Y5Sr','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId10587articleId10880portletSetupShowBordersfalse'),(10891,0,3,10874,'116','portlet-setup-titleLast Activities in 7Cogs Organization'),(10897,0,3,10892,'56_INSTANCE_0uJ9','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId10587articleId10898portletSetupShowBordersfalse'),(10935,0,3,10930,'56_INSTANCE_7Fgi','groupId10912articleId10936portletSetupShowBordersfalse'),(10945,10912,2,0,'15',''),(10951,0,3,10946,'56_INSTANCE_Wb4N','groupId10912articleId10952portletSetupShowBordersfalse'),(10975,0,3,10970,'56_INSTANCE_42wQ','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId10965articleId10976portletSetupShowBordersfalse'),(10989,10965,2,0,'15',''),(11000,0,3,10995,'56_INSTANCE_8f1N','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId10965articleId11001portletSetupShowBordersfalse'),(11012,0,3,10995,'48_INSTANCE_IX5t','formMethodpostsrchttp://m.digg.comauthfalseheightNormal400portletSetupShowBordersfalseuserNamepasswordhiddenVariablesvar1=hello;var2=worldauthTypebasic'),(11018,0,3,11013,'56_INSTANCE_kBu5','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId10965articleId11019portletSetupShowBordersfalse'),(11047,0,3,11042,'56_INSTANCE_g5Gu','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11037articleId11048portletSetupShowBordersfalse'),(11061,11037,2,0,'15',''),(11072,0,3,11067,'56_INSTANCE_gbD0','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11037articleId11073portletSetupShowBordersfalse'),(11084,0,3,11067,'48_INSTANCE_r7mR','formMethodpostsrchttp://m.digg.comauthfalseheightNormal400portletSetupShowBordersfalseuserNamepasswordhiddenVariablesvar1=hello;var2=worldauthTypebasic'),(11090,0,3,11085,'56_INSTANCE_H6m6','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11037articleId11091portletSetupShowBordersfalse'),(11119,0,3,11114,'56_INSTANCE_Kqb9','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11109articleId11120portletSetupShowBordersfalse'),(11133,11109,2,0,'15',''),(11144,0,3,11139,'56_INSTANCE_O5ju','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11109articleId11145portletSetupShowBordersfalse'),(11156,0,3,11139,'48_INSTANCE_l1rO','formMethodpostsrchttp://m.digg.comauthfalseheightNormal400portletSetupShowBordersfalseuserNamepasswordhiddenVariablesvar1=hello;var2=worldauthTypebasic'),(11162,0,3,11157,'56_INSTANCE_Dm72','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11109articleId11163portletSetupShowBordersfalse'),(11191,0,3,11186,'56_INSTANCE_kJ3K','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11181articleId11192portletSetupShowBordersfalse'),(11205,11181,2,0,'15',''),(11216,0,3,11211,'56_INSTANCE_64Rn','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11181articleId11217portletSetupShowBordersfalse'),(11228,0,3,11211,'48_INSTANCE_zCQ2','formMethodpostsrchttp://m.linkedin.comauthfalseheightNormal350portletSetupShowBordersfalseuserNamepasswordhiddenVariablesvar1=hello;var2=worldauthTypebasic'),(11234,0,3,11229,'56_INSTANCE_8vmR','portletSetupCss{"wapData":{"title":"","initialWindowState":"NORMAL"},"textData":{"textAlign":"","color":"","fontWeight":"","fontStyle":"","textDecoration":"","fontSize":"","wordSpacing":"","lineHeight":"","letterSpacing":"","fontFamily":""},"borderData":{"borderColor":{"right":"","top":"#FAF05F","sameForAll":true,"left":"","bottom":""},"borderWidth":{"right":{"value":"","unit":"px"},"top":{"value":1,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"borderStyle":{"right":"","top":"solid","sameForAll":true,"left":"","bottom":""}},"advancedData":{"customCSS":""},"spacingData":{"padding":{"right":{"value":"","unit":"px"},"top":{"value":10,"unit":"px"},"sameForAll":true,"left":{"value":"","unit":"px"},"bottom":{"value":"","unit":"px"}},"margin":{"right":{"value":0,"unit":"px"},"top":{"value":0,"unit":"px"},"sameForAll":false,"left":{"value":0,"unit":"px"},"bottom":{"value":10,"unit":"px"}}},"bgData":{"backgroundRepeat":"","useBgImage":false,"backgroundPosition":{"top":{"value":"","unit":"px"},"left":{"value":"","unit":"px"}},"backgroundImage":"","backgroundColor":"#FDFCDC"}}[$NEW_LINE$]groupId11181articleId11235portletSetupShowBordersfalse'),(11264,0,3,10990,'33',''),(11265,10965,2,0,'33',''),(11291,0,3,11062,'33',''),(11292,11037,2,0,'33',''),(11308,0,3,11134,'33',''),(11309,11109,2,0,'33',''),(11392,0,3,10520,'58',''),(11411,0,3,10222,'33',''),(11422,0,3,10222,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksYoungling=0Padawan=25Jedi Knight=100Jedi Master=250Jedi Council Member=500Yoda=1000Moderator=site-role:Message Boards AdministratorModerator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=user-group:Message Boards Administrator'),(11428,0,3,10520,'33',''),(11429,0,3,10520,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksYoungling=0Padawan=25Jedi Knight=100Jedi Master=250Jedi Council Member=500Yoda=1000Moderator=site-role:Message Boards AdministratorModerator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=user-group:Message Boards Administrator'),(11555,10219,2,0,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksYoungling=0Padawan=25Jedi Knight=100Jedi Master=250Jedi Council Member=500Yoda=1000Moderator=site-role:Message Boards AdministratorModerator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=user-group:Message Boards Administrator'),(11556,10219,2,0,'33',''),(11557,10227,2,0,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksYoungling=0Padawan=25Jedi Knight=100Jedi Master=250Jedi Council Member=500Yoda=1000Moderator=site-role:Message Boards AdministratorModerator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=user-group:Message Boards Administrator'),(11558,10227,2,0,'33',''),(11559,10587,2,0,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksYoungling=0Padawan=25Jedi Knight=100Jedi Master=250Jedi Council Member=500Yoda=1000Moderator=site-role:Message Boards AdministratorModerator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=user-group:Message Boards AdministratorportletSetupShowBordersfalse'),(11650,0,3,11645,'3',''),(11656,0,3,11651,'101_INSTANCE_ksMY8OBKuRAh','portletSetupUseCustomTitletrueportletSetupTitle_en_USUpcoming EventsclassNameIds11989anyAssetTypefalse'),(11676,0,3,11671,'3',''),(11677,0,3,11671,'82','displayStyle3'),(11678,0,3,11671,'101_INSTANCE_TeKytA9G4V5o','portletSetupUseCustomTitletrueportletSetupTitle_en_USRecent Content'),(11684,0,3,11679,'20','portletSetupShowBordersfalse'),(11690,0,3,11685,'101_INSTANCE_evqfsFp1wjx6','portletSetupUseCustomTitletrueportletSetupTitle_en_USUpcoming EventsclassNameIds11989anyAssetTypefalse'),(11696,0,3,11691,'39_INSTANCE_TwLfv3JnMae9','portletSetupUseCustomTitletrueurlshttp://partners.userland.com/nytRss/technology.xmlportletSetupTitle_en_USTechnology newsexpandedEntriesPerFeed3items-per-channel2'),(11697,0,3,11691,'39_INSTANCE_0eHduU29wFyy','portletSetupUseCustomTitletrueexpandedEntriesPerFeed0titlesLiferay Press Releasesurlshttp://www.liferay.com/en/about-us/news/-/blogs/rssportletSetupTitle_en_USLiferay newsitems-per-channel2'),(11712,0,3,10222,'173','\n \n assetVocabularyId\n -1\n \n \n displayStyle\n title-list\n \n '),(11927,0,3,11921,'3','portletSetupShowBordersfalse'),(11928,0,3,11921,'101_INSTANCE_MldHrawWABdj','portletSetupUseCustomTitletrueportletSetupTitle_en_USUpcoming EventsanyAssetTypefalse'),(11953,0,3,11947,'3','portletSetupShowBordersfalse'),(11954,0,3,11947,'82','displayStyle3'),(11955,0,3,11947,'101_INSTANCE_fDNTh6IUZRTs','portletSetupUseCustomTitletrueportletSetupTitle_en_USRecent Content'),(11962,0,3,11956,'20','portletSetupShowBordersfalse'),(11963,0,3,11956,'101_INSTANCE_KIcYTPYU5NR0','portletSetupUseCustomTitletrueportletSetupTitle_en_USUpcoming EventsanyAssetTypefalse'),(11970,0,3,11964,'39_INSTANCE_QnKfKFBPLW6C','portletSetupUseCustomTitletrueurlshttp://partners.userland.com/nytRss/technology.xmlportletSetupTitle_en_USTechnology newsentriesPerFeed4expandedEntriesPerFeed3'),(11971,0,3,11964,'39_INSTANCE_zjfCC2EpNoGg','portletSetupUseCustomTitletrueurlshttp://www.liferay.com/en/about-us/news/-/blogs/rssportletSetupTitle_en_USLiferay newsentriesPerFeed4expandedEntriesPerFeed0titlesLiferay Press Releases'),(12156,0,3,12150,'1_WAR_soannouncementsportlet','portletSetupTitle_gl_ESAvisosportletSetupTitle_bg_BGСъобщенияportletSetupTitle_fa_IRاطلاعیه‌هاportletSetupTitle_et_EETeadaandedportletSetupTitle_fr_CAAnnoncesportletSetupTitle_iw_ILהודעותportletSetupTitle_lt_LTAnnouncementsportletSetupTitle_sl_SINajaveportletSetupTitle_cs_CZOznámeníportletSetupTitle_ja_JPお知らせportletSetupTitle_en_AUAnnouncementsportletSetupTitle_fi_FITiedotteetportletSetupTitle_hr_HRNajaveportletSetupTitle_ro_ROAnunțuriportletSetupTitle_lo_LAປະກາດportletSetupTitle_tr_TRDuyurularportletSetupTitle_pt_PTAnúnciosportletSetupTitle_pl_PLKomunikatyportletSetupTitle_eu_ESJakinarazpenakportletSetupTitle_uk_UAОб'явиportletSetupTitle_vi_VNCác thông báoportletSetupTitle_en_GBAnnouncementsportletSetupTitle_hu_HUBejelentésekportletSetupTitle_nb_NOAnnonseringportletSetupTitle_fr_FRAnnoncesportletSetupTitle_in_IDPengumumanportletSetupUseCustomTitletrueportletSetupTitle_sr_RS_latinObaveštenjaportletSetupTitle_sv_SEVarningar och notiserportletSetupTitle_nl_BEBerichtenportletSetupTitle_nl_NLBerichtenportletSetupTitle_zh_CN公告portletSetupTitle_ca_ESAnuncisportletSetupTitle_pt_BRAnúnciosportletSetupTitle_hi_INघोषणाएँportletSetupTitle_el_GRΑνακοινώσειςportletSetupTitle_ca_ADAnuncisportletSetupTitle_zh_TW公告portletSetupTitle_ko_KR공고portletSetupTitle_it_ITAnnunciportletSetupTitle_ru_RUОбъявленияportletSetupTitle_sr_RSОбавештењаportletSetupTitle_en_USAnnouncementsportletSetupTitle_es_ESAvisosportletSetupTitle_da_DKMeddelelserportletSetupTitle_sk_SKOznámeniaportletSetupTitle_de_DEAnkündigungenportletSetupTitle_ar_SAإعلانات'),(12157,0,3,12150,'1_WAR_wysiwygportlet_INSTANCE_abcd','portletSetupTitle_gl_ESBenvidoportletSetupTitle_bg_BGДобре дошлиportletSetupTitle_fa_IRخوش آمديدportletSetupTitle_et_EETere tulemastportletSetupTitle_fr_CABienvenueportletSetupTitle_iw_ILברוך הבאportletSetupTitle_lt_LTWelcomeportletSetupTitle_sl_SIDobrodošli.portletSetupTitle_cs_CZVítejteportletSetupTitle_ja_JPようこそportletSetupTitle_en_AUWelcomeportletSetupTitle_fi_FITervetuloaportletSetupTitle_hr_HRDobro došliportletSetupTitle_ro_ROBine ai venitportletSetupTitle_lo_LAຍິນດີຕ້ອນຮັບportletSetupTitle_tr_TRHoşgeldinizportletSetupTitle_pt_PTBoa vindaportletSetupTitle_pl_PLWitajportletSetupTitle_eu_ESOngi etorriportletSetupTitle_uk_UAРаді вітати васportletSetupTitle_vi_VNChào mừngportletSetupTitle_en_GBWelcomeportletSetupTitle_hu_HUÜdvözletportletSetupTitle_nb_NOVelkommenportletSetupTitle_fr_FRBienvenueportletSetupTitle_in_IDSelamat datangportletSetupUseCustomTitletrueportletSetupTitle_sr_RS_latinDobrodošliportletSetupTitle_sv_SEVälkommenportletSetupTitle_nl_BEWelkomportletSetupTitle_nl_NLWelkomportletSetupTitle_zh_CN欢迎portletSetupTitle_ca_ESBenvingudaportletSetupTitle_pt_BRBem vindoportletSetupTitle_hi_INवेलकमportletSetupTitle_el_GRΚαλωσορίσατεportletSetupTitle_ca_ADBenvingudaportletSetupTitle_zh_TW歡迎portletSetupTitle_ko_KR환영portletSetupTitle_it_ITBenvenutoportletSetupTitle_ru_RUДобро пожаловатьportletSetupTitle_sr_RSДобродошлиportletSetupTitle_en_USWelcomeportletSetupTitle_es_ESBienvenidoportletSetupTitle_da_DKVelkommenportletSetupTitle_sk_SKVitajteportletSetupTitle_de_DEWillkommenportletSetupTitle_ar_SAمرحبا'),(12158,0,3,12150,'1_WAR_eventsdisplayportlet','portletSetupTitle_gl_ESEventosportletSetupTitle_bg_BGСъбитияportletSetupTitle_fa_IRرويدادهاportletSetupTitle_et_EESündmusedportletSetupTitle_fr_CAÉvénementsportletSetupTitle_iw_ILאירועיםportletSetupTitle_lt_LTEventsportletSetupTitle_sl_SIDogodkiportletSetupTitle_cs_CZUdálostiportletSetupTitle_ja_JPイベントportletSetupTitle_en_AUEventsportletSetupTitle_fi_FITapahtumatportletSetupTitle_hr_HRDogađajiportletSetupTitle_ro_ROEvenimenteportletSetupTitle_lo_LAກິດຈະກຳຕ່າງໆportletSetupTitle_tr_TROlaylarportletSetupTitle_pt_PTEventosportletSetupTitle_pl_PLZdarzeniaportletSetupTitle_eu_ESGertakariakportletSetupTitle_uk_UAПодіїportletSetupTitle_vi_VNCác sự kiệnportletSetupTitle_en_GBEventsportletSetupTitle_hu_HUEseményekportletSetupTitle_nb_NOHendelserportletSetupTitle_fr_FRÉvénementsportletSetupTitle_in_IDAcaraportletSetupUseCustomTitletrueportletSetupTitle_sr_RS_latinDogađajiportletSetupTitle_sv_SEHändelserportletSetupTitle_nl_BEGebeurtenissenportletSetupTitle_nl_NLGebeurtenissenportletSetupTitle_zh_CN事件portletSetupTitle_ca_ESEsdevenimentsportletSetupTitle_pt_BREventosportletSetupTitle_hi_INघटनायेportletSetupTitle_el_GRΓεγονόταportletSetupTitle_ca_ADEsdevenimentsportletSetupTitle_zh_TW事件portletSetupTitle_ko_KR사건portletSetupTitle_it_ITEventiportletSetupTitle_ru_RUСобытияportletSetupTitle_sr_RSДогађајиportletSetupTitle_en_USEventsportletSetupTitle_es_ESEventosportletSetupTitle_da_DKBegivenhederportletSetupTitle_sk_SKUdalostiportletSetupTitle_de_DEEreignisportletSetupTitle_ar_SAمناسبات'),(12159,0,3,12150,'39_INSTANCE_abcd','showFeedTitlefalseurlshttp://partners.userland.com/nytRss/technology.xmlshowFeedImagefalseentriesPerFeed3expandedEntriesPerFeed0showFeedItemAuthorfalseshowFeedDescriptionfalseshowFeedPublishedDatefalse'),(12166,0,3,12160,'1_WAR_calendarportlet','portletSetupShowBordersfalse'),(12173,0,3,12167,'20','portletSetupShowBordersfalse'),(12174,0,3,12167,'101_INSTANCE_abcd','displayStyletitle-listassetLinkBehaviourviewInPortlet'),(12181,0,3,12175,'73_INSTANCE_TCf1osWaeew1','portletSetupShowBordersfalse'),(12182,0,3,12175,'19','prioritiesUrgent,/message_boards/priority_urgent.png,3.0Sticky,/message_boards/priority_sticky.png,2.0Announcement,/message_boards/priority_announcement.png,1.0ranksBronze=0Silver=25Gold=100Platinum=250Moderator=organization:Message Boards AdministratorModerator=organization-role:Message Boards AdministratorModerator=regular-role:Message Boards AdministratorModerator=site-role:Message Boards AdministratorModerator=user-group:Message Boards AdministratorportletSetupShowBordersfalse'),(12183,0,3,12175,'73','portletSetupShowBordersfalse'),(12184,0,3,12175,'101_INSTANCE_abcd','displayStyletitle-listassetLinkBehaviourviewInPortlet'),(12191,0,3,12185,'33','portletSetupShowBordersfalse'),(12192,0,3,12185,'115','portletSetupTitle_gl_ESRecent BlogsportletSetupTitle_bg_BGRecent BlogsportletSetupTitle_fa_IRRecent BlogsportletSetupTitle_et_EERecent BlogsportletSetupTitle_fr_CARecent BlogsportletSetupTitle_iw_ILRecent BlogsportletSetupTitle_lt_LTRecent BlogsportletSetupTitle_sl_SIRecent BlogsportletSetupTitle_cs_CZRecent BlogsportletSetupTitle_ja_JP最近のブログportletSetupTitle_en_AURecent BlogsportletSetupTitle_fi_FIRecent BlogsportletSetupTitle_hr_HRRecent BlogsportletSetupTitle_ro_RORecent BlogsportletSetupTitle_lo_LARecent BlogsportletSetupTitle_tr_TRRecent BlogsportletSetupTitle_pt_PTBlogs recentesportletSetupTitle_pl_PLRecent BlogsportletSetupTitle_eu_ESRecent BlogsportletSetupTitle_uk_UARecent BlogsportletSetupTitle_vi_VNRecent BlogsportletSetupTitle_en_GBRecent BlogsportletSetupTitle_hu_HURecent BlogsportletSetupTitle_nb_NORecent BlogsportletSetupTitle_fr_FRArticles récentsportletSetupTitle_in_IDRecent BlogsportletSetupUseCustomTitletrueportletSetupTitle_sr_RS_latinRecent BlogsportletSetupTitle_sv_SERecent BlogsportletSetupTitle_nl_BERecente BlogsportletSetupTitle_nl_NLRecente BlogsportletSetupTitle_zh_CN最近博客portletSetupTitle_ca_ESRecent BlogsportletSetupTitle_pt_BRBlogs recentesportletSetupTitle_hi_INहाल के ब्लॉगportletSetupTitle_el_GRΠρόσφατα BlogsportletSetupTitle_ca_ADRecent BlogsportletSetupTitle_zh_TW最近博客enableRssSubscriptionfalseportletSetupTitle_ko_KR최근 블로그portletSetupTitle_it_ITBlog recentiportletSetupTitle_ru_RURecent BlogsportletSetupTitle_sr_RSRecent BlogsportletSetupTitle_en_USRecent BlogsportletSetupTitle_es_ESRecientes BlogsportletSetupTitle_da_DKRecent BlogsportletSetupTitle_sk_SKRecent BlogsportletSetupTitle_de_DERecent BlogsportletSetupTitle_ar_SARecent BlogsselectionMethodscope'),(12193,0,3,12185,'101_INSTANCE_abcd','displayStyletitle-listassetLinkBehaviourviewInPortlet'),(12200,0,3,12194,'36','portletSetupShowBordersfalse'),(12201,0,3,12194,'101_INSTANCE_abcd','displayStyletitle-listassetLinkBehaviourviewInPortlet'),(12208,0,3,12202,'4_WAR_contactsportlet','portletSetupShowBordersfalse'),(12209,0,3,12202,'2_WAR_soportlet','portletSetupShowBordersfalse'),(12230,0,3,12224,'2_WAR_microblogsportlet','portletSetupShowBordersfalse'),(12231,0,3,12224,'1_WAR_soannouncementsportlet','portletSetupTitle_gl_ESAvisosportletSetupTitle_bg_BGСъобщенияportletSetupTitle_fa_IRاطلاعیه‌هاportletSetupTitle_et_EETeadaandedportletSetupTitle_fr_CAAnnoncesportletSetupTitle_iw_ILהודעותportletSetupTitle_lt_LTAnnouncementsportletSetupTitle_sl_SINajaveportletSetupTitle_cs_CZOznámeníportletSetupTitle_ja_JPお知らせportletSetupTitle_en_AUAnnouncementsportletSetupTitle_fi_FITiedotteetportletSetupTitle_hr_HRNajaveportletSetupTitle_ro_ROAnunțuriportletSetupTitle_lo_LAປະກາດportletSetupTitle_tr_TRDuyurularportletSetupTitle_pt_PTAnúnciosportletSetupTitle_pl_PLKomunikatyportletSetupTitle_eu_ESJakinarazpenakportletSetupTitle_uk_UAОб'явиportletSetupTitle_vi_VNCác thông báoportletSetupTitle_en_GBAnnouncementsportletSetupTitle_hu_HUBejelentésekportletSetupTitle_nb_NOAnnonseringportletSetupTitle_fr_FRAnnoncesportletSetupTitle_in_IDPengumumanportletSetupUseCustomTitletrueportletSetupTitle_sr_RS_latinObaveštenjaportletSetupTitle_sv_SEVarningar och notiserportletSetupTitle_nl_BEBerichtenportletSetupTitle_nl_NLBerichtenportletSetupTitle_zh_CN公告portletSetupTitle_ca_ESAnuncisportletSetupTitle_pt_BRAnúnciosportletSetupTitle_hi_INघोषणाएँportletSetupTitle_el_GRΑνακοινώσειςportletSetupTitle_ca_ADAnuncisportletSetupTitle_zh_TW公告portletSetupTitle_ko_KR공고portletSetupTitle_it_ITAnnunciportletSetupTitle_ru_RUОбъявленияportletSetupTitle_sr_RSОбавештењаportletSetupTitle_en_USAnnouncementsportletSetupTitle_es_ESAvisosportletSetupTitle_da_DKMeddelelserportletSetupTitle_sk_SKOznámeniaportletSetupTitle_de_DEAnkündigungenportletSetupTitle_ar_SAإعلانات'),(12232,0,3,12224,'1_WAR_eventsdisplayportlet','portletSetupTitle_gl_ESEventosportletSetupTitle_bg_BGСъбитияportletSetupTitle_fa_IRرويدادهاportletSetupTitle_et_EESündmusedportletSetupTitle_fr_CAÉvénementsportletSetupTitle_iw_ILאירועיםportletSetupTitle_lt_LTEventsportletSetupTitle_sl_SIDogodkiportletSetupTitle_cs_CZUdálostiportletSetupTitle_ja_JPイベントportletSetupTitle_en_AUEventsportletSetupTitle_fi_FITapahtumatportletSetupTitle_hr_HRDogađajiportletSetupTitle_ro_ROEvenimenteportletSetupTitle_lo_LAກິດຈະກຳຕ່າງໆportletSetupTitle_tr_TROlaylarportletSetupTitle_pt_PTEventosportletSetupTitle_pl_PLZdarzeniaportletSetupTitle_eu_ESGertakariakportletSetupTitle_uk_UAПодіїportletSetupTitle_vi_VNCác sự kiệnportletSetupTitle_en_GBEventsportletSetupTitle_hu_HUEseményekportletSetupTitle_nb_NOHendelserportletSetupTitle_fr_FRÉvénementsportletSetupTitle_in_IDAcaraportletSetupUseCustomTitletrueportletSetupTitle_sr_RS_latinDogađajiportletSetupTitle_sv_SEHändelserportletSetupTitle_nl_BEGebeurtenissenportletSetupTitle_nl_NLGebeurtenissenportletSetupTitle_zh_CN事件portletSetupTitle_ca_ESEsdevenimentsportletSetupTitle_pt_BREventosportletSetupTitle_hi_INघटनायेportletSetupTitle_el_GRΓεγονόταportletSetupTitle_ca_ADEsdevenimentsportletSetupTitle_zh_TW事件portletSetupTitle_ko_KR사건portletSetupTitle_it_ITEventiportletSetupTitle_ru_RUСобытияportletSetupTitle_sr_RSДогађајиportletSetupTitle_en_USEventsportletSetupTitle_es_ESEventosportletSetupTitle_da_DKBegivenhederportletSetupTitle_sk_SKUdalostiportletSetupTitle_de_DEEreignisportletSetupTitle_ar_SAمناسبات'),(12239,0,3,12233,'1_WAR_contactsportlet','portletSetupShowBordersfalse'),(12246,0,3,12240,'1_WAR_microblogsportlet','portletSetupShowBordersfalse'),(12253,0,3,12247,'1_WAR_privatemessagingportlet','portletSetupShowBordersfalse'),(12260,0,3,12254,'20','portletSetupShowBordersfalse'),(12267,0,3,12261,'1_WAR_tasksportlet','portletSetupShowBordersfalse'),(12288,0,3,12282,'2_WAR_contactsportlet_INSTANCE_abcd','displayStyle1portletSetupShowBordersfalseshowIconfalse'),(12289,0,3,12282,'2_WAR_microblogsportlet','portletSetupShowBordersfalse'),(12290,0,3,12282,'2_WAR_contactsportlet_INSTANCE_efgh','showSitesfalsedisplayStyle2showCompleteYourProfiletrueportletSetupShowBordersfalseshowRecentActivityfalse'),(12291,0,3,12282,'2_WAR_contactsportlet_INSTANCE_ijkl','showSitestruedisplayStyle2showUsersInformationfalseportletSetupShowBordersfalseshowTagstrueshowRecentActivityfalse'),(12298,0,3,12292,'2_WAR_contactsportlet_INSTANCE_abcd','displayStyle1portletSetupShowBordersfalseshowIconfalse'),(12299,0,3,12292,'1_WAR_contactsportlet','portletSetupShowBordersfalse'),(12306,0,3,12300,'2_WAR_contactsportlet_INSTANCE_abcd','displayStyle1portletSetupShowBordersfalseshowIconfalse'),(12307,0,3,12300,'1_WAR_microblogsportlet','portletSetupShowBordersfalse'),(12314,0,3,10520,'1_WAR_chatportlet',''),(12315,0,3,10520,'8_WAR_soportlet',''),(12317,0,3,10520,'145',''),(12359,0,3,10520,'2_WAR_notificationsportlet',''),(12367,0,3,10222,'1_WAR_soconfigurationsportlet',''),(12388,0,3,10222,'1_WAR_chatportlet',''),(12389,0,3,10222,'8_WAR_soportlet',''),(12390,0,3,10222,'145',''),(12391,0,3,10222,'2_WAR_notificationsportlet',''),(12403,0,3,10222,'190',''),(12404,0,3,10222,'134',''),(12405,0,3,10222,'160',''),(12406,0,3,10222,'156',''),(12407,0,3,10222,'161',''),(12408,0,3,10222,'162',''); /*!40000 ALTER TABLE `PortletPreferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_BLOB_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_BLOB_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_BLOB_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `BLOB_DATA` longblob, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_BLOB_TRIGGERS` -- LOCK TABLES `QUARTZ_BLOB_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_BLOB_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_BLOB_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_CALENDARS` -- DROP TABLE IF EXISTS `QUARTZ_CALENDARS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_CALENDARS` ( `SCHED_NAME` varchar(120) NOT NULL, `CALENDAR_NAME` varchar(200) NOT NULL, `CALENDAR` longblob NOT NULL, PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_CALENDARS` -- LOCK TABLES `QUARTZ_CALENDARS` WRITE; /*!40000 ALTER TABLE `QUARTZ_CALENDARS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_CALENDARS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_CRON_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_CRON_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_CRON_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `CRON_EXPRESSION` varchar(200) NOT NULL, `TIME_ZONE_ID` varchar(80) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_CRON_TRIGGERS` -- LOCK TABLES `QUARTZ_CRON_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_CRON_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_CRON_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_FIRED_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_FIRED_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_FIRED_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `ENTRY_ID` varchar(95) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `INSTANCE_NAME` varchar(200) NOT NULL, `FIRED_TIME` bigint(20) NOT NULL, `PRIORITY` int(11) NOT NULL, `STATE` varchar(16) NOT NULL, `JOB_NAME` varchar(200) DEFAULT NULL, `JOB_GROUP` varchar(200) DEFAULT NULL, `IS_NONCONCURRENT` tinyint(4) DEFAULT NULL, `REQUESTS_RECOVERY` tinyint(4) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`), KEY `IX_BE3835E5` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), KEY `IX_4BD722BM` (`SCHED_NAME`,`TRIGGER_GROUP`), KEY `IX_204D31E8` (`SCHED_NAME`,`INSTANCE_NAME`), KEY `IX_339E078M` (`SCHED_NAME`,`INSTANCE_NAME`,`REQUESTS_RECOVERY`), KEY `IX_5005E3AF` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), KEY `IX_BC2F03B0` (`SCHED_NAME`,`JOB_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_FIRED_TRIGGERS` -- LOCK TABLES `QUARTZ_FIRED_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_FIRED_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_FIRED_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_JOB_DETAILS` -- DROP TABLE IF EXISTS `QUARTZ_JOB_DETAILS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_JOB_DETAILS` ( `SCHED_NAME` varchar(120) NOT NULL, `JOB_NAME` varchar(200) NOT NULL, `JOB_GROUP` varchar(200) NOT NULL, `DESCRIPTION` varchar(250) DEFAULT NULL, `JOB_CLASS_NAME` varchar(250) NOT NULL, `IS_DURABLE` tinyint(4) NOT NULL, `IS_NONCONCURRENT` tinyint(4) NOT NULL, `IS_UPDATE_DATA` tinyint(4) NOT NULL, `REQUESTS_RECOVERY` tinyint(4) NOT NULL, `JOB_DATA` longblob, PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), KEY `IX_88328984` (`SCHED_NAME`,`JOB_GROUP`), KEY `IX_779BCA37` (`SCHED_NAME`,`REQUESTS_RECOVERY`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_JOB_DETAILS` -- LOCK TABLES `QUARTZ_JOB_DETAILS` WRITE; /*!40000 ALTER TABLE `QUARTZ_JOB_DETAILS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_JOB_DETAILS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_LOCKS` -- DROP TABLE IF EXISTS `QUARTZ_LOCKS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_LOCKS` ( `SCHED_NAME` varchar(120) NOT NULL, `LOCK_NAME` varchar(40) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_LOCKS` -- LOCK TABLES `QUARTZ_LOCKS` WRITE; /*!40000 ALTER TABLE `QUARTZ_LOCKS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_LOCKS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_PAUSED_TRIGGER_GRPS` -- DROP TABLE IF EXISTS `QUARTZ_PAUSED_TRIGGER_GRPS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_PAUSED_TRIGGER_GRPS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_PAUSED_TRIGGER_GRPS` -- LOCK TABLES `QUARTZ_PAUSED_TRIGGER_GRPS` WRITE; /*!40000 ALTER TABLE `QUARTZ_PAUSED_TRIGGER_GRPS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_PAUSED_TRIGGER_GRPS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_SCHEDULER_STATE` -- DROP TABLE IF EXISTS `QUARTZ_SCHEDULER_STATE`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_SCHEDULER_STATE` ( `SCHED_NAME` varchar(120) NOT NULL, `INSTANCE_NAME` varchar(200) NOT NULL, `LAST_CHECKIN_TIME` bigint(20) NOT NULL, `CHECKIN_INTERVAL` bigint(20) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_SCHEDULER_STATE` -- LOCK TABLES `QUARTZ_SCHEDULER_STATE` WRITE; /*!40000 ALTER TABLE `QUARTZ_SCHEDULER_STATE` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_SCHEDULER_STATE` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_SIMPLE_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_SIMPLE_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_SIMPLE_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `REPEAT_COUNT` bigint(20) NOT NULL, `REPEAT_INTERVAL` bigint(20) NOT NULL, `TIMES_TRIGGERED` bigint(20) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_SIMPLE_TRIGGERS` -- LOCK TABLES `QUARTZ_SIMPLE_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_SIMPLE_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_SIMPLE_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_SIMPROP_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_SIMPROP_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_SIMPROP_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `STR_PROP_1` varchar(512) DEFAULT NULL, `STR_PROP_2` varchar(512) DEFAULT NULL, `STR_PROP_3` varchar(512) DEFAULT NULL, `INT_PROP_1` int(11) DEFAULT NULL, `INT_PROP_2` int(11) DEFAULT NULL, `LONG_PROP_1` bigint(20) DEFAULT NULL, `LONG_PROP_2` bigint(20) DEFAULT NULL, `DEC_PROP_1` decimal(13,4) DEFAULT NULL, `DEC_PROP_2` decimal(13,4) DEFAULT NULL, `BOOL_PROP_1` tinyint(4) DEFAULT NULL, `BOOL_PROP_2` tinyint(4) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_SIMPROP_TRIGGERS` -- LOCK TABLES `QUARTZ_SIMPROP_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_SIMPROP_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_SIMPROP_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `JOB_NAME` varchar(200) NOT NULL, `JOB_GROUP` varchar(200) NOT NULL, `DESCRIPTION` varchar(250) DEFAULT NULL, `NEXT_FIRE_TIME` bigint(20) DEFAULT NULL, `PREV_FIRE_TIME` bigint(20) DEFAULT NULL, `PRIORITY` int(11) DEFAULT NULL, `TRIGGER_STATE` varchar(16) NOT NULL, `TRIGGER_TYPE` varchar(8) NOT NULL, `START_TIME` bigint(20) NOT NULL, `END_TIME` bigint(20) DEFAULT NULL, `CALENDAR_NAME` varchar(200) DEFAULT NULL, `MISFIRE_INSTR` int(11) DEFAULT NULL, `JOB_DATA` longblob, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), KEY `IX_186442A4` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), KEY `IX_1BA1F9DC` (`SCHED_NAME`,`TRIGGER_GROUP`), KEY `IX_91CA7CCE` (`SCHED_NAME`,`TRIGGER_GROUP`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`,`MISFIRE_INSTR`), KEY `IX_D219AFDE` (`SCHED_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), KEY `IX_A85822A0` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), KEY `IX_8AA50BE1` (`SCHED_NAME`,`JOB_GROUP`), KEY `IX_EEFE382A` (`SCHED_NAME`,`NEXT_FIRE_TIME`), KEY `IX_F026CF4C` (`SCHED_NAME`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`), KEY `IX_F2DD7C7E` (`SCHED_NAME`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`,`MISFIRE_INSTR`), KEY `IX_1F92813C` (`SCHED_NAME`,`NEXT_FIRE_TIME`,`MISFIRE_INSTR`), KEY `IX_99108B6E` (`SCHED_NAME`,`TRIGGER_STATE`), KEY `IX_CD7132D0` (`SCHED_NAME`,`CALENDAR_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_TRIGGERS` -- LOCK TABLES `QUARTZ_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RatingsEntry` -- DROP TABLE IF EXISTS `RatingsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RatingsEntry` ( `entryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `score` double DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_B47E3C11` (`userId`,`classNameId`,`classPK`), KEY `IX_16184D57` (`classNameId`,`classPK`), KEY `IX_A1A8CB8B` (`classNameId`,`classPK`,`score`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RatingsEntry` -- LOCK TABLES `RatingsEntry` WRITE; /*!40000 ALTER TABLE `RatingsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `RatingsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RatingsStats` -- DROP TABLE IF EXISTS `RatingsStats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RatingsStats` ( `statsId` bigint(20) NOT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `totalEntries` int(11) DEFAULT NULL, `totalScore` double DEFAULT NULL, `averageScore` double DEFAULT NULL, PRIMARY KEY (`statsId`), UNIQUE KEY `IX_A6E99284` (`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RatingsStats` -- LOCK TABLES `RatingsStats` WRITE; /*!40000 ALTER TABLE `RatingsStats` DISABLE KEYS */; INSERT INTO `RatingsStats` VALUES (11421,10068,11412,0,0,0),(12318,10084,10528,0,0,0),(12319,10084,10543,0,0,0),(12320,10084,10555,0,0,0),(12321,10084,10565,0,0,0),(12322,10084,10574,0,0,0),(12323,10084,10665,0,0,0),(12324,10084,10679,0,0,0),(12325,10084,10689,0,0,0),(12326,10084,10699,0,0,0),(12327,10084,10709,0,0,0),(12328,10084,10721,0,0,0),(12329,10084,10738,0,0,0),(12330,10084,10750,0,0,0),(12331,10084,10761,0,0,0),(12332,10084,10771,0,0,0),(12333,10084,10786,0,0,0),(12334,10084,10802,0,0,0),(12335,10084,10839,0,0,0),(12336,10084,10856,0,0,0),(12337,10084,10866,0,0,0),(12338,10084,10882,0,0,0),(12339,10084,10900,0,0,0),(12340,10084,10938,0,0,0),(12341,10084,10954,0,0,0),(12342,10084,10978,0,0,0),(12343,10084,11003,0,0,0),(12344,10084,11021,0,0,0),(12345,10084,11050,0,0,0),(12346,10084,11075,0,0,0),(12347,10084,11093,0,0,0),(12348,10084,11122,0,0,0),(12349,10084,11147,0,0,0),(12350,10084,11165,0,0,0),(12351,10084,11194,0,0,0),(12352,10084,11219,0,0,0),(12353,10084,11237,0,0,0),(12354,10095,11356,0,0,0),(12355,10095,11365,0,0,0),(12356,10095,11369,0,0,0),(12357,10095,11374,0,0,0),(12358,10095,11423,0,0,0),(12360,10068,11251,0,0,0),(12361,10068,11266,0,0,0),(12362,10068,11278,0,0,0),(12363,10068,11293,0,0,0),(12364,10129,10812,0,0,0),(12365,10129,10824,0,0,0),(12366,10073,10492,0,0,0),(12368,10073,10496,0,0,0),(12369,10073,10500,0,0,0),(12370,10073,10504,0,0,0),(12371,10073,10508,0,0,0),(12372,10073,10512,0,0,0),(12373,10073,10516,0,0,0),(12374,10073,10603,0,0,0),(12375,10073,10609,0,0,0),(12376,10073,10613,0,0,0),(12377,10073,10617,0,0,0),(12378,10073,10625,0,0,0),(12379,10073,10629,0,0,0),(12380,10073,10635,0,0,0),(12381,10073,10643,0,0,0),(12382,10073,10647,0,0,0),(12383,10073,10653,0,0,0),(12384,10073,10922,0,0,0),(12385,10073,10926,0,0,0),(12386,10073,11311,0,0,0),(12387,10073,11326,0,0,0),(12394,10073,11341,0,0,0),(12395,10077,10491,0,0,0),(12396,10077,10602,0,0,0),(12397,10077,10921,0,0,0),(12398,10077,11310,0,0,0),(12399,10077,11324,0,0,0),(12400,10077,11325,0,0,0),(12401,10077,11339,0,0,0),(12402,10077,11340,0,0,0); /*!40000 ALTER TABLE `RatingsStats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Region` -- DROP TABLE IF EXISTS `Region`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Region` ( `regionId` bigint(20) NOT NULL, `countryId` bigint(20) DEFAULT NULL, `regionCode` varchar(75) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`regionId`), UNIQUE KEY `IX_A2635F5C` (`countryId`,`regionCode`), KEY `IX_2D9A426F` (`active_`), KEY `IX_16D87CA7` (`countryId`), KEY `IX_11FB3E42` (`countryId`,`active_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Region` -- LOCK TABLES `Region` WRITE; /*!40000 ALTER TABLE `Region` DISABLE KEYS */; INSERT INTO `Region` VALUES (1001,1,'AB','Alberta',1),(1002,1,'BC','British Columbia',1),(1003,1,'MB','Manitoba',1),(1004,1,'NB','New Brunswick',1),(1005,1,'NL','Newfoundland and Labrador',1),(1006,1,'NT','Northwest Territories',1),(1007,1,'NS','Nova Scotia',1),(1008,1,'NU','Nunavut',1),(1009,1,'ON','Ontario',1),(1010,1,'PE','Prince Edward Island',1),(1011,1,'QC','Quebec',1),(1012,1,'SK','Saskatchewan',1),(1013,1,'YT','Yukon',1),(3001,3,'A','Alsace',1),(3002,3,'B','Aquitaine',1),(3003,3,'C','Auvergne',1),(3004,3,'P','Basse-Normandie',1),(3005,3,'D','Bourgogne',1),(3006,3,'E','Bretagne',1),(3007,3,'F','Centre',1),(3008,3,'G','Champagne-Ardenne',1),(3009,3,'H','Corse',1),(3010,3,'GF','Guyane',1),(3011,3,'I','Franche Comté',1),(3012,3,'GP','Guadeloupe',1),(3013,3,'Q','Haute-Normandie',1),(3014,3,'J','Île-de-France',1),(3015,3,'K','Languedoc-Roussillon',1),(3016,3,'L','Limousin',1),(3017,3,'M','Lorraine',1),(3018,3,'MQ','Martinique',1),(3019,3,'N','Midi-Pyrénées',1),(3020,3,'O','Nord Pas de Calais',1),(3021,3,'R','Pays de la Loire',1),(3022,3,'S','Picardie',1),(3023,3,'T','Poitou-Charentes',1),(3024,3,'U','Provence-Alpes-Côte-d\'Azur',1),(3025,3,'RE','Réunion',1),(3026,3,'V','Rhône-Alpes',1),(4001,4,'BW','Baden-Württemberg',1),(4002,4,'BY','Bayern',1),(4003,4,'BE','Berlin',1),(4004,4,'BB','Brandenburg',1),(4005,4,'HB','Bremen',1),(4006,4,'HH','Hamburg',1),(4007,4,'HE','Hessen',1),(4008,4,'MV','Mecklenburg-Vorpommern',1),(4009,4,'NI','Niedersachsen',1),(4010,4,'NW','Nordrhein-Westfalen',1),(4011,4,'RP','Rheinland-Pfalz',1),(4012,4,'SL','Saarland',1),(4013,4,'SN','Sachsen',1),(4014,4,'ST','Sachsen-Anhalt',1),(4015,4,'SH','Schleswig-Holstein',1),(4016,4,'TH','Thüringen',1),(8001,8,'AG','Agrigento',1),(8002,8,'AL','Alessandria',1),(8003,8,'AN','Ancona',1),(8004,8,'AO','Aosta',1),(8005,8,'AR','Arezzo',1),(8006,8,'AP','Ascoli Piceno',1),(8007,8,'AT','Asti',1),(8008,8,'AV','Avellino',1),(8009,8,'BA','Bari',1),(8010,8,'BT','Barletta-Andria-Trani',1),(8011,8,'BL','Belluno',1),(8012,8,'BN','Benevento',1),(8013,8,'BG','Bergamo',1),(8014,8,'BI','Biella',1),(8015,8,'BO','Bologna',1),(8016,8,'BZ','Bolzano',1),(8017,8,'BS','Brescia',1),(8018,8,'BR','Brindisi',1),(8019,8,'CA','Cagliari',1),(8020,8,'CL','Caltanissetta',1),(8021,8,'CB','Campobasso',1),(8022,8,'CI','Carbonia-Iglesias',1),(8023,8,'CE','Caserta',1),(8024,8,'CT','Catania',1),(8025,8,'CZ','Catanzaro',1),(8026,8,'CH','Chieti',1),(8027,8,'CO','Como',1),(8028,8,'CS','Cosenza',1),(8029,8,'CR','Cremona',1),(8030,8,'KR','Crotone',1),(8031,8,'CN','Cuneo',1),(8032,8,'EN','Enna',1),(8033,8,'FM','Fermo',1),(8034,8,'FE','Ferrara',1),(8035,8,'FI','Firenze',1),(8036,8,'FG','Foggia',1),(8037,8,'FC','Forli-Cesena',1),(8038,8,'FR','Frosinone',1),(8039,8,'GE','Genova',1),(8040,8,'GO','Gorizia',1),(8041,8,'GR','Grosseto',1),(8042,8,'IM','Imperia',1),(8043,8,'IS','Isernia',1),(8044,8,'AQ','L\'Aquila',1),(8045,8,'SP','La Spezia',1),(8046,8,'LT','Latina',1),(8047,8,'LE','Lecce',1),(8048,8,'LC','Lecco',1),(8049,8,'LI','Livorno',1),(8050,8,'LO','Lodi',1),(8051,8,'LU','Lucca',1),(8052,8,'MC','Macerata',1),(8053,8,'MN','Mantova',1),(8054,8,'MS','Massa-Carrara',1),(8055,8,'MT','Matera',1),(8056,8,'MA','Medio Campidano',1),(8057,8,'ME','Messina',1),(8058,8,'MI','Milano',1),(8059,8,'MO','Modena',1),(8060,8,'MB','Monza e Brianza',1),(8061,8,'NA','Napoli',1),(8062,8,'NO','Novara',1),(8063,8,'NU','Nuoro',1),(8064,8,'OG','Ogliastra',1),(8065,8,'OT','Olbia-Tempio',1),(8066,8,'OR','Oristano',1),(8067,8,'PD','Padova',1),(8068,8,'PA','Palermo',1),(8069,8,'PR','Parma',1),(8070,8,'PV','Pavia',1),(8071,8,'PG','Perugia',1),(8072,8,'PU','Pesaro e Urbino',1),(8073,8,'PE','Pescara',1),(8074,8,'PC','Piacenza',1),(8075,8,'PI','Pisa',1),(8076,8,'PT','Pistoia',1),(8077,8,'PN','Pordenone',1),(8078,8,'PZ','Potenza',1),(8079,8,'PO','Prato',1),(8080,8,'RG','Ragusa',1),(8081,8,'RA','Ravenna',1),(8082,8,'RC','Reggio Calabria',1),(8083,8,'RE','Reggio Emilia',1),(8084,8,'RI','Rieti',1),(8085,8,'RN','Rimini',1),(8086,8,'RM','Roma',1),(8087,8,'RO','Rovigo',1),(8088,8,'SA','Salerno',1),(8089,8,'SS','Sassari',1),(8090,8,'SV','Savona',1),(8091,8,'SI','Siena',1),(8092,8,'SR','Siracusa',1),(8093,8,'SO','Sondrio',1),(8094,8,'TA','Taranto',1),(8095,8,'TE','Teramo',1),(8096,8,'TR','Terni',1),(8097,8,'TO','Torino',1),(8098,8,'TP','Trapani',1),(8099,8,'TN','Trento',1),(8100,8,'TV','Treviso',1),(8101,8,'TS','Trieste',1),(8102,8,'UD','Udine',1),(8103,8,'VA','Varese',1),(8104,8,'VE','Venezia',1),(8105,8,'VB','Verbano-Cusio-Ossola',1),(8106,8,'VC','Vercelli',1),(8107,8,'VR','Verona',1),(8108,8,'VV','Vibo Valentia',1),(8109,8,'VI','Vicenza',1),(8110,8,'VT','Viterbo',1),(15001,15,'AN','Andalusia',1),(15002,15,'AR','Aragon',1),(15003,15,'AS','Asturias',1),(15004,15,'IB','Balearic Islands',1),(15005,15,'PV','Basque Country',1),(15006,15,'CN','Canary Islands',1),(15007,15,'CB','Cantabria',1),(15008,15,'CL','Castile and Leon',1),(15009,15,'CM','Castile-La Mancha',1),(15010,15,'CT','Catalonia',1),(15011,15,'CE','Ceuta',1),(15012,15,'EX','Extremadura',1),(15013,15,'GA','Galicia',1),(15014,15,'LO','La Rioja',1),(15015,15,'M','Madrid',1),(15016,15,'ML','Melilla',1),(15017,15,'MU','Murcia',1),(15018,15,'NA','Navarra',1),(15019,15,'VC','Valencia',1),(19001,19,'AL','Alabama',1),(19002,19,'AK','Alaska',1),(19003,19,'AZ','Arizona',1),(19004,19,'AR','Arkansas',1),(19005,19,'CA','California',1),(19006,19,'CO','Colorado',1),(19007,19,'CT','Connecticut',1),(19008,19,'DC','District of Columbia',1),(19009,19,'DE','Delaware',1),(19010,19,'FL','Florida',1),(19011,19,'GA','Georgia',1),(19012,19,'HI','Hawaii',1),(19013,19,'ID','Idaho',1),(19014,19,'IL','Illinois',1),(19015,19,'IN','Indiana',1),(19016,19,'IA','Iowa',1),(19017,19,'KS','Kansas',1),(19018,19,'KY','Kentucky ',1),(19019,19,'LA','Louisiana ',1),(19020,19,'ME','Maine',1),(19021,19,'MD','Maryland',1),(19022,19,'MA','Massachusetts',1),(19023,19,'MI','Michigan',1),(19024,19,'MN','Minnesota',1),(19025,19,'MS','Mississippi',1),(19026,19,'MO','Missouri',1),(19027,19,'MT','Montana',1),(19028,19,'NE','Nebraska',1),(19029,19,'NV','Nevada',1),(19030,19,'NH','New Hampshire',1),(19031,19,'NJ','New Jersey',1),(19032,19,'NM','New Mexico',1),(19033,19,'NY','New York',1),(19034,19,'NC','North Carolina',1),(19035,19,'ND','North Dakota',1),(19036,19,'OH','Ohio',1),(19037,19,'OK','Oklahoma ',1),(19038,19,'OR','Oregon',1),(19039,19,'PA','Pennsylvania',1),(19040,19,'PR','Puerto Rico',1),(19041,19,'RI','Rhode Island',1),(19042,19,'SC','South Carolina',1),(19043,19,'SD','South Dakota',1),(19044,19,'TN','Tennessee',1),(19045,19,'TX','Texas',1),(19046,19,'UT','Utah',1),(19047,19,'VT','Vermont',1),(19048,19,'VA','Virginia',1),(19049,19,'WA','Washington',1),(19050,19,'WV','West Virginia',1),(19051,19,'WI','Wisconsin',1),(19052,19,'WY','Wyoming',1),(32001,32,'ACT','Australian Capital Territory',1),(32002,32,'NSW','New South Wales',1),(32003,32,'NT','Northern Territory',1),(32004,32,'QLD','Queensland',1),(32005,32,'SA','South Australia',1),(32006,32,'TAS','Tasmania',1),(32007,32,'VIC','Victoria',1),(32008,32,'WA','Western Australia',1),(202001,202,'AG','Aargau',1),(202002,202,'AR','Appenzell Ausserrhoden',1),(202003,202,'AI','Appenzell Innerrhoden',1),(202004,202,'BL','Basel-Landschaft',1),(202005,202,'BS','Basel-Stadt',1),(202006,202,'BE','Bern',1),(202007,202,'FR','Fribourg',1),(202008,202,'GE','Geneva',1),(202009,202,'GL','Glarus',1),(202010,202,'GR','Graubünden',1),(202011,202,'JU','Jura',1),(202012,202,'LU','Lucerne',1),(202013,202,'NE','Neuchâtel',1),(202014,202,'NW','Nidwalden',1),(202015,202,'OW','Obwalden',1),(202016,202,'SH','Schaffhausen',1),(202017,202,'SZ','Schwyz',1),(202018,202,'SO','Solothurn',1),(202019,202,'SG','St. Gallen',1),(202020,202,'TG','Thurgau',1),(202021,202,'TI','Ticino',1),(202022,202,'UR','Uri',1),(202023,202,'VS','Valais',1),(202024,202,'VD','Vaud',1),(202025,202,'ZG','Zug',1),(202026,202,'ZH','Zürich',1); /*!40000 ALTER TABLE `Region` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Release_` -- DROP TABLE IF EXISTS `Release_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Release_` ( `releaseId` bigint(20) NOT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `servletContextName` varchar(75) DEFAULT NULL, `buildNumber` int(11) DEFAULT NULL, `buildDate` datetime DEFAULT NULL, `verified` tinyint(4) DEFAULT NULL, `testString` varchar(1024) DEFAULT NULL, `state_` int(11) DEFAULT NULL, PRIMARY KEY (`releaseId`), UNIQUE KEY `IX_8BD6BCA7` (`servletContextName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Release_` -- LOCK TABLES `Release_` WRITE; /*!40000 ALTER TABLE `Release_` DISABLE KEYS */; INSERT INTO `Release_` VALUES (1,'2016-11-22 18:48:51','2016-11-22 18:05:16','portal',6205,'2016-01-06 00:00:00',1,'You take the blue pill, the story ends, you wake up in your bed and believe whatever you want to believe. You take the red pill, you stay in Wonderland, and I show you how deep the rabbit hole goes.',0),(10487,'2016-11-22 17:54:14','2016-11-22 17:54:24','sevencogs-hook',100,NULL,1,'',NULL),(11709,'2016-11-22 18:01:55','2016-11-22 18:05:29','marketplace-portlet',100,NULL,1,'',0),(11993,'2016-11-22 18:05:31','2016-11-22 18:05:31','calendar-portlet',100,NULL,1,'',0),(12000,'2016-11-22 18:05:36','2016-11-22 18:05:36','kaleo-web',110,NULL,1,'',0),(12007,'2016-11-22 18:05:39','2016-11-22 18:05:39','notifications-portlet',110,NULL,1,'',0),(12018,'2016-11-22 18:05:44','2016-11-22 18:05:44','private-messaging-portlet',101,NULL,1,'',0),(12029,'2016-11-22 18:05:50','2016-11-22 18:05:50','contacts-portlet',200,NULL,1,'',0),(12037,'2016-11-22 18:05:52','2016-11-22 18:05:52','sync-web',101,NULL,1,'',0),(12072,'2016-11-22 18:05:54','2016-11-22 18:05:54','so-activities-hook',101,NULL,1,'',0),(12130,'2016-11-22 18:05:56','2016-11-22 18:05:59','so-hook',300,NULL,1,'',0); /*!40000 ALTER TABLE `Release_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Repository` -- DROP TABLE IF EXISTS `Repository`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Repository` ( `uuid_` varchar(75) DEFAULT NULL, `repositoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `portletId` varchar(200) DEFAULT NULL, `typeSettings` longtext, `dlFolderId` bigint(20) DEFAULT NULL, PRIMARY KEY (`repositoryId`), UNIQUE KEY `IX_11641E26` (`uuid_`,`groupId`), UNIQUE KEY `IX_60C8634C` (`groupId`,`name`,`portletId`), KEY `IX_5253B1FA` (`groupId`), KEY `IX_74C17B04` (`uuid_`), KEY `IX_F543EA4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Repository` -- LOCK TABLES `Repository` WRITE; /*!40000 ALTER TABLE `Repository` DISABLE KEYS */; /*!40000 ALTER TABLE `Repository` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RepositoryEntry` -- DROP TABLE IF EXISTS `RepositoryEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RepositoryEntry` ( `uuid_` varchar(75) DEFAULT NULL, `repositoryEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `mappedId` varchar(75) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `manualCheckInRequired` tinyint(4) DEFAULT NULL, PRIMARY KEY (`repositoryEntryId`), UNIQUE KEY `IX_9BDCF489` (`repositoryId`,`mappedId`), UNIQUE KEY `IX_354AA664` (`uuid_`,`groupId`), KEY `IX_B7034B27` (`repositoryId`), KEY `IX_B9B1506` (`uuid_`), KEY `IX_D3B9AF62` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RepositoryEntry` -- LOCK TABLES `RepositoryEntry` WRITE; /*!40000 ALTER TABLE `RepositoryEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `RepositoryEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceAction` -- DROP TABLE IF EXISTS `ResourceAction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceAction` ( `resourceActionId` bigint(20) NOT NULL, `name` varchar(255) DEFAULT NULL, `actionId` varchar(75) DEFAULT NULL, `bitwiseValue` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceActionId`), UNIQUE KEY `IX_EDB9986E` (`name`,`actionId`), KEY `IX_81F2DB09` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceAction` -- LOCK TABLES `ResourceAction` WRITE; /*!40000 ALTER TABLE `ResourceAction` DISABLE KEYS */; INSERT INTO `ResourceAction` VALUES (1,'98','ACCESS_IN_CONTROL_PANEL',2),(2,'98','ADD_TO_PAGE',4),(3,'98','CONFIGURATION',8),(4,'98','VIEW',1),(5,'com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion','DELETE',2),(6,'com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion','PERMISSIONS',4),(7,'com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion','UPDATE',8),(8,'com.liferay.portlet.softwarecatalog','ADD_FRAMEWORK_VERSION',2),(9,'com.liferay.portlet.softwarecatalog','ADD_PRODUCT_ENTRY',4),(10,'com.liferay.portlet.softwarecatalog','PERMISSIONS',8),(11,'com.liferay.portlet.softwarecatalog.model.SCLicense','DELETE',2),(12,'com.liferay.portlet.softwarecatalog.model.SCLicense','PERMISSIONS',4),(13,'com.liferay.portlet.softwarecatalog.model.SCLicense','UPDATE',8),(14,'com.liferay.portlet.softwarecatalog.model.SCLicense','VIEW',1),(15,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','ADD_DISCUSSION',2),(16,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','DELETE',4),(17,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','DELETE_DISCUSSION',8),(18,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','PERMISSIONS',16),(19,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','UPDATE',32),(20,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','UPDATE_DISCUSSION',64),(21,'com.liferay.portlet.softwarecatalog.model.SCProductEntry','VIEW',1),(22,'66','VIEW',1),(23,'66','ADD_TO_PAGE',2),(24,'66','CONFIGURATION',4),(25,'156','VIEW',1),(26,'156','ADD_TO_PAGE',2),(27,'156','CONFIGURATION',4),(28,'152','ACCESS_IN_CONTROL_PANEL',2),(29,'152','CONFIGURATION',4),(30,'152','VIEW',1),(31,'27','VIEW',1),(32,'27','ADD_TO_PAGE',2),(33,'27','CONFIGURATION',4),(34,'88','VIEW',1),(35,'88','ADD_TO_PAGE',2),(36,'88','CONFIGURATION',4),(37,'87','VIEW',1),(38,'87','ADD_TO_PAGE',2),(39,'87','CONFIGURATION',4),(40,'134','ACCESS_IN_CONTROL_PANEL',2),(41,'134','CONFIGURATION',4),(42,'134','VIEW',1),(43,'com.liferay.portal.model.Layout','ADD_DISCUSSION',2),(44,'com.liferay.portal.model.Layout','DELETE',4),(45,'com.liferay.portal.model.Layout','DELETE_DISCUSSION',8),(46,'com.liferay.portal.model.Layout','UPDATE',16),(47,'com.liferay.portal.model.Layout','UPDATE_DISCUSSION',32),(48,'com.liferay.portal.model.Layout','VIEW',1),(49,'com.liferay.portal.model.Layout','PERMISSIONS',64),(50,'com.liferay.portal.model.LayoutSetPrototype','DELETE',2),(51,'com.liferay.portal.model.LayoutSetPrototype','PERMISSIONS',4),(52,'com.liferay.portal.model.LayoutSetPrototype','UPDATE',8),(53,'com.liferay.portal.model.LayoutSetPrototype','VIEW',1),(54,'com.liferay.portal.model.LayoutPrototype','DELETE',2),(55,'com.liferay.portal.model.LayoutPrototype','PERMISSIONS',4),(56,'com.liferay.portal.model.LayoutPrototype','UPDATE',8),(57,'com.liferay.portal.model.LayoutPrototype','VIEW',1),(58,'com.liferay.portal.model.Team','ASSIGN_MEMBERS',2),(59,'com.liferay.portal.model.Team','DELETE',4),(60,'com.liferay.portal.model.Team','PERMISSIONS',8),(61,'com.liferay.portal.model.Team','UPDATE',16),(62,'com.liferay.portal.model.Team','VIEW',1),(63,'com.liferay.portal.model.Group','APPROVE_PROPOSAL',2),(64,'com.liferay.portal.model.Group','ASSIGN_MEMBERS',4),(65,'com.liferay.portal.model.Group','ASSIGN_REVIEWER',8),(66,'com.liferay.portal.model.Group','ASSIGN_USER_ROLES',16),(67,'com.liferay.portal.model.Group','DELETE',32),(68,'com.liferay.portal.model.Group','MANAGE_ANNOUNCEMENTS',64),(69,'com.liferay.portal.model.Group','MANAGE_ARCHIVED_SETUPS',128),(70,'com.liferay.portal.model.Group','MANAGE_LAYOUTS',256),(71,'com.liferay.portal.model.Group','MANAGE_STAGING',512),(72,'com.liferay.portal.model.Group','MANAGE_TEAMS',1024),(73,'com.liferay.portal.model.Group','PERMISSIONS',2048),(74,'com.liferay.portal.model.Group','PUBLISH_STAGING',4096),(75,'com.liferay.portal.model.Group','PUBLISH_TO_REMOTE',8192),(76,'com.liferay.portal.model.Group','UPDATE',16384),(77,'com.liferay.portlet.tasks.model.TasksProposal','ADD_DISCUSSION',2),(78,'com.liferay.portlet.tasks.model.TasksProposal','DELETE',4),(79,'com.liferay.portlet.tasks.model.TasksProposal','DELETE_DISCUSSION',8),(80,'com.liferay.portlet.tasks.model.TasksProposal','UPDATE',16),(81,'com.liferay.portlet.tasks.model.TasksProposal','UPDATE_DISCUSSION',32),(82,'com.liferay.portlet.tasks.model.TasksProposal','VIEW',1),(83,'com.liferay.portlet.tasks.model.TasksProposal','PERMISSIONS',64),(84,'130','ACCESS_IN_CONTROL_PANEL',2),(85,'130','CONFIGURATION',4),(86,'130','VIEW',1),(87,'122','VIEW',1),(88,'122','ADD_TO_PAGE',2),(89,'122','CONFIGURATION',4),(90,'36','ADD_TO_PAGE',2),(91,'36','CONFIGURATION',4),(92,'36','VIEW',1),(93,'com.liferay.portlet.wiki.model.WikiPage','ADD_DISCUSSION',2),(94,'com.liferay.portlet.wiki.model.WikiPage','DELETE',4),(95,'com.liferay.portlet.wiki.model.WikiPage','DELETE_DISCUSSION',8),(96,'com.liferay.portlet.wiki.model.WikiPage','PERMISSIONS',16),(97,'com.liferay.portlet.wiki.model.WikiPage','SUBSCRIBE',32),(98,'com.liferay.portlet.wiki.model.WikiPage','UPDATE',64),(99,'com.liferay.portlet.wiki.model.WikiPage','UPDATE_DISCUSSION',128),(100,'com.liferay.portlet.wiki.model.WikiPage','VIEW',1),(101,'com.liferay.portlet.wiki.model.WikiNode','ADD_ATTACHMENT',2),(102,'com.liferay.portlet.wiki.model.WikiNode','ADD_PAGE',4),(103,'com.liferay.portlet.wiki.model.WikiNode','DELETE',8),(104,'com.liferay.portlet.wiki.model.WikiNode','IMPORT',16),(105,'com.liferay.portlet.wiki.model.WikiNode','PERMISSIONS',32),(106,'com.liferay.portlet.wiki.model.WikiNode','SUBSCRIBE',64),(107,'com.liferay.portlet.wiki.model.WikiNode','UPDATE',128),(108,'com.liferay.portlet.wiki.model.WikiNode','VIEW',1),(109,'com.liferay.portlet.wiki','ADD_NODE',2),(110,'com.liferay.portlet.wiki','PERMISSIONS',4),(111,'26','VIEW',1),(112,'26','ADD_TO_PAGE',2),(113,'26','CONFIGURATION',4),(114,'104','VIEW',1),(115,'104','ADD_TO_PAGE',2),(116,'104','CONFIGURATION',4),(117,'64','VIEW',1),(118,'64','ADD_TO_PAGE',2),(119,'64','CONFIGURATION',4),(120,'153','ACCESS_IN_CONTROL_PANEL',2),(121,'153','CONFIGURATION',4),(122,'153','VIEW',1),(123,'129','ACCESS_IN_CONTROL_PANEL',2),(124,'129','CONFIGURATION',4),(125,'129','VIEW',1),(126,'com.liferay.portal.model.PasswordPolicy','ASSIGN_MEMBERS',2),(127,'com.liferay.portal.model.PasswordPolicy','DELETE',4),(128,'com.liferay.portal.model.PasswordPolicy','PERMISSIONS',8),(129,'com.liferay.portal.model.PasswordPolicy','UPDATE',16),(130,'com.liferay.portal.model.PasswordPolicy','VIEW',1),(131,'100','VIEW',1),(132,'100','ADD_TO_PAGE',2),(133,'100','CONFIGURATION',4),(134,'157','ACCESS_IN_CONTROL_PANEL',2),(135,'157','CONFIGURATION',4),(136,'157','VIEW',1),(137,'19','ACCESS_IN_CONTROL_PANEL',2),(138,'19','ADD_TO_PAGE',4),(139,'19','CONFIGURATION',8),(140,'19','VIEW',1),(141,'com.liferay.portlet.messageboards.model.MBCategory','ADD_FILE',2),(142,'com.liferay.portlet.messageboards.model.MBCategory','ADD_MESSAGE',4),(143,'com.liferay.portlet.messageboards.model.MBCategory','ADD_SUBCATEGORY',8),(144,'com.liferay.portlet.messageboards.model.MBCategory','DELETE',16),(145,'com.liferay.portlet.messageboards.model.MBCategory','LOCK_THREAD',32),(146,'com.liferay.portlet.messageboards.model.MBCategory','MOVE_THREAD',64),(147,'com.liferay.portlet.messageboards.model.MBCategory','PERMISSIONS',128),(148,'com.liferay.portlet.messageboards.model.MBCategory','REPLY_TO_MESSAGE',256),(149,'com.liferay.portlet.messageboards.model.MBCategory','SUBSCRIBE',512),(150,'com.liferay.portlet.messageboards.model.MBCategory','UPDATE',1024),(151,'com.liferay.portlet.messageboards.model.MBCategory','UPDATE_THREAD_PRIORITY',2048),(152,'com.liferay.portlet.messageboards.model.MBCategory','VIEW',1),(153,'com.liferay.portlet.messageboards','ADD_CATEGORY',2),(154,'com.liferay.portlet.messageboards','ADD_FILE',4),(155,'com.liferay.portlet.messageboards','ADD_MESSAGE',8),(156,'com.liferay.portlet.messageboards','BAN_USER',16),(157,'com.liferay.portlet.messageboards','MOVE_THREAD',32),(158,'com.liferay.portlet.messageboards','LOCK_THREAD',64),(159,'com.liferay.portlet.messageboards','PERMISSIONS',128),(160,'com.liferay.portlet.messageboards','REPLY_TO_MESSAGE',256),(161,'com.liferay.portlet.messageboards','SUBSCRIBE',512),(162,'com.liferay.portlet.messageboards','UPDATE_THREAD_PRIORITY',1024),(163,'com.liferay.portlet.messageboards.model.MBMessage','DELETE',2),(164,'com.liferay.portlet.messageboards.model.MBMessage','PERMISSIONS',4),(165,'com.liferay.portlet.messageboards.model.MBMessage','SUBSCRIBE',8),(166,'com.liferay.portlet.messageboards.model.MBMessage','UPDATE',16),(167,'com.liferay.portlet.messageboards.model.MBMessage','VIEW',1),(168,'160','VIEW',1),(169,'160','ADD_TO_PAGE',2),(170,'160','CONFIGURATION',4),(171,'128','ACCESS_IN_CONTROL_PANEL',2),(172,'128','CONFIGURATION',4),(173,'128','VIEW',1),(174,'com.liferay.portal.model.Role','ASSIGN_MEMBERS',2),(175,'com.liferay.portal.model.Role','DEFINE_PERMISSIONS',4),(176,'com.liferay.portal.model.Role','DELETE',8),(177,'com.liferay.portal.model.Role','MANAGE_ANNOUNCEMENTS',16),(178,'com.liferay.portal.model.Role','PERMISSIONS',32),(179,'com.liferay.portal.model.Role','UPDATE',64),(180,'com.liferay.portal.model.Role','VIEW',1),(181,'86','VIEW',1),(182,'86','ADD_TO_PAGE',2),(183,'86','CONFIGURATION',4),(184,'154','ACCESS_IN_CONTROL_PANEL',2),(185,'154','CONFIGURATION',4),(186,'154','VIEW',1),(187,'148','VIEW',1),(188,'148','ADD_TO_PAGE',2),(189,'148','CONFIGURATION',4),(190,'11','ADD_TO_PAGE',2),(191,'11','CONFIGURATION',4),(192,'11','VIEW',1),(193,'120','VIEW',1),(194,'120','ADD_TO_PAGE',2),(195,'120','CONFIGURATION',4),(196,'29','ADD_TO_PAGE',2),(197,'29','CONFIGURATION',4),(198,'29','VIEW',1),(199,'158','ACCESS_IN_CONTROL_PANEL',2),(200,'158','CONFIGURATION',4),(201,'158','VIEW',1),(202,'124','VIEW',1),(203,'124','ADD_TO_PAGE',2),(204,'124','CONFIGURATION',4),(205,'1_WAR_calendarportlet','ACCESS_IN_CONTROL_PANEL',2),(206,'1_WAR_calendarportlet','ADD_TO_PAGE',4),(207,'1_WAR_calendarportlet','CONFIGURATION',8),(208,'1_WAR_calendarportlet','VIEW',1),(209,'com.liferay.portlet.calendar','ADD_EVENT',2),(210,'com.liferay.portlet.calendar','EXPORT_ALL_EVENTS',4),(211,'com.liferay.portlet.calendar','PERMISSIONS',8),(212,'com.liferay.portlet.calendar.model.CalEvent','ADD_DISCUSSION',2),(213,'com.liferay.portlet.calendar.model.CalEvent','DELETE',4),(214,'com.liferay.portlet.calendar.model.CalEvent','DELETE_DISCUSSION',8),(215,'com.liferay.portlet.calendar.model.CalEvent','PERMISSIONS',16),(216,'com.liferay.portlet.calendar.model.CalEvent','UPDATE',32),(217,'com.liferay.portlet.calendar.model.CalEvent','UPDATE_DISCUSSION',64),(218,'com.liferay.portlet.calendar.model.CalEvent','VIEW',1),(219,'58','ADD_TO_PAGE',2),(220,'58','CONFIGURATION',4),(221,'58','VIEW',1),(222,'155','ACCESS_IN_CONTROL_PANEL',2),(223,'155','VIEW',1),(224,'155','CONFIGURATION',4),(225,'97','VIEW',1),(226,'97','ADD_TO_PAGE',2),(227,'97','CONFIGURATION',4),(228,'71','ADD_TO_PAGE',2),(229,'71','CONFIGURATION',4),(230,'71','VIEW',1),(231,'39','VIEW',1),(232,'39','ADD_TO_PAGE',2),(233,'39','CONFIGURATION',4),(234,'85','ADD_TO_PAGE',2),(235,'85','CONFIGURATION',4),(236,'85','VIEW',1),(237,'118','VIEW',1),(238,'118','ADD_TO_PAGE',2),(239,'118','CONFIGURATION',4),(240,'107','VIEW',1),(241,'107','ADD_TO_PAGE',2),(242,'107','CONFIGURATION',4),(243,'79','CONFIGURATION',2),(244,'79','VIEW',1),(245,'79','ADD_TO_PAGE',4),(246,'30','VIEW',1),(247,'30','ADD_TO_PAGE',2),(248,'30','CONFIGURATION',4),(249,'147','ACCESS_IN_CONTROL_PANEL',2),(250,'147','CONFIGURATION',4),(251,'147','VIEW',1),(252,'48','VIEW',1),(253,'48','ADD_TO_PAGE',2),(254,'48','CONFIGURATION',4),(255,'125','ACCESS_IN_CONTROL_PANEL',2),(256,'125','CONFIGURATION',4),(257,'125','EXPORT_USER',8),(258,'125','VIEW',1),(259,'com.liferay.portal.model.User','DELETE',2),(260,'com.liferay.portal.model.User','IMPERSONATE',4),(261,'com.liferay.portal.model.User','PERMISSIONS',8),(262,'com.liferay.portal.model.User','UPDATE',16),(263,'com.liferay.portal.model.User','VIEW',1),(264,'144','VIEW',1),(265,'144','ADD_TO_PAGE',2),(266,'144','CONFIGURATION',4),(267,'146','ACCESS_IN_CONTROL_PANEL',2),(268,'146','CONFIGURATION',4),(269,'146','VIEW',1),(270,'62','VIEW',1),(271,'62','ADD_TO_PAGE',2),(272,'62','CONFIGURATION',4),(273,'159','VIEW',1),(274,'159','ADD_TO_PAGE',2),(275,'159','CONFIGURATION',4),(276,'108','VIEW',1),(277,'108','ADD_TO_PAGE',2),(278,'108','CONFIGURATION',4),(279,'139','ADD_EXPANDO',2),(280,'139','CONFIGURATION',4),(281,'139','VIEW',1),(282,'139','ADD_TO_PAGE',8),(283,'com.liferay.portlet.expando.model.ExpandoColumn','DELETE',2),(284,'com.liferay.portlet.expando.model.ExpandoColumn','PERMISSIONS',4),(285,'com.liferay.portlet.expando.model.ExpandoColumn','UPDATE',8),(286,'com.liferay.portlet.expando.model.ExpandoColumn','VIEW',1),(287,'84','ADD_ENTRY',2),(288,'84','ADD_TO_PAGE',4),(289,'84','CONFIGURATION',8),(290,'84','VIEW',1),(291,'com.liferay.portlet.announcements.model.AnnouncementsEntry','DELETE',2),(292,'com.liferay.portlet.announcements.model.AnnouncementsEntry','UPDATE',4),(293,'com.liferay.portlet.announcements.model.AnnouncementsEntry','VIEW',1),(294,'com.liferay.portlet.announcements.model.AnnouncementsEntry','PERMISSIONS',8),(295,'101','VIEW',1),(296,'101','ADD_TO_PAGE',2),(297,'101','CONFIGURATION',4),(298,'121','VIEW',1),(299,'121','ADD_TO_PAGE',2),(300,'121','CONFIGURATION',4),(301,'49','VIEW',1),(302,'49','ADD_TO_PAGE',2),(303,'49','CONFIGURATION',4),(304,'143','VIEW',1),(305,'143','ADD_TO_PAGE',2),(306,'143','CONFIGURATION',4),(307,'37','VIEW',1),(308,'37','ADD_TO_PAGE',2),(309,'37','CONFIGURATION',4),(310,'77','VIEW',1),(311,'77','ADD_TO_PAGE',2),(312,'77','CONFIGURATION',4),(313,'115','VIEW',1),(314,'115','ADD_TO_PAGE',2),(315,'115','CONFIGURATION',4),(316,'56','ADD_TO_PAGE',2),(317,'56','CONFIGURATION',4),(318,'56','VIEW',1),(319,'142','VIEW',1),(320,'142','ADD_TO_PAGE',2),(321,'142','CONFIGURATION',4),(322,'111','VIEW',1),(323,'111','ADD_TO_PAGE',2),(324,'111','CONFIGURATION',4),(325,'16','PREFERENCES',2),(326,'16','GUEST_PREFERENCES',4),(327,'16','VIEW',1),(328,'16','ADD_TO_PAGE',8),(329,'16','CONFIGURATION',16),(330,'3','VIEW',1),(331,'3','ADD_TO_PAGE',2),(332,'3','CONFIGURATION',4),(333,'20','ACCESS_IN_CONTROL_PANEL',2),(334,'20','ADD_TO_PAGE',4),(335,'20','CONFIGURATION',8),(336,'20','VIEW',1),(337,'com.liferay.portlet.documentlibrary.model.DLFolder','ACCESS',2),(338,'com.liferay.portlet.documentlibrary.model.DLFolder','ADD_DOCUMENT',4),(339,'com.liferay.portlet.documentlibrary.model.DLFolder','ADD_SHORTCUT',8),(340,'com.liferay.portlet.documentlibrary.model.DLFolder','ADD_SUBFOLDER',16),(341,'com.liferay.portlet.documentlibrary.model.DLFolder','DELETE',32),(342,'com.liferay.portlet.documentlibrary.model.DLFolder','PERMISSIONS',64),(343,'com.liferay.portlet.documentlibrary.model.DLFolder','UPDATE',128),(344,'com.liferay.portlet.documentlibrary.model.DLFolder','VIEW',1),(345,'com.liferay.portlet.documentlibrary','ADD_DOCUMENT',2),(346,'com.liferay.portlet.documentlibrary','ADD_FOLDER',4),(347,'com.liferay.portlet.documentlibrary','ADD_SHORTCUT',8),(348,'com.liferay.portlet.documentlibrary','PERMISSIONS',16),(349,'com.liferay.portlet.documentlibrary','VIEW',1),(350,'com.liferay.portlet.documentlibrary.model.DLFileEntry','ADD_DISCUSSION',2),(351,'com.liferay.portlet.documentlibrary.model.DLFileEntry','DELETE',4),(352,'com.liferay.portlet.documentlibrary.model.DLFileEntry','DELETE_DISCUSSION',8),(353,'com.liferay.portlet.documentlibrary.model.DLFileEntry','PERMISSIONS',16),(354,'com.liferay.portlet.documentlibrary.model.DLFileEntry','UPDATE',32),(355,'com.liferay.portlet.documentlibrary.model.DLFileEntry','UPDATE_DISCUSSION',64),(356,'com.liferay.portlet.documentlibrary.model.DLFileEntry','VIEW',1),(357,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','ADD_DISCUSSION',2),(358,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','DELETE',4),(359,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','DELETE_DISCUSSION',8),(360,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','PERMISSIONS',16),(361,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','UPDATE',32),(362,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','UPDATE_DISCUSSION',64),(363,'com.liferay.portlet.documentlibrary.model.DLFileShortcut','VIEW',1),(364,'23','VIEW',1),(365,'23','ADD_TO_PAGE',2),(366,'23','CONFIGURATION',4),(367,'145','VIEW',1),(368,'145','ADD_TO_PAGE',2),(369,'145','CONFIGURATION',4),(370,'com.liferay.portlet.asset','ADD_CATEGORY',2),(371,'com.liferay.portlet.asset','ADD_VOCABULARY',4),(372,'com.liferay.portlet.asset','ADD_TAG',8),(373,'com.liferay.portlet.asset','PERMISSIONS',16),(374,'com.liferay.portlet.asset.model.AssetCategory','ADD_CATEGORY',2),(375,'com.liferay.portlet.asset.model.AssetCategory','DELETE',4),(376,'com.liferay.portlet.asset.model.AssetCategory','PERMISSIONS',8),(377,'com.liferay.portlet.asset.model.AssetCategory','UPDATE',16),(378,'com.liferay.portlet.asset.model.AssetCategory','VIEW',1),(379,'com.liferay.portlet.asset.model.AssetVocabulary','DELETE',2),(380,'com.liferay.portlet.asset.model.AssetVocabulary','PERMISSIONS',4),(381,'com.liferay.portlet.asset.model.AssetVocabulary','UPDATE',8),(382,'com.liferay.portlet.asset.model.AssetVocabulary','VIEW',1),(383,'83','ADD_ENTRY',2),(384,'83','ADD_TO_PAGE',4),(385,'83','CONFIGURATION',8),(386,'83','VIEW',1),(387,'99','VIEW',1),(388,'99','ADD_TO_PAGE',2),(389,'99','CONFIGURATION',4),(390,'com.liferay.portlet.asset.model.AssetTag','DELETE',2),(391,'com.liferay.portlet.asset.model.AssetTag','PERMISSIONS',4),(392,'com.liferay.portlet.asset.model.AssetTag','UPDATE',8),(393,'com.liferay.portlet.asset.model.AssetTag','VIEW',1),(394,'70','VIEW',1),(395,'70','ADD_TO_PAGE',2),(396,'70','CONFIGURATION',4),(397,'141','VIEW',1),(398,'141','ADD_TO_PAGE',2),(399,'141','CONFIGURATION',4),(400,'9','VIEW',1),(401,'9','ADD_TO_PAGE',2),(402,'9','CONFIGURATION',4),(403,'137','ACCESS_IN_CONTROL_PANEL',2),(404,'137','CONFIGURATION',4),(405,'137','VIEW',1),(406,'28','ACCESS_IN_CONTROL_PANEL',2),(407,'28','ADD_TO_PAGE',4),(408,'28','CONFIGURATION',8),(409,'28','VIEW',1),(410,'com.liferay.portlet.bookmarks.model.BookmarksFolder','ACCESS',2),(411,'com.liferay.portlet.bookmarks.model.BookmarksFolder','ADD_ENTRY',4),(412,'com.liferay.portlet.bookmarks.model.BookmarksFolder','ADD_SUBFOLDER',8),(413,'com.liferay.portlet.bookmarks.model.BookmarksFolder','DELETE',16),(414,'com.liferay.portlet.bookmarks.model.BookmarksFolder','PERMISSIONS',32),(415,'com.liferay.portlet.bookmarks.model.BookmarksFolder','UPDATE',64),(416,'com.liferay.portlet.bookmarks.model.BookmarksFolder','VIEW',1),(417,'com.liferay.portlet.bookmarks','ADD_ENTRY',2),(418,'com.liferay.portlet.bookmarks','ADD_FOLDER',4),(419,'com.liferay.portlet.bookmarks','PERMISSIONS',8),(420,'com.liferay.portlet.bookmarks.model.BookmarksEntry','DELETE',2),(421,'com.liferay.portlet.bookmarks.model.BookmarksEntry','PERMISSIONS',4),(422,'com.liferay.portlet.bookmarks.model.BookmarksEntry','UPDATE',8),(423,'com.liferay.portlet.bookmarks.model.BookmarksEntry','VIEW',1),(424,'133','VIEW',1),(425,'133','ADD_TO_PAGE',2),(426,'133','CONFIGURATION',4),(427,'116','VIEW',1),(428,'116','ADD_TO_PAGE',2),(429,'116','CONFIGURATION',4),(430,'15','ACCESS_IN_CONTROL_PANEL',2),(431,'15','ADD_TO_PAGE',4),(432,'15','CONFIGURATION',8),(433,'15','VIEW',1),(434,'com.liferay.portlet.journal.model.JournalFeed','DELETE',2),(435,'com.liferay.portlet.journal.model.JournalFeed','PERMISSIONS',4),(436,'com.liferay.portlet.journal.model.JournalFeed','UPDATE',8),(437,'com.liferay.portlet.journal.model.JournalFeed','VIEW',1),(438,'com.liferay.portlet.journal.model.JournalArticle','ADD_DISCUSSION',2),(439,'com.liferay.portlet.journal.model.JournalArticle','DELETE',4),(440,'com.liferay.portlet.journal.model.JournalArticle','DELETE_DISCUSSION',8),(441,'com.liferay.portlet.journal.model.JournalArticle','EXPIRE',16),(442,'com.liferay.portlet.journal.model.JournalArticle','PERMISSIONS',32),(443,'com.liferay.portlet.journal.model.JournalArticle','UPDATE',64),(444,'com.liferay.portlet.journal.model.JournalArticle','UPDATE_DISCUSSION',128),(445,'com.liferay.portlet.journal.model.JournalArticle','VIEW',1),(446,'com.liferay.portlet.journal','ADD_ARTICLE',2),(447,'com.liferay.portlet.journal','ADD_FEED',4),(448,'com.liferay.portlet.journal','ADD_STRUCTURE',8),(449,'com.liferay.portlet.journal','ADD_TEMPLATE',16),(450,'com.liferay.portlet.journal','SUBSCRIBE',32),(451,'com.liferay.portlet.journal','PERMISSIONS',64),(452,'com.liferay.portlet.journal.model.JournalStructure','DELETE',2),(453,'com.liferay.portlet.journal.model.JournalStructure','PERMISSIONS',4),(454,'com.liferay.portlet.journal.model.JournalStructure','UPDATE',8),(455,'com.liferay.portlet.journal.model.JournalStructure','VIEW',1),(456,'com.liferay.portlet.journal.model.JournalTemplate','DELETE',2),(457,'com.liferay.portlet.journal.model.JournalTemplate','PERMISSIONS',4),(458,'com.liferay.portlet.journal.model.JournalTemplate','UPDATE',8),(459,'com.liferay.portlet.journal.model.JournalTemplate','VIEW',1),(460,'47','VIEW',1),(461,'47','ADD_TO_PAGE',2),(462,'47','CONFIGURATION',4),(463,'82','VIEW',1),(464,'82','ADD_TO_PAGE',2),(465,'82','CONFIGURATION',4),(466,'103','VIEW',1),(467,'103','ADD_TO_PAGE',2),(468,'103','CONFIGURATION',4),(469,'151','ACCESS_IN_CONTROL_PANEL',2),(470,'151','CONFIGURATION',4),(471,'151','VIEW',1),(472,'140','VIEW',1),(473,'140','ADD_TO_PAGE',2),(474,'140','CONFIGURATION',4),(475,'54','VIEW',1),(476,'54','ADD_TO_PAGE',2),(477,'54','CONFIGURATION',4),(478,'132','ACCESS_IN_CONTROL_PANEL',2),(479,'132','CONFIGURATION',4),(480,'132','VIEW',1),(481,'34','ADD_TO_PAGE',2),(482,'34','CONFIGURATION',4),(483,'34','VIEW',1),(484,'com.liferay.portlet.shopping','ADD_CATEGORY',2),(485,'com.liferay.portlet.shopping','ADD_ITEM',4),(486,'com.liferay.portlet.shopping','MANAGE_COUPONS',8),(487,'com.liferay.portlet.shopping','MANAGE_ORDERS',16),(488,'com.liferay.portlet.shopping','PERMISSIONS',32),(489,'com.liferay.portlet.shopping.model.ShoppingCategory','ADD_ITEM',2),(490,'com.liferay.portlet.shopping.model.ShoppingCategory','ADD_SUBCATEGORY',4),(491,'com.liferay.portlet.shopping.model.ShoppingCategory','DELETE',8),(492,'com.liferay.portlet.shopping.model.ShoppingCategory','PERMISSIONS',16),(493,'com.liferay.portlet.shopping.model.ShoppingCategory','UPDATE',32),(494,'com.liferay.portlet.shopping.model.ShoppingCategory','VIEW',1),(495,'com.liferay.portlet.shopping.model.ShoppingOrder','DELETE',2),(496,'com.liferay.portlet.shopping.model.ShoppingOrder','PERMISSIONS',4),(497,'com.liferay.portlet.shopping.model.ShoppingOrder','UPDATE',8),(498,'com.liferay.portlet.shopping.model.ShoppingOrder','VIEW',1),(499,'com.liferay.portlet.shopping.model.ShoppingItem','DELETE',2),(500,'com.liferay.portlet.shopping.model.ShoppingItem','PERMISSIONS',4),(501,'com.liferay.portlet.shopping.model.ShoppingItem','UPDATE',8),(502,'com.liferay.portlet.shopping.model.ShoppingItem','VIEW',1),(503,'61','VIEW',1),(504,'61','ADD_TO_PAGE',2),(505,'61','CONFIGURATION',4),(506,'73','ADD_TO_PAGE',2),(507,'73','CONFIGURATION',4),(508,'73','VIEW',1),(509,'31','ACCESS_IN_CONTROL_PANEL',2),(510,'31','ADD_TO_PAGE',4),(511,'31','CONFIGURATION',8),(512,'31','VIEW',1),(513,'com.liferay.portlet.imagegallery.model.IGImage','DELETE',2),(514,'com.liferay.portlet.imagegallery.model.IGImage','PERMISSIONS',4),(515,'com.liferay.portlet.imagegallery.model.IGImage','UPDATE',8),(516,'com.liferay.portlet.imagegallery.model.IGImage','VIEW',1),(517,'com.liferay.portlet.imagegallery.model.IGFolder','ACCESS',2),(518,'com.liferay.portlet.imagegallery.model.IGFolder','ADD_IMAGE',4),(519,'com.liferay.portlet.imagegallery.model.IGFolder','ADD_SUBFOLDER',8),(520,'com.liferay.portlet.imagegallery.model.IGFolder','DELETE',16),(521,'com.liferay.portlet.imagegallery.model.IGFolder','PERMISSIONS',32),(522,'com.liferay.portlet.imagegallery.model.IGFolder','UPDATE',64),(523,'com.liferay.portlet.imagegallery.model.IGFolder','VIEW',1),(524,'com.liferay.portlet.imagegallery','ADD_FOLDER',2),(525,'com.liferay.portlet.imagegallery','ADD_IMAGE',4),(526,'com.liferay.portlet.imagegallery','PERMISSIONS',8),(527,'com.liferay.portlet.imagegallery','VIEW',1),(528,'136','ACCESS_IN_CONTROL_PANEL',2),(529,'136','CONFIGURATION',4),(530,'136','VIEW',1),(531,'127','ACCESS_IN_CONTROL_PANEL',2),(532,'127','CONFIGURATION',4),(533,'127','VIEW',1),(534,'com.liferay.portal.model.UserGroup','ASSIGN_MEMBERS',2),(535,'com.liferay.portal.model.UserGroup','DELETE',4),(536,'com.liferay.portal.model.UserGroup','MANAGE_ANNOUNCEMENTS',8),(537,'com.liferay.portal.model.UserGroup','PERMISSIONS',16),(538,'com.liferay.portal.model.UserGroup','MANAGE_LAYOUTS',32),(539,'com.liferay.portal.model.UserGroup','UPDATE',64),(540,'com.liferay.portal.model.UserGroup','VIEW',1),(541,'50','VIEW',1),(542,'50','ADD_TO_PAGE',2),(543,'50','CONFIGURATION',4),(544,'25','ACCESS_IN_CONTROL_PANEL',2),(545,'25','CONFIGURATION',4),(546,'25','VIEW',1),(547,'com.liferay.portlet.polls','ADD_QUESTION',2),(548,'com.liferay.portlet.polls','PERMISSIONS',4),(549,'com.liferay.portlet.polls.model.PollsQuestion','ADD_VOTE',2),(550,'com.liferay.portlet.polls.model.PollsQuestion','DELETE',4),(551,'com.liferay.portlet.polls.model.PollsQuestion','PERMISSIONS',8),(552,'com.liferay.portlet.polls.model.PollsQuestion','UPDATE',16),(553,'com.liferay.portlet.polls.model.PollsQuestion','VIEW',1),(554,'90','ADD_COMMUNITY',2),(555,'90','ADD_LAYOUT_PROTOTYPE',4),(556,'90','ADD_LAYOUT_SET_PROTOTYPE',8),(557,'90','ADD_LICENSE',16),(558,'90','ADD_ORGANIZATION',32),(559,'90','ADD_PASSWORD_POLICY',64),(560,'90','ADD_ROLE',128),(561,'90','ADD_USER',256),(562,'90','ADD_USER_GROUP',512),(563,'90','CONFIGURATION',1024),(564,'90','EXPORT_USER',2048),(565,'150','ACCESS_IN_CONTROL_PANEL',2),(566,'150','CONFIGURATION',4),(567,'150','VIEW',1),(568,'113','VIEW',1),(569,'113','ADD_TO_PAGE',2),(570,'113','CONFIGURATION',4),(571,'33','ACCESS_IN_CONTROL_PANEL',2),(572,'33','ADD_TO_PAGE',4),(573,'33','CONFIGURATION',8),(574,'33','VIEW',1),(575,'com.liferay.portlet.blogs','ADD_ENTRY',2),(576,'com.liferay.portlet.blogs','PERMISSIONS',4),(577,'com.liferay.portlet.blogs','SUBSCRIBE',8),(578,'com.liferay.portlet.blogs.model.BlogsEntry','ADD_DISCUSSION',2),(579,'com.liferay.portlet.blogs.model.BlogsEntry','DELETE',4),(580,'com.liferay.portlet.blogs.model.BlogsEntry','DELETE_DISCUSSION',8),(581,'com.liferay.portlet.blogs.model.BlogsEntry','PERMISSIONS',16),(582,'com.liferay.portlet.blogs.model.BlogsEntry','UPDATE',32),(583,'com.liferay.portlet.blogs.model.BlogsEntry','UPDATE_DISCUSSION',64),(584,'com.liferay.portlet.blogs.model.BlogsEntry','VIEW',1),(585,'2','VIEW',1),(586,'2','ADD_TO_PAGE',2),(587,'2','CONFIGURATION',4),(588,'119','VIEW',1),(589,'119','ADD_TO_PAGE',2),(590,'119','CONFIGURATION',4),(591,'126','ACCESS_IN_CONTROL_PANEL',2),(592,'126','CONFIGURATION',4),(593,'126','VIEW',1),(594,'com.liferay.portal.model.Organization','APPROVE_PROPOSAL',2),(595,'com.liferay.portal.model.Organization','ASSIGN_MEMBERS',4),(596,'com.liferay.portal.model.Organization','ASSIGN_REVIEWER',8),(597,'com.liferay.portal.model.Organization','ASSIGN_USER_ROLES',16),(598,'com.liferay.portal.model.Organization','DELETE',32),(599,'com.liferay.portal.model.Organization','MANAGE_ANNOUNCEMENTS',64),(600,'com.liferay.portal.model.Organization','MANAGE_ARCHIVED_SETUPS',128),(601,'com.liferay.portal.model.Organization','MANAGE_LAYOUTS',256),(602,'com.liferay.portal.model.Organization','MANAGE_STAGING',512),(603,'com.liferay.portal.model.Organization','MANAGE_SUBORGANIZATIONS',1024),(604,'com.liferay.portal.model.Organization','MANAGE_TEAMS',2048),(605,'com.liferay.portal.model.Organization','MANAGE_USERS',4096),(606,'com.liferay.portal.model.Organization','PERMISSIONS',8192),(607,'com.liferay.portal.model.Organization','PUBLISH_STAGING',16384),(608,'com.liferay.portal.model.Organization','UPDATE',32768),(609,'com.liferay.portal.model.Organization','VIEW',1),(610,'114','VIEW',1),(611,'114','ADD_TO_PAGE',2),(612,'114','CONFIGURATION',4),(613,'149','ACCESS_IN_CONTROL_PANEL',2),(614,'149','CONFIGURATION',4),(615,'149','VIEW',1),(616,'67','VIEW',1),(617,'67','ADD_TO_PAGE',2),(618,'67','CONFIGURATION',4),(619,'110','VIEW',1),(620,'110','ADD_TO_PAGE',2),(621,'110','CONFIGURATION',4),(622,'135','ACCESS_IN_CONTROL_PANEL',2),(623,'135','CONFIGURATION',4),(624,'135','VIEW',1),(625,'59','VIEW',1),(626,'59','ADD_TO_PAGE',2),(627,'59','CONFIGURATION',4),(628,'131','ACCESS_IN_CONTROL_PANEL',2),(629,'131','CONFIGURATION',4),(630,'131','VIEW',1),(631,'102','VIEW',1),(632,'102','ADD_TO_PAGE',2),(633,'102','CONFIGURATION',4),(634,'1_WAR_chatportlet','VIEW',1),(635,'1_WAR_chatportlet','ADD_TO_PAGE',2),(636,'1_WAR_chatportlet','CONFIGURATION',4),(637,'1_WAR_googlemapsportlet','VIEW',1),(638,'1_WAR_googlemapsportlet','ADD_TO_PAGE',2),(639,'1_WAR_googlemapsportlet','CONFIGURATION',4),(640,'1_WAR_mailportlet','VIEW',1),(641,'1_WAR_mailportlet','ADD_TO_PAGE',2),(642,'1_WAR_mailportlet','CONFIGURATION',4),(643,'2_WAR_mailportlet','PREFERENCES',2),(644,'2_WAR_mailportlet','VIEW',1),(645,'2_WAR_mailportlet','ADD_TO_PAGE',4),(646,'2_WAR_mailportlet','CONFIGURATION',8),(647,'2_WAR_opensocialportlet','VIEW',1),(648,'2_WAR_opensocialportlet','ADD_TO_PAGE',2),(649,'2_WAR_opensocialportlet','CONFIGURATION',4),(650,'1_WAR_opensocialportlet','VIEW',1),(651,'1_WAR_opensocialportlet','ADD_TO_PAGE',2),(652,'1_WAR_opensocialportlet','CONFIGURATION',4),(653,'6_WAR_socialnetworkingportlet','VIEW',1),(654,'6_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(655,'6_WAR_socialnetworkingportlet','CONFIGURATION',4),(656,'1_WAR_socialnetworkingportlet','VIEW',1),(657,'1_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(658,'1_WAR_socialnetworkingportlet','CONFIGURATION',4),(659,'3_WAR_socialnetworkingportlet','VIEW',1),(660,'3_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(661,'3_WAR_socialnetworkingportlet','CONFIGURATION',4),(662,'7_WAR_socialnetworkingportlet','VIEW',1),(663,'7_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(664,'7_WAR_socialnetworkingportlet','CONFIGURATION',4),(665,'8_WAR_socialnetworkingportlet','VIEW',1),(666,'8_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(667,'8_WAR_socialnetworkingportlet','CONFIGURATION',4),(668,'4_WAR_socialnetworkingportlet','VIEW',1),(669,'4_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(670,'4_WAR_socialnetworkingportlet','CONFIGURATION',4),(671,'2_WAR_socialnetworkingportlet','VIEW',1),(672,'2_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(673,'2_WAR_socialnetworkingportlet','CONFIGURATION',4),(674,'5_WAR_socialnetworkingportlet','VIEW',1),(675,'5_WAR_socialnetworkingportlet','ADD_TO_PAGE',2),(676,'5_WAR_socialnetworkingportlet','CONFIGURATION',4),(677,'1_WAR_webformportlet','VIEW',1),(678,'1_WAR_webformportlet','ADD_TO_PAGE',2),(679,'1_WAR_webformportlet','CONFIGURATION',4),(680,'1_WAR_wsrpportlet','VIEW',1),(681,'1_WAR_wsrpportlet','ADD_TO_PAGE',2),(682,'1_WAR_wsrpportlet','CONFIGURATION',4),(683,'2_WAR_wsrpportlet','VIEW',1),(684,'2_WAR_wsrpportlet','ADD_TO_PAGE',2),(685,'2_WAR_wsrpportlet','CONFIGURATION',4),(701,'com.liferay.portlet.bookmarks','VIEW',1),(702,'com.liferay.portlet.documentlibrary','ADD_DOCUMENT_TYPE',32),(703,'com.liferay.portlet.documentlibrary','ADD_REPOSITORY',64),(704,'com.liferay.portlet.documentlibrary','ADD_STRUCTURE',128),(705,'com.liferay.portlet.documentlibrary','UPDATE',256),(706,'com.liferay.portlet.messageboards','VIEW',1),(707,'com.liferay.portlet.shopping','VIEW',1),(708,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate','DELETE',2),(709,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate','PERMISSIONS',4),(710,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate','UPDATE',8),(711,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate','VIEW',1),(712,'com.liferay.portal.model.LayoutSetBranch','DELETE',2),(713,'com.liferay.portal.model.LayoutSetBranch','MERGE',4),(714,'com.liferay.portal.model.LayoutSetBranch','PERMISSIONS',8),(715,'com.liferay.portal.model.LayoutSetBranch','UPDATE',16),(716,'com.liferay.portlet.dynamicdatalists','ADD_RECORD_SET',2),(717,'com.liferay.portlet.dynamicdatalists','ADD_STRUCTURE',4),(718,'com.liferay.portlet.dynamicdatalists','ADD_TEMPLATE',8),(719,'com.liferay.portlet.dynamicdatalists','PERMISSIONS',16),(720,'com.liferay.portlet.messageboards.model.MBThread','SUBSCRIBE',2),(721,'com.liferay.portlet.messageboards.model.MBThread','PERMISSIONS',4),(722,'com.liferay.portal.model.Organization','VIEW_MEMBERS',65536),(723,'com.liferay.portal.model.Group','ADD_LAYOUT',32768),(724,'com.liferay.portal.model.Group','ADD_LAYOUT_BRANCH',65536),(725,'com.liferay.portal.model.Group','ADD_LAYOUT_SET_BRANCH',131072),(726,'com.liferay.portal.model.Group','CONFIGURE_PORTLETS',262144),(727,'com.liferay.portal.model.Group','EXPORT_IMPORT_LAYOUTS',524288),(728,'com.liferay.portal.model.Group','EXPORT_IMPORT_PORTLET_INFO',1048576),(729,'com.liferay.portal.model.Group','VIEW',1),(730,'com.liferay.portal.model.Group','VIEW_MEMBERS',2097152),(731,'com.liferay.portal.model.Group','VIEW_STAGING',4194304),(732,'com.liferay.portlet.documentlibrary.model.DLFileEntryType','DELETE',2),(733,'com.liferay.portlet.documentlibrary.model.DLFileEntryType','PERMISSIONS',4),(734,'com.liferay.portlet.documentlibrary.model.DLFileEntryType','UPDATE',8),(735,'com.liferay.portlet.documentlibrary.model.DLFileEntryType','VIEW',1),(736,'com.liferay.portlet.dynamicdatalists.model.DDLRecordSet','ADD_RECORD',2),(737,'com.liferay.portlet.dynamicdatalists.model.DDLRecordSet','DELETE',4),(738,'com.liferay.portlet.dynamicdatalists.model.DDLRecordSet','PERMISSIONS',8),(739,'com.liferay.portlet.dynamicdatalists.model.DDLRecordSet','UPDATE',16),(740,'com.liferay.portlet.dynamicdatalists.model.DDLRecordSet','VIEW',1),(741,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance','DELETE',2),(742,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance','PERMISSIONS',4),(743,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance','UPDATE',8),(744,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance','VIEW',1),(745,'com.liferay.portlet.documentlibrary.model.DLFileEntry','OVERRIDE_CHECKOUT',128),(746,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure','DELETE',2),(747,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure','PERMISSIONS',4),(748,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure','UPDATE',8),(749,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure','VIEW',1),(750,'com.liferay.portal.model.Layout','ADD_LAYOUT',128),(751,'com.liferay.portal.model.Layout','CONFIGURE_PORTLETS',256),(752,'com.liferay.portal.model.Layout','CUSTOMIZE',512),(753,'com.liferay.portlet.mobiledevicerules','ADD_RULE_GROUP',2),(754,'com.liferay.portlet.mobiledevicerules','ADD_RULE_GROUP_INSTANCE',4),(755,'com.liferay.portlet.mobiledevicerules','CONFIGURATION',8),(756,'com.liferay.portlet.mobiledevicerules','VIEW',1),(757,'com.liferay.portlet.mobiledevicerules','PERMISSIONS',16),(758,'com.liferay.portal.model.LayoutBranch','DELETE',2),(759,'com.liferay.portal.model.LayoutBranch','PERMISSIONS',4),(760,'com.liferay.portal.model.LayoutBranch','UPDATE',8),(761,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup','DELETE',2),(762,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup','PERMISSIONS',4),(763,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup','UPDATE',8),(764,'com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup','VIEW',1),(765,'88','PERMISSIONS',8),(766,'110','PERMISSIONS',8),(767,'111','PERMISSIONS',8),(768,'113','PERMISSIONS',8),(769,'114','PERMISSIONS',8),(770,'115','PERMISSIONS',8),(771,'116','PERMISSIONS',8),(772,'90','IMPERSONATE',4096),(773,'90','UNLINK_LAYOUT_SET_PROTOTYPE',8192),(774,'90','VIEW_CONTROL_PANEL',16384),(775,'90','ADD_TO_PAGE',32768),(776,'90','PERMISSIONS',65536),(777,'90','VIEW',1),(778,'118','PERMISSIONS',8),(779,'119','PERMISSIONS',8),(780,'97','PERMISSIONS',8),(781,'98','PERMISSIONS',16),(782,'11','PERMISSIONS',8),(783,'99','ACCESS_IN_CONTROL_PANEL',8),(784,'99','PERMISSIONS',16),(785,'15','PERMISSIONS',16),(786,'16','PERMISSIONS',32),(787,'19','PERMISSIONS',16),(788,'121','PERMISSIONS',8),(789,'122','PERMISSIONS',8),(790,'2','ACCESS_IN_CONTROL_PANEL',8),(791,'2','PERMISSIONS',16),(792,'3','PERMISSIONS',8),(793,'124','PERMISSIONS',8),(794,'125','PERMISSIONS',16),(795,'127','ADD_TO_PAGE',8),(796,'127','PERMISSIONS',16),(797,'128','PERMISSIONS',8),(798,'1_WAR_calendarportlet','PERMISSIONS',16),(799,'129','PERMISSIONS',8),(800,'9','PERMISSIONS',8),(801,'20','PERMISSIONS',16),(802,'23','PERMISSIONS',8),(803,'25','PERMISSIONS',8),(804,'26','PERMISSIONS',8),(805,'27','PERMISSIONS',8),(806,'28','PERMISSIONS',16),(807,'29','PERMISSIONS',8),(808,'130','PERMISSIONS',8),(809,'131','PERMISSIONS',8),(810,'132','PERMISSIONS',8),(811,'133','PERMISSIONS',8),(812,'134','PERMISSIONS',8),(813,'135','PERMISSIONS',8),(814,'136','PERMISSIONS',8),(815,'137','PERMISSIONS',8),(816,'139','ACCESS_IN_CONTROL_PANEL',16),(817,'139','PERMISSIONS',32),(818,'30','PERMISSIONS',8),(819,'31','PERMISSIONS',16),(820,'33','PERMISSIONS',16),(821,'34','PERMISSIONS',8),(822,'36','PERMISSIONS',8),(823,'39','PERMISSIONS',8),(824,'140','ACCESS_IN_CONTROL_PANEL',8),(825,'140','PERMISSIONS',16),(826,'141','PERMISSIONS',8),(827,'142','PERMISSIONS',8),(828,'143','PERMISSIONS',8),(829,'144','PERMISSIONS',8),(830,'145','PERMISSIONS',8),(831,'146','PERMISSIONS',8),(832,'147','PERMISSIONS',8),(833,'148','PERMISSIONS',8),(834,'149','PERMISSIONS',8),(835,'47','PERMISSIONS',8),(836,'48','PERMISSIONS',8),(837,'49','PERMISSIONS',8),(838,'150','PERMISSIONS',8),(839,'151','PERMISSIONS',8),(840,'152','PERMISSIONS',8),(841,'153','ADD_TO_PAGE',8),(842,'153','PERMISSIONS',16),(843,'154','PERMISSIONS',8),(844,'156','ACCESS_IN_CONTROL_PANEL',8),(845,'156','PERMISSIONS',16),(846,'157','PERMISSIONS',8),(847,'158','ADD_TO_PAGE',8),(848,'158','PERMISSIONS',16),(849,'50','PERMISSIONS',8),(850,'54','PERMISSIONS',8),(851,'56','PERMISSIONS',8),(852,'58','PERMISSIONS',8),(853,'59','PERMISSIONS',8),(854,'160','PERMISSIONS',8),(855,'161','ACCESS_IN_CONTROL_PANEL',2),(856,'161','CONFIGURATION',4),(857,'161','VIEW',1),(858,'161','PERMISSIONS',8),(859,'162','ACCESS_IN_CONTROL_PANEL',2),(860,'162','CONFIGURATION',4),(861,'162','VIEW',1),(862,'162','PERMISSIONS',8),(863,'164','VIEW',1),(864,'164','ADD_TO_PAGE',2),(865,'164','CONFIGURATION',4),(866,'164','PERMISSIONS',8),(867,'165','VIEW',1),(868,'165','ADD_TO_PAGE',2),(869,'165','ACCESS_IN_CONTROL_PANEL',4),(870,'165','CONFIGURATION',8),(871,'165','PERMISSIONS',16),(872,'166','ACCESS_IN_CONTROL_PANEL',2),(873,'166','ADD_TO_PAGE',4),(874,'166','CONFIGURATION',8),(875,'166','VIEW',1),(876,'166','PERMISSIONS',16),(877,'167','ACCESS_IN_CONTROL_PANEL',2),(878,'167','ADD_TO_PAGE',4),(879,'167','CONFIGURATION',8),(880,'167','VIEW',1),(881,'167','PERMISSIONS',16),(882,'169','VIEW',1),(883,'169','ADD_TO_PAGE',2),(884,'169','CONFIGURATION',4),(885,'169','PERMISSIONS',8),(886,'61','PERMISSIONS',8),(887,'62','PERMISSIONS',8),(888,'64','PERMISSIONS',8),(889,'66','PERMISSIONS',8),(890,'67','PERMISSIONS',8),(891,'170','VIEW',1),(892,'170','ADD_TO_PAGE',2),(893,'170','CONFIGURATION',4),(894,'170','PERMISSIONS',8),(895,'172','VIEW',1),(896,'172','ADD_TO_PAGE',2),(897,'172','CONFIGURATION',4),(898,'172','PERMISSIONS',8),(899,'173','VIEW',1),(900,'173','ADD_TO_PAGE',2),(901,'173','ACCESS_IN_CONTROL_PANEL',4),(902,'173','CONFIGURATION',8),(903,'173','PERMISSIONS',16),(904,'174','VIEW',1),(905,'174','ADD_TO_PAGE',2),(906,'174','ACCESS_IN_CONTROL_PANEL',4),(907,'174','CONFIGURATION',8),(908,'174','PERMISSIONS',16),(909,'175','VIEW',1),(910,'175','ADD_TO_PAGE',2),(911,'175','CONFIGURATION',4),(912,'175','PERMISSIONS',8),(913,'176','VIEW',1),(914,'176','ADD_TO_PAGE',2),(915,'176','ACCESS_IN_CONTROL_PANEL',4),(916,'176','CONFIGURATION',8),(917,'176','PERMISSIONS',16),(918,'177','CONFIGURATION',2),(919,'177','VIEW',1),(920,'177','ADD_TO_PAGE',4),(921,'177','PERMISSIONS',8),(922,'177','ACCESS_IN_CONTROL_PANEL',16),(923,'178','VIEW',1),(924,'178','ADD_TO_PAGE',2),(925,'178','ACCESS_IN_CONTROL_PANEL',4),(926,'178','CONFIGURATION',8),(927,'178','PERMISSIONS',16),(928,'179','VIEW',1),(929,'179','ADD_TO_PAGE',2),(930,'179','ACCESS_IN_CONTROL_PANEL',4),(931,'179','CONFIGURATION',8),(932,'179','PERMISSIONS',16),(933,'70','PERMISSIONS',8),(934,'71','PERMISSIONS',8),(935,'73','PERMISSIONS',8),(936,'77','PERMISSIONS',8),(937,'180','VIEW',1),(938,'180','ADD_TO_PAGE',2),(939,'180','CONFIGURATION',4),(940,'180','PERMISSIONS',8),(941,'181','VIEW',1),(942,'181','ADD_TO_PAGE',2),(943,'181','CONFIGURATION',4),(944,'181','PERMISSIONS',8),(945,'100','PERMISSIONS',8),(946,'101','PERMISSIONS',8),(947,'102','PERMISSIONS',8),(948,'103','PERMISSIONS',8),(949,'104','ACCESS_IN_CONTROL_PANEL',8),(950,'104','PERMISSIONS',16),(951,'107','PERMISSIONS',8),(952,'108','PERMISSIONS',8),(953,'82','PERMISSIONS',8),(954,'83','PERMISSIONS',16),(955,'84','PERMISSIONS',16),(956,'85','PERMISSIONS',8),(957,'86','PERMISSIONS',8),(958,'87','PERMISSIONS',8),(959,'1_WAR_marketplaceportlet','VIEW',1),(960,'1_WAR_marketplaceportlet','ADD_TO_PAGE',2),(961,'1_WAR_marketplaceportlet','ACCESS_IN_CONTROL_PANEL',4),(962,'1_WAR_marketplaceportlet','CONFIGURATION',8),(963,'1_WAR_marketplaceportlet','PERMISSIONS',16),(964,'2_WAR_marketplaceportlet','VIEW',1),(965,'2_WAR_marketplaceportlet','ADD_TO_PAGE',2),(966,'2_WAR_marketplaceportlet','ACCESS_IN_CONTROL_PANEL',4),(967,'2_WAR_marketplaceportlet','CONFIGURATION',8),(968,'2_WAR_marketplaceportlet','PERMISSIONS',16),(1001,'com.liferay.portlet.bookmarks.model.BookmarksFolder','SUBSCRIBE',128),(1002,'com.liferay.portlet.messageboards.model.MBThread','VIEW',1),(1003,'com.liferay.portlet.bookmarks','SUBSCRIBE',16),(1004,'com.liferay.portlet.documentlibrary','SUBSCRIBE',512),(1005,'com.liferay.portal.model.Organization','ADD_ORGANIZATION',131072),(1006,'com.liferay.portal.model.Group','ADD_COMMUNITY',8388608),(1007,'com.liferay.portal.model.Group','MANAGE_SUBGROUPS',16777216),(1008,'com.liferay.portal.model.Group','PREVIEW_IN_DEVICE',33554432),(1009,'com.liferay.portal.model.Group','VIEW_SITE_ADMINISTRATION',67108864),(1010,'com.liferay.portlet.journal.model.JournalFolder','ACCESS',2),(1011,'com.liferay.portlet.journal.model.JournalFolder','ADD_ARTICLE',4),(1012,'com.liferay.portlet.journal.model.JournalFolder','ADD_SUBFOLDER',8),(1013,'com.liferay.portlet.journal.model.JournalFolder','DELETE',16),(1014,'com.liferay.portlet.journal.model.JournalFolder','PERMISSIONS',32),(1015,'com.liferay.portlet.journal.model.JournalFolder','UPDATE',64),(1016,'com.liferay.portlet.journal.model.JournalFolder','VIEW',1),(1017,'com.liferay.portlet.bookmarks.model.BookmarksEntry','SUBSCRIBE',16),(1018,'com.liferay.portlet.journal','ADD_FOLDER',128),(1019,'com.liferay.portlet.journal','VIEW',1),(1020,'com.liferay.portal.model.UserGroup','VIEW_MEMBERS',128),(1021,'25','PREFERENCES',16),(1022,'28','PREFERENCES',32),(1023,'174','PREFERENCES',32),(1024,'110','PREFERENCES',16),(1025,'154','PREFERENCES',16),(1026,'134','PREFERENCES',16),(1027,'156','PREFERENCES',32),(1028,'178','PREFERENCES',32),(1029,'139','PREFERENCES',64),(1030,'31','PREFERENCES',32),(1031,'98','PREFERENCES',32),(1032,'99','PREFERENCES',32),(1033,'33','ADD_PORTLET_DISPLAY_TEMPLATE',32),(1034,'33','PREFERENCES',64),(1035,'34','PREFERENCES',16),(1036,'36','ADD_PORTLET_DISPLAY_TEMPLATE',16),(1037,'36','PREFERENCES',32),(1038,'15','PREFERENCES',32),(1039,'59','PREFERENCES',16),(1040,'19','PREFERENCES',32),(1041,'161','PREFERENCES',16),(1042,'162','PREFERENCES',16),(1043,'165','PREFERENCES',32),(1044,'166','PREFERENCES',32),(1045,'167','PREFERENCES',32),(1046,'146','PREFERENCES',16),(1047,'125','PREFERENCES',32),(1048,'147','PREFERENCES',16),(1049,'169','PREFERENCES',16),(1050,'149','PREFERENCES',16),(1051,'127','PREFERENCES',32),(1052,'128','PREFERENCES',16),(1053,'129','PREFERENCES',16),(1054,'8','ACCESS_IN_CONTROL_PANEL',2),(1055,'8','ADD_TO_PAGE',4),(1056,'8','CONFIGURATION',8),(1057,'8','VIEW',1),(1058,'8','PERMISSIONS',16),(1059,'8','PREFERENCES',32),(1060,'83','PREFERENCES',32),(1061,'84','PREFERENCES',32),(1062,'20','ADD_PORTLET_DISPLAY_TEMPLATE',32),(1063,'20','PREFERENCES',64),(1064,'88','PREFERENCES',16),(1065,'88','ACCESS_IN_CONTROL_PANEL',32),(1066,'190','VIEW',1),(1067,'190','ADD_TO_PAGE',2),(1068,'190','CONFIGURATION',4),(1069,'190','PERMISSIONS',8),(1070,'190','PREFERENCES',16),(1071,'190','ACCESS_IN_CONTROL_PANEL',32),(1072,'191','VIEW',1),(1073,'191','ADD_TO_PAGE',2),(1074,'191','CONFIGURATION',4),(1075,'191','PERMISSIONS',8),(1076,'191','PREFERENCES',16),(1077,'191','ACCESS_IN_CONTROL_PANEL',32),(1078,'192','VIEW',1),(1079,'192','ADD_TO_PAGE',2),(1080,'192','CONFIGURATION',4),(1081,'192','PERMISSIONS',8),(1082,'192','PREFERENCES',16),(1083,'192','ACCESS_IN_CONTROL_PANEL',32),(1084,'193','VIEW',1),(1085,'193','ADD_TO_PAGE',2),(1086,'193','CONFIGURATION',4),(1087,'193','PERMISSIONS',8),(1088,'193','PREFERENCES',16),(1089,'193','ACCESS_IN_CONTROL_PANEL',32),(1090,'194','VIEW',1),(1091,'194','ADD_TO_PAGE',2),(1092,'194','CONFIGURATION',4),(1093,'194','PERMISSIONS',8),(1094,'194','PREFERENCES',16),(1095,'194','ACCESS_IN_CONTROL_PANEL',32),(1096,'110','ACCESS_IN_CONTROL_PANEL',32),(1097,'113','PREFERENCES',16),(1098,'113','ACCESS_IN_CONTROL_PANEL',32),(1099,'114','PREFERENCES',16),(1100,'114','ACCESS_IN_CONTROL_PANEL',32),(1101,'115','PREFERENCES',16),(1102,'115','ACCESS_IN_CONTROL_PANEL',32),(1103,'116','PREFERENCES',16),(1104,'116','ACCESS_IN_CONTROL_PANEL',32),(1105,'90','ADD_GENERAL_ANNOUNCEMENTS',131072),(1106,'90','PREFERENCES',262144),(1107,'90','ACCESS_IN_CONTROL_PANEL',524288),(1108,'118','PREFERENCES',16),(1109,'118','ACCESS_IN_CONTROL_PANEL',32),(1110,'119','PREFERENCES',16),(1111,'119','ACCESS_IN_CONTROL_PANEL',32),(1112,'97','PREFERENCES',16),(1113,'97','ACCESS_IN_CONTROL_PANEL',32),(1114,'11','PREFERENCES',16),(1115,'11','ACCESS_IN_CONTROL_PANEL',32),(1116,'16','ACCESS_IN_CONTROL_PANEL',64),(1117,'121','PREFERENCES',16),(1118,'121','ACCESS_IN_CONTROL_PANEL',32),(1119,'122','ADD_PORTLET_DISPLAY_TEMPLATE',16),(1120,'122','PREFERENCES',32),(1121,'122','ACCESS_IN_CONTROL_PANEL',64),(1122,'2','PREFERENCES',32),(1123,'3','PREFERENCES',16),(1124,'3','ACCESS_IN_CONTROL_PANEL',32),(1125,'124','PREFERENCES',16),(1126,'124','ACCESS_IN_CONTROL_PANEL',32),(1127,'9','PREFERENCES',16),(1128,'9','ACCESS_IN_CONTROL_PANEL',32),(1129,'23','PREFERENCES',16),(1130,'23','ACCESS_IN_CONTROL_PANEL',32),(1131,'26','PREFERENCES',16),(1132,'26','ACCESS_IN_CONTROL_PANEL',32),(1133,'27','PREFERENCES',16),(1134,'27','ACCESS_IN_CONTROL_PANEL',32),(1135,'29','PREFERENCES',16),(1136,'29','ACCESS_IN_CONTROL_PANEL',32),(1137,'130','PREFERENCES',16),(1138,'131','PREFERENCES',16),(1139,'132','PREFERENCES',16),(1140,'133','PREFERENCES',16),(1141,'133','ACCESS_IN_CONTROL_PANEL',32),(1142,'135','PREFERENCES',16),(1143,'137','PREFERENCES',16),(1144,'30','PREFERENCES',16),(1145,'30','ACCESS_IN_CONTROL_PANEL',32),(1146,'34','ACCESS_IN_CONTROL_PANEL',32),(1147,'36','ACCESS_IN_CONTROL_PANEL',64),(1148,'39','PREFERENCES',16),(1149,'39','ACCESS_IN_CONTROL_PANEL',32),(1150,'140','PREFERENCES',32),(1151,'141','ADD_PORTLET_DISPLAY_TEMPLATE',16),(1152,'141','PREFERENCES',32),(1153,'141','ACCESS_IN_CONTROL_PANEL',64),(1154,'142','PREFERENCES',16),(1155,'142','ACCESS_IN_CONTROL_PANEL',32),(1156,'143','PREFERENCES',16),(1157,'143','ACCESS_IN_CONTROL_PANEL',32),(1158,'145','PREFERENCES',16),(1159,'145','ACCESS_IN_CONTROL_PANEL',32),(1160,'148','PREFERENCES',16),(1161,'148','ACCESS_IN_CONTROL_PANEL',32),(1162,'47','PREFERENCES',16),(1163,'47','ACCESS_IN_CONTROL_PANEL',32),(1164,'48','PREFERENCES',16),(1165,'48','ACCESS_IN_CONTROL_PANEL',32),(1166,'49','PREFERENCES',16),(1167,'49','ACCESS_IN_CONTROL_PANEL',32),(1168,'150','PREFERENCES',16),(1169,'151','PREFERENCES',16),(1170,'152','PREFERENCES',16),(1171,'153','PREFERENCES',32),(1172,'157','PREFERENCES',16),(1173,'158','PREFERENCES',32),(1174,'50','PREFERENCES',16),(1175,'50','ACCESS_IN_CONTROL_PANEL',32),(1176,'54','PREFERENCES',16),(1177,'54','ACCESS_IN_CONTROL_PANEL',32),(1178,'56','PREFERENCES',16),(1179,'56','ACCESS_IN_CONTROL_PANEL',32),(1180,'58','PREFERENCES',16),(1181,'58','ACCESS_IN_CONTROL_PANEL',32),(1182,'59','ACCESS_IN_CONTROL_PANEL',32),(1183,'160','PREFERENCES',16),(1184,'160','ACCESS_IN_CONTROL_PANEL',32),(1185,'164','PREFERENCES',16),(1186,'164','ACCESS_IN_CONTROL_PANEL',32),(1187,'169','ACCESS_IN_CONTROL_PANEL',32),(1188,'61','PREFERENCES',16),(1189,'61','ACCESS_IN_CONTROL_PANEL',32),(1190,'62','PREFERENCES',16),(1191,'62','ACCESS_IN_CONTROL_PANEL',32),(1192,'64','PREFERENCES',16),(1193,'64','ACCESS_IN_CONTROL_PANEL',32),(1194,'66','PREFERENCES',16),(1195,'66','ACCESS_IN_CONTROL_PANEL',32),(1196,'67','PREFERENCES',16),(1197,'67','ACCESS_IN_CONTROL_PANEL',32),(1198,'170','PREFERENCES',16),(1199,'170','ACCESS_IN_CONTROL_PANEL',32),(1200,'172','PREFERENCES',16),(1201,'172','ACCESS_IN_CONTROL_PANEL',32),(1202,'173','PREFERENCES',32),(1203,'175','PREFERENCES',16),(1204,'175','ACCESS_IN_CONTROL_PANEL',32),(1205,'176','PREFERENCES',32),(1206,'179','PREFERENCES',32),(1207,'70','PREFERENCES',16),(1208,'70','ACCESS_IN_CONTROL_PANEL',32),(1209,'71','PREFERENCES',16),(1210,'71','ACCESS_IN_CONTROL_PANEL',32),(1211,'73','PREFERENCES',16),(1212,'73','ACCESS_IN_CONTROL_PANEL',32),(1213,'77','PREFERENCES',16),(1214,'77','ACCESS_IN_CONTROL_PANEL',32),(1215,'180','PREFERENCES',16),(1216,'180','ACCESS_IN_CONTROL_PANEL',32),(1217,'181','PREFERENCES',16),(1218,'181','ACCESS_IN_CONTROL_PANEL',32),(1219,'182','VIEW',1),(1220,'182','ADD_TO_PAGE',2),(1221,'182','CONFIGURATION',4),(1222,'182','PERMISSIONS',8),(1223,'182','PREFERENCES',16),(1224,'182','ACCESS_IN_CONTROL_PANEL',32),(1225,'183','VIEW',1),(1226,'183','ADD_TO_PAGE',2),(1227,'183','CONFIGURATION',4),(1228,'183','PERMISSIONS',8),(1229,'183','PREFERENCES',16),(1230,'183','ACCESS_IN_CONTROL_PANEL',32),(1231,'184','ADD_TO_PAGE',2),(1232,'184','CONFIGURATION',4),(1233,'184','VIEW',1),(1234,'184','PERMISSIONS',8),(1235,'184','PREFERENCES',16),(1236,'184','ACCESS_IN_CONTROL_PANEL',32),(1237,'185','VIEW',1),(1238,'185','ADD_TO_PAGE',2),(1239,'185','CONFIGURATION',4),(1240,'185','PERMISSIONS',8),(1241,'185','PREFERENCES',16),(1242,'185','ACCESS_IN_CONTROL_PANEL',32),(1243,'186','ADD_TO_PAGE',2),(1244,'186','CONFIGURATION',4),(1245,'186','VIEW',1),(1246,'186','PERMISSIONS',8),(1247,'186','PREFERENCES',16),(1248,'186','ACCESS_IN_CONTROL_PANEL',32),(1249,'187','ADD_TO_PAGE',2),(1250,'187','CONFIGURATION',4),(1251,'187','VIEW',1),(1252,'187','PERMISSIONS',8),(1253,'187','PREFERENCES',16),(1254,'187','ACCESS_IN_CONTROL_PANEL',32),(1255,'100','PREFERENCES',16),(1256,'100','ACCESS_IN_CONTROL_PANEL',32),(1257,'188','ADD_TO_PAGE',2),(1258,'188','CONFIGURATION',4),(1259,'188','VIEW',1),(1260,'188','PERMISSIONS',8),(1261,'188','PREFERENCES',16),(1262,'188','ACCESS_IN_CONTROL_PANEL',32),(1263,'101','ADD_PORTLET_DISPLAY_TEMPLATE',16),(1264,'101','SUBSCRIBE',32),(1265,'101','PREFERENCES',64),(1266,'101','ACCESS_IN_CONTROL_PANEL',128),(1267,'102','PREFERENCES',16),(1268,'102','ACCESS_IN_CONTROL_PANEL',32),(1269,'103','PREFERENCES',16),(1270,'103','ACCESS_IN_CONTROL_PANEL',32),(1271,'107','PREFERENCES',16),(1272,'107','ACCESS_IN_CONTROL_PANEL',32),(1273,'108','PREFERENCES',16),(1274,'108','ACCESS_IN_CONTROL_PANEL',32),(1275,'82','PREFERENCES',16),(1276,'82','ACCESS_IN_CONTROL_PANEL',32),(1277,'83','ACCESS_IN_CONTROL_PANEL',64),(1278,'84','ACCESS_IN_CONTROL_PANEL',64),(1279,'85','PREFERENCES',16),(1280,'85','ADD_PORTLET_DISPLAY_TEMPLATE',32),(1281,'85','ACCESS_IN_CONTROL_PANEL',64),(1282,'86','PREFERENCES',16),(1283,'86','ACCESS_IN_CONTROL_PANEL',32),(1284,'1_WAR_marketplaceportlet','PREFERENCES',32),(1285,'3_WAR_marketplaceportlet','VIEW',1),(1286,'3_WAR_marketplaceportlet','ADD_TO_PAGE',2),(1287,'3_WAR_marketplaceportlet','CONFIGURATION',4),(1288,'3_WAR_marketplaceportlet','PERMISSIONS',8),(1289,'3_WAR_marketplaceportlet','PREFERENCES',16),(1290,'3_WAR_marketplaceportlet','ACCESS_IN_CONTROL_PANEL',32),(1291,'2_WAR_marketplaceportlet','PREFERENCES',32),(1292,'1_WAR_calendarportlet','PREFERENCES',32),(1293,'com.liferay.calendar.model.CalendarResource','ADD_CALENDAR',2),(1294,'com.liferay.calendar.model.CalendarResource','DELETE',4),(1295,'com.liferay.calendar.model.CalendarResource','UPDATE',8),(1296,'com.liferay.calendar.model.CalendarResource','VIEW',1),(1297,'com.liferay.calendar.model.CalendarResource','PERMISSIONS',16),(1298,'com.liferay.calendar.model.CalendarBooking','ADD_DISCUSSION',2),(1299,'com.liferay.calendar.model.CalendarBooking','DELETE_DISCUSSION',4),(1300,'com.liferay.calendar.model.CalendarBooking','PERMISSIONS',8),(1301,'com.liferay.calendar.model.CalendarBooking','UPDATE_DISCUSSION',16),(1302,'com.liferay.calendar','ADD_RESOURCE',2),(1303,'com.liferay.calendar','PERMISSIONS',4),(1304,'com.liferay.calendar.model.Calendar','DELETE',2),(1305,'com.liferay.calendar.model.Calendar','MANAGE_BOOKINGS',4),(1306,'com.liferay.calendar.model.Calendar','PERMISSIONS',8),(1307,'com.liferay.calendar.model.Calendar','UPDATE',16),(1308,'com.liferay.calendar.model.Calendar','VIEW',1),(1309,'com.liferay.calendar.model.Calendar','VIEW_BOOKING_DETAILS',32),(1310,'1_WAR_chatportlet','PERMISSIONS',8),(1311,'1_WAR_chatportlet','PREFERENCES',16),(1312,'1_WAR_chatportlet','ACCESS_IN_CONTROL_PANEL',32),(1313,'1_WAR_eventsdisplayportlet','VIEW',1),(1314,'1_WAR_eventsdisplayportlet','ADD_TO_PAGE',2),(1315,'1_WAR_eventsdisplayportlet','CONFIGURATION',4),(1316,'1_WAR_eventsdisplayportlet','PERMISSIONS',8),(1317,'1_WAR_eventsdisplayportlet','PREFERENCES',16),(1318,'1_WAR_eventsdisplayportlet','ACCESS_IN_CONTROL_PANEL',32),(1319,'1_WAR_microblogsportlet','VIEW',1),(1320,'1_WAR_microblogsportlet','ADD_TO_PAGE',2),(1321,'1_WAR_microblogsportlet','CONFIGURATION',4),(1322,'1_WAR_microblogsportlet','PERMISSIONS',8),(1323,'1_WAR_microblogsportlet','PREFERENCES',16),(1324,'1_WAR_microblogsportlet','ACCESS_IN_CONTROL_PANEL',32),(1325,'com.liferay.microblogs.model.MicroblogsEntry','DELETE',2),(1326,'com.liferay.microblogs.model.MicroblogsEntry','PERMISSIONS',4),(1327,'com.liferay.microblogs.model.MicroblogsEntry','UPDATE',8),(1328,'com.liferay.microblogs.model.MicroblogsEntry','VIEW',1),(1329,'com.liferay.microblogs','ADD_ENTRY',2),(1330,'com.liferay.microblogs','PERMISSIONS',4),(1331,'2_WAR_microblogsportlet','VIEW',1),(1332,'2_WAR_microblogsportlet','ADD_TO_PAGE',2),(1333,'2_WAR_microblogsportlet','CONFIGURATION',4),(1334,'2_WAR_microblogsportlet','PERMISSIONS',8),(1335,'2_WAR_microblogsportlet','PREFERENCES',16),(1336,'2_WAR_microblogsportlet','ACCESS_IN_CONTROL_PANEL',32),(1337,'2_WAR_notificationsportlet','VIEW',1),(1338,'2_WAR_notificationsportlet','ADD_TO_PAGE',2),(1339,'2_WAR_notificationsportlet','CONFIGURATION',4),(1340,'2_WAR_notificationsportlet','PERMISSIONS',8),(1341,'2_WAR_notificationsportlet','PREFERENCES',16),(1342,'2_WAR_notificationsportlet','ACCESS_IN_CONTROL_PANEL',32),(1343,'1_WAR_notificationsportlet','VIEW',1),(1344,'1_WAR_notificationsportlet','ADD_TO_PAGE',2),(1345,'1_WAR_notificationsportlet','CONFIGURATION',4),(1346,'1_WAR_notificationsportlet','PERMISSIONS',8),(1347,'1_WAR_notificationsportlet','PREFERENCES',16),(1348,'1_WAR_notificationsportlet','ACCESS_IN_CONTROL_PANEL',32),(1349,'1_WAR_opensocialportlet','ACCESS_IN_CONTROL_PANEL',8),(1350,'1_WAR_opensocialportlet','PERMISSIONS',16),(1351,'1_WAR_opensocialportlet','PREFERENCES',32),(1352,'com.liferay.opensocial.model.Gadget','DELETE',2),(1353,'com.liferay.opensocial.model.Gadget','PERMISSIONS',4),(1354,'com.liferay.opensocial.model.Gadget','UPDATE',8),(1355,'com.liferay.opensocial.model.Gadget','VIEW',1),(1356,'com.liferay.opensocial','PERMISSIONS',2),(1357,'com.liferay.opensocial','PUBLISH_GADGET',4),(1358,'2_WAR_opensocialportlet','PERMISSIONS',8),(1359,'2_WAR_opensocialportlet','PREFERENCES',16),(1360,'2_WAR_opensocialportlet','ACCESS_IN_CONTROL_PANEL',32),(1361,'3_WAR_opensocialportlet','ADD_TO_PAGE',2),(1362,'3_WAR_opensocialportlet','CONFIGURATION',4),(1363,'3_WAR_opensocialportlet','VIEW',1),(1364,'3_WAR_opensocialportlet','PERMISSIONS',8),(1365,'3_WAR_opensocialportlet','PREFERENCES',16),(1366,'3_WAR_opensocialportlet','ACCESS_IN_CONTROL_PANEL',32),(1367,'4_WAR_opensocialportlet','ACCESS_IN_CONTROL_PANEL',2),(1368,'4_WAR_opensocialportlet','CONFIGURATION',4),(1369,'4_WAR_opensocialportlet','VIEW',1),(1370,'4_WAR_opensocialportlet','PERMISSIONS',8),(1371,'4_WAR_opensocialportlet','PREFERENCES',16),(1372,'1_WAR_privatemessagingportlet','VIEW',1),(1373,'1_WAR_privatemessagingportlet','ADD_TO_PAGE',2),(1374,'1_WAR_privatemessagingportlet','CONFIGURATION',4),(1375,'1_WAR_privatemessagingportlet','PERMISSIONS',8),(1376,'1_WAR_privatemessagingportlet','PREFERENCES',16),(1377,'1_WAR_privatemessagingportlet','ACCESS_IN_CONTROL_PANEL',32),(1378,'1_WAR_soannouncementsportlet','VIEW',1),(1379,'1_WAR_soannouncementsportlet','ADD_TO_PAGE',2),(1380,'1_WAR_soannouncementsportlet','CONFIGURATION',4),(1381,'1_WAR_soannouncementsportlet','PERMISSIONS',8),(1382,'1_WAR_soannouncementsportlet','PREFERENCES',16),(1383,'1_WAR_soannouncementsportlet','ACCESS_IN_CONTROL_PANEL',32),(1384,'8_WAR_soportlet','VIEW',1),(1385,'8_WAR_soportlet','ADD_TO_PAGE',2),(1386,'8_WAR_soportlet','CONFIGURATION',4),(1387,'8_WAR_soportlet','PERMISSIONS',8),(1388,'8_WAR_soportlet','PREFERENCES',16),(1389,'8_WAR_soportlet','ACCESS_IN_CONTROL_PANEL',32),(1390,'2_WAR_soportlet','VIEW',1),(1391,'2_WAR_soportlet','ADD_TO_PAGE',2),(1392,'2_WAR_soportlet','CONFIGURATION',4),(1393,'2_WAR_soportlet','PERMISSIONS',8),(1394,'2_WAR_soportlet','PREFERENCES',16),(1395,'2_WAR_soportlet','ACCESS_IN_CONTROL_PANEL',32),(1396,'4_WAR_soportlet','VIEW',1),(1397,'4_WAR_soportlet','ADD_TO_PAGE',2),(1398,'4_WAR_soportlet','CONFIGURATION',4),(1399,'4_WAR_soportlet','PERMISSIONS',8),(1400,'4_WAR_soportlet','PREFERENCES',16),(1401,'4_WAR_soportlet','ACCESS_IN_CONTROL_PANEL',32),(1402,'7_WAR_soportlet','VIEW',1),(1403,'7_WAR_soportlet','ADD_TO_PAGE',2),(1404,'7_WAR_soportlet','CONFIGURATION',4),(1405,'7_WAR_soportlet','PERMISSIONS',8),(1406,'7_WAR_soportlet','PREFERENCES',16),(1407,'7_WAR_soportlet','ACCESS_IN_CONTROL_PANEL',32),(1408,'1_WAR_soportlet','VIEW',1),(1409,'1_WAR_soportlet','ADD_TO_PAGE',2),(1410,'1_WAR_soportlet','CONFIGURATION',4),(1411,'1_WAR_soportlet','PERMISSIONS',8),(1412,'1_WAR_soportlet','PREFERENCES',16),(1413,'1_WAR_soportlet','ACCESS_IN_CONTROL_PANEL',32),(1414,'5_WAR_soportlet','VIEW',1),(1415,'5_WAR_soportlet','ADD_TO_PAGE',2),(1416,'5_WAR_soportlet','CONFIGURATION',4),(1417,'5_WAR_soportlet','PERMISSIONS',8),(1418,'5_WAR_soportlet','PREFERENCES',16),(1419,'5_WAR_soportlet','ACCESS_IN_CONTROL_PANEL',32),(1420,'2_WAR_contactsportlet','VIEW',1),(1421,'2_WAR_contactsportlet','ADD_TO_PAGE',2),(1422,'2_WAR_contactsportlet','CONFIGURATION',4),(1423,'2_WAR_contactsportlet','PERMISSIONS',8),(1424,'2_WAR_contactsportlet','PREFERENCES',16),(1425,'2_WAR_contactsportlet','ACCESS_IN_CONTROL_PANEL',32),(1426,'4_WAR_contactsportlet','VIEW',1),(1427,'4_WAR_contactsportlet','ADD_TO_PAGE',2),(1428,'4_WAR_contactsportlet','CONFIGURATION',4),(1429,'4_WAR_contactsportlet','PERMISSIONS',8),(1430,'4_WAR_contactsportlet','PREFERENCES',16),(1431,'4_WAR_contactsportlet','ACCESS_IN_CONTROL_PANEL',32),(1432,'1_WAR_contactsportlet','ACCESS_IN_CONTROL_PANEL',2),(1433,'1_WAR_contactsportlet','ADD_TO_PAGE',4),(1434,'1_WAR_contactsportlet','CONFIGURATION',8),(1435,'1_WAR_contactsportlet','VIEW',1),(1436,'1_WAR_contactsportlet','PERMISSIONS',16),(1437,'1_WAR_contactsportlet','PREFERENCES',32),(1438,'3_WAR_contactsportlet','VIEW',1),(1439,'3_WAR_contactsportlet','ADD_TO_PAGE',2),(1440,'3_WAR_contactsportlet','CONFIGURATION',4),(1441,'3_WAR_contactsportlet','PERMISSIONS',8),(1442,'3_WAR_contactsportlet','PREFERENCES',16),(1443,'3_WAR_contactsportlet','ACCESS_IN_CONTROL_PANEL',32),(1444,'2_WAR_tasksportlet','VIEW',1),(1445,'2_WAR_tasksportlet','ADD_TO_PAGE',2),(1446,'2_WAR_tasksportlet','CONFIGURATION',4),(1447,'2_WAR_tasksportlet','PERMISSIONS',8),(1448,'2_WAR_tasksportlet','PREFERENCES',16),(1449,'2_WAR_tasksportlet','ACCESS_IN_CONTROL_PANEL',32),(1450,'1_WAR_tasksportlet','VIEW',1),(1451,'1_WAR_tasksportlet','ADD_TO_PAGE',2),(1452,'1_WAR_tasksportlet','CONFIGURATION',4),(1453,'1_WAR_tasksportlet','PERMISSIONS',8),(1454,'1_WAR_tasksportlet','PREFERENCES',16),(1455,'1_WAR_tasksportlet','ACCESS_IN_CONTROL_PANEL',32),(1456,'com.liferay.tasks.model.TasksEntry','ADD_DISCUSSION',2),(1457,'com.liferay.tasks.model.TasksEntry','DELETE_DISCUSSION',4),(1458,'com.liferay.tasks.model.TasksEntry','UPDATE',8),(1459,'com.liferay.tasks.model.TasksEntry','UPDATE_DISCUSSION',16),(1460,'com.liferay.tasks.model.TasksEntry','VIEW',1),(1461,'com.liferay.tasks.model.TasksEntry','PERMISSIONS',32),(1462,'com.liferay.tasks','ADD_ENTRY',2),(1463,'com.liferay.tasks','PERMISSIONS',4),(1464,'1_WAR_webformportlet','PERMISSIONS',8),(1465,'1_WAR_webformportlet','PREFERENCES',16),(1466,'1_WAR_webformportlet','ACCESS_IN_CONTROL_PANEL',32),(1467,'1_WAR_wysiwygportlet','VIEW',1),(1468,'1_WAR_wysiwygportlet','ADD_TO_PAGE',2),(1469,'1_WAR_wysiwygportlet','CONFIGURATION',4),(1470,'1_WAR_wysiwygportlet','PERMISSIONS',8),(1471,'1_WAR_wysiwygportlet','PREFERENCES',16),(1472,'1_WAR_wysiwygportlet','ACCESS_IN_CONTROL_PANEL',32),(1473,'1_WAR_soconfigurationsportlet','VIEW',1),(1474,'1_WAR_soconfigurationsportlet','ADD_TO_PAGE',2),(1475,'1_WAR_soconfigurationsportlet','CONFIGURATION',4),(1476,'1_WAR_soconfigurationsportlet','PERMISSIONS',8),(1477,'1_WAR_soconfigurationsportlet','PREFERENCES',16),(1478,'1_WAR_soconfigurationsportlet','ACCESS_IN_CONTROL_PANEL',32); /*!40000 ALTER TABLE `ResourceAction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceBlock` -- DROP TABLE IF EXISTS `ResourceBlock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceBlock` ( `resourceBlockId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `permissionsHash` varchar(75) DEFAULT NULL, `referenceCount` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceBlockId`), UNIQUE KEY `IX_AEEA209C` (`companyId`,`groupId`,`name`,`permissionsHash`), KEY `IX_DA30B086` (`companyId`,`groupId`,`name`), KEY `IX_2D4CC782` (`companyId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceBlock` -- LOCK TABLES `ResourceBlock` WRITE; /*!40000 ALTER TABLE `ResourceBlock` DISABLE KEYS */; /*!40000 ALTER TABLE `ResourceBlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceBlockPermission` -- DROP TABLE IF EXISTS `ResourceBlockPermission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceBlockPermission` ( `resourceBlockPermissionId` bigint(20) NOT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `roleId` bigint(20) DEFAULT NULL, `actionIds` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceBlockPermissionId`), UNIQUE KEY `IX_D63D20BB` (`resourceBlockId`,`roleId`), KEY `IX_4AB3756` (`resourceBlockId`), KEY `IX_20A2E3D9` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceBlockPermission` -- LOCK TABLES `ResourceBlockPermission` WRITE; /*!40000 ALTER TABLE `ResourceBlockPermission` DISABLE KEYS */; /*!40000 ALTER TABLE `ResourceBlockPermission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourcePermission` -- DROP TABLE IF EXISTS `ResourcePermission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourcePermission` ( `resourcePermissionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `scope` int(11) DEFAULT NULL, `primKey` varchar(255) DEFAULT NULL, `roleId` bigint(20) DEFAULT NULL, `actionIds` bigint(20) DEFAULT NULL, `ownerId` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourcePermissionId`), UNIQUE KEY `IX_8D83D0CE` (`companyId`,`name`,`scope`,`primKey`,`roleId`), KEY `IX_60B99860` (`companyId`,`name`,`scope`), KEY `IX_2200AA69` (`companyId`,`name`,`scope`,`primKey`), KEY `IX_A37A0588` (`roleId`), KEY `IX_26284944` (`companyId`,`primKey`), KEY `IX_F4555981` (`scope`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourcePermission` -- LOCK TABLES `ResourcePermission` WRITE; /*!40000 ALTER TABLE `ResourcePermission` DISABLE KEYS */; INSERT INTO `ResourcePermission` VALUES (1,10202,'com.liferay.portal.model.Layout',4,'10222',10210,1023,0),(2,10202,'com.liferay.portal.model.Layout',4,'10222',10214,515,NULL),(3,10202,'com.liferay.portal.model.Layout',4,'10222',10209,1,NULL),(7,10202,'com.liferay.portal.model.User',4,'10239',10210,31,10239),(8,10202,'98',1,'10202',10211,4,NULL),(9,10202,'98',1,'10202',10212,4,NULL),(10,10202,'66',1,'10202',10211,2,NULL),(11,10202,'66',1,'10202',10212,2,NULL),(12,10202,'27',1,'10202',10211,2,NULL),(13,10202,'27',1,'10202',10212,2,NULL),(14,10202,'122',1,'10202',10209,2,NULL),(15,10202,'122',1,'10202',10211,2,NULL),(16,10202,'122',1,'10202',10212,2,NULL),(17,10202,'36',1,'10202',10211,2,NULL),(18,10202,'36',1,'10202',10212,2,NULL),(19,10202,'26',1,'10202',10211,2,NULL),(20,10202,'26',1,'10202',10212,2,NULL),(21,10202,'104',1,'10202',10208,2,NULL),(22,10202,'64',1,'10202',10209,2,NULL),(23,10202,'64',1,'10202',10211,2,NULL),(24,10202,'64',1,'10202',10212,2,NULL),(25,10202,'100',1,'10202',10211,2,NULL),(26,10202,'100',1,'10202',10212,2,NULL),(27,10202,'19',1,'10202',10211,4,NULL),(28,10202,'19',1,'10202',10212,4,NULL),(29,10202,'148',1,'10202',10209,2,NULL),(30,10202,'148',1,'10202',10211,2,NULL),(31,10202,'148',1,'10202',10212,2,NULL),(32,10202,'11',1,'10202',10211,2,NULL),(33,10202,'11',1,'10202',10212,2,NULL),(34,10202,'29',1,'10202',10211,2,NULL),(35,10202,'29',1,'10202',10212,2,NULL),(36,10202,'1_WAR_calendarportlet',1,'10202',10211,4,NULL),(37,10202,'1_WAR_calendarportlet',1,'10202',10212,4,NULL),(38,10202,'58',1,'10202',10209,2,NULL),(39,10202,'58',1,'10202',10211,2,NULL),(40,10202,'58',1,'10202',10212,2,NULL),(41,10202,'71',1,'10202',10209,2,NULL),(42,10202,'71',1,'10202',10211,2,NULL),(43,10202,'71',1,'10202',10212,2,NULL),(44,10202,'97',1,'10202',10211,2,NULL),(45,10202,'97',1,'10202',10212,2,NULL),(46,10202,'39',1,'10202',10211,2,NULL),(47,10202,'39',1,'10202',10212,2,NULL),(48,10202,'85',1,'10202',10209,2,NULL),(49,10202,'85',1,'10202',10211,2,NULL),(50,10202,'85',1,'10202',10212,2,NULL),(51,10202,'118',1,'10202',10209,2,NULL),(52,10202,'118',1,'10202',10211,2,NULL),(53,10202,'118',1,'10202',10212,2,NULL),(54,10202,'79',1,'10202',10208,4,NULL),(55,10202,'107',1,'10202',10211,2,NULL),(56,10202,'107',1,'10202',10212,2,NULL),(57,10202,'30',1,'10202',10211,2,NULL),(58,10202,'30',1,'10202',10212,2,NULL),(59,10202,'48',1,'10202',10211,2,NULL),(60,10202,'48',1,'10202',10212,2,NULL),(61,10202,'62',1,'10202',10211,2,NULL),(62,10202,'62',1,'10202',10212,2,NULL),(63,10202,'159',1,'10202',10209,2,NULL),(64,10202,'159',1,'10202',10211,2,NULL),(65,10202,'159',1,'10202',10212,2,NULL),(66,10202,'108',1,'10202',10211,2,NULL),(67,10202,'108',1,'10202',10212,2,NULL),(68,10202,'84',1,'10202',10211,4,NULL),(69,10202,'84',1,'10202',10212,4,NULL),(70,10202,'101',1,'10202',10209,2,NULL),(71,10202,'101',1,'10202',10211,2,NULL),(72,10202,'101',1,'10202',10212,2,NULL),(73,10202,'121',1,'10202',10209,2,NULL),(74,10202,'121',1,'10202',10211,2,NULL),(75,10202,'121',1,'10202',10212,2,NULL),(76,10202,'37',1,'10202',10211,2,NULL),(77,10202,'37',1,'10202',10212,2,NULL),(78,10202,'143',1,'10202',10209,2,NULL),(79,10202,'143',1,'10202',10211,2,NULL),(80,10202,'143',1,'10202',10212,2,NULL),(81,10202,'77',1,'10202',10209,2,NULL),(82,10202,'77',1,'10202',10211,2,NULL),(83,10202,'77',1,'10202',10212,2,NULL),(84,10202,'115',1,'10202',10209,2,NULL),(85,10202,'115',1,'10202',10211,2,NULL),(86,10202,'115',1,'10202',10212,2,NULL),(87,10202,'56',1,'10202',10209,2,NULL),(88,10202,'56',1,'10202',10211,2,NULL),(89,10202,'56',1,'10202',10212,2,NULL),(90,10202,'16',1,'10202',10211,8,NULL),(91,10202,'16',1,'10202',10212,8,NULL),(92,10202,'111',1,'10202',10208,2,NULL),(93,10202,'3',1,'10202',10209,2,NULL),(94,10202,'3',1,'10202',10211,2,NULL),(95,10202,'3',1,'10202',10212,2,NULL),(96,10202,'23',1,'10202',10211,2,NULL),(97,10202,'23',1,'10202',10212,2,NULL),(98,10202,'20',1,'10202',10209,4,NULL),(99,10202,'20',1,'10202',10211,4,NULL),(100,10202,'20',1,'10202',10212,4,NULL),(101,10202,'83',1,'10202',10211,4,NULL),(102,10202,'83',1,'10202',10212,4,NULL),(103,10202,'99',1,'10202',10208,2,NULL),(104,10202,'70',1,'10202',10211,2,NULL),(105,10202,'70',1,'10202',10212,2,NULL),(106,10202,'141',1,'10202',10209,2,NULL),(107,10202,'141',1,'10202',10211,2,NULL),(108,10202,'141',1,'10202',10212,2,NULL),(109,10202,'9',1,'10202',10208,2,NULL),(110,10202,'28',1,'10202',10211,4,NULL),(111,10202,'28',1,'10202',10212,4,NULL),(112,10202,'47',1,'10202',10209,2,NULL),(113,10202,'47',1,'10202',10211,2,NULL),(114,10202,'47',1,'10202',10212,2,NULL),(115,10202,'15',1,'10202',10211,4,NULL),(116,10202,'15',1,'10202',10212,4,NULL),(117,10202,'116',1,'10202',10209,2,NULL),(118,10202,'116',1,'10202',10211,2,NULL),(119,10202,'116',1,'10202',10212,2,NULL),(120,10202,'82',1,'10202',10209,2,NULL),(121,10202,'82',1,'10202',10211,2,NULL),(122,10202,'82',1,'10202',10212,2,NULL),(123,10202,'54',1,'10202',10211,2,NULL),(124,10202,'54',1,'10202',10212,2,NULL),(125,10202,'34',1,'10202',10211,2,NULL),(126,10202,'34',1,'10202',10212,2,NULL),(127,10202,'61',1,'10202',10211,2,NULL),(128,10202,'61',1,'10202',10212,2,NULL),(129,10202,'73',1,'10202',10209,2,NULL),(130,10202,'73',1,'10202',10211,2,NULL),(131,10202,'73',1,'10202',10212,2,NULL),(132,10202,'31',1,'10202',10209,4,NULL),(133,10202,'31',1,'10202',10211,4,NULL),(134,10202,'31',1,'10202',10212,4,NULL),(135,10202,'50',1,'10202',10209,2,NULL),(136,10202,'50',1,'10202',10211,2,NULL),(137,10202,'50',1,'10202',10212,2,NULL),(138,10202,'33',1,'10202',10209,4,NULL),(139,10202,'33',1,'10202',10211,4,NULL),(140,10202,'33',1,'10202',10212,4,NULL),(141,10202,'114',1,'10202',10209,2,NULL),(142,10202,'114',1,'10202',10211,2,NULL),(143,10202,'114',1,'10202',10212,2,NULL),(144,10202,'67',1,'10202',10211,2,NULL),(145,10202,'67',1,'10202',10212,2,NULL),(146,10202,'110',1,'10202',10211,2,NULL),(147,10202,'110',1,'10202',10212,2,NULL),(148,10202,'59',1,'10202',10211,2,NULL),(149,10202,'59',1,'10202',10212,2,NULL),(150,10202,'102',1,'10202',10209,2,NULL),(151,10202,'102',1,'10202',10211,2,NULL),(152,10202,'102',1,'10202',10212,2,NULL),(153,10202,'com.liferay.portal.model.LayoutPrototype',4,'10334',10210,15,NULL),(154,10202,'com.liferay.portal.model.Layout',4,'10338',10210,1023,0),(155,10202,'com.liferay.portal.model.Layout',4,'10338',10214,515,NULL),(157,10202,'com.liferay.portal.model.LayoutPrototype',4,'10343',10210,15,NULL),(158,10202,'com.liferay.portal.model.Layout',4,'10347',10210,1023,0),(159,10202,'com.liferay.portal.model.Layout',4,'10347',10214,515,NULL),(161,10202,'com.liferay.portal.model.LayoutPrototype',4,'10352',10210,15,NULL),(162,10202,'com.liferay.portal.model.Layout',4,'10356',10210,1023,0),(163,10202,'com.liferay.portal.model.Layout',4,'10356',10214,515,NULL),(165,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'10361',10210,15,NULL),(169,10202,'com.liferay.portal.model.Layout',4,'10370',10210,1023,0),(170,10202,'com.liferay.portal.model.Layout',4,'10370',10214,515,NULL),(172,10202,'com.liferay.portal.model.Layout',4,'10375',10210,1023,0),(173,10202,'com.liferay.portal.model.Layout',4,'10375',10214,515,NULL),(175,10202,'com.liferay.portal.model.Layout',4,'10380',10210,1023,0),(176,10202,'com.liferay.portal.model.Layout',4,'10380',10214,515,NULL),(178,10202,'com.liferay.portal.model.Layout',4,'10385',10210,1023,0),(179,10202,'com.liferay.portal.model.Layout',4,'10385',10214,515,NULL),(181,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'10390',10210,15,NULL),(185,10202,'com.liferay.portal.model.Layout',4,'10399',10210,1023,0),(186,10202,'com.liferay.portal.model.Layout',4,'10399',10214,515,NULL),(188,10202,'com.liferay.portal.model.Layout',4,'10404',10210,1023,0),(189,10202,'com.liferay.portal.model.Layout',4,'10404',10214,515,NULL),(191,10202,'com.liferay.portal.model.Layout',4,'10410',10210,1023,0),(192,10202,'com.liferay.portal.model.Layout',4,'10410',10214,515,NULL),(194,10202,'com.liferay.portal.model.Layout',4,'10415',10210,1023,0),(195,10202,'com.liferay.portal.model.Layout',4,'10415',10214,515,NULL),(197,10202,'1_WAR_googlemapsportlet',1,'10202',10208,2,NULL),(198,10202,'1_WAR_googlemapsportlet',1,'10202',10209,2,NULL),(199,10202,'1_WAR_googlemapsportlet',1,'10202',10211,2,NULL),(200,10202,'1_WAR_googlemapsportlet',1,'10202',10212,2,NULL),(201,10202,'com.liferay.portal.model.Role',4,'10447',10210,127,NULL),(202,10202,'com.liferay.portal.model.Role',4,'10453',10210,127,NULL),(203,10202,'com.liferay.portal.model.Role',4,'10456',10210,127,NULL),(204,10202,'1_WAR_mailportlet',1,'10202',10208,2,NULL),(205,10202,'1_WAR_mailportlet',1,'10202',10209,2,NULL),(206,10202,'1_WAR_mailportlet',1,'10202',10211,2,NULL),(207,10202,'1_WAR_mailportlet',1,'10202',10212,2,NULL),(208,10202,'2_WAR_mailportlet',1,'10202',10208,4,NULL),(209,10202,'2_WAR_mailportlet',1,'10202',10209,4,NULL),(210,10202,'2_WAR_mailportlet',1,'10202',10211,4,NULL),(211,10202,'2_WAR_mailportlet',1,'10202',10212,4,NULL),(212,10202,'1_WAR_opensocialportlet',1,'10202',10208,2,NULL),(213,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'10477',10210,15,NULL),(214,10202,'6_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(215,10202,'6_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(216,10202,'6_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(217,10202,'6_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(218,10202,'1_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(219,10202,'1_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(220,10202,'1_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(221,10202,'1_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(222,10202,'3_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(223,10202,'3_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(224,10202,'3_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(225,10202,'3_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(226,10202,'7_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(227,10202,'7_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(228,10202,'7_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(229,10202,'7_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(230,10202,'8_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(231,10202,'8_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(232,10202,'8_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(233,10202,'8_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(234,10202,'4_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(235,10202,'4_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(236,10202,'4_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(237,10202,'4_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(238,10202,'2_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(239,10202,'2_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(240,10202,'2_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(241,10202,'2_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(242,10202,'5_WAR_socialnetworkingportlet',1,'10202',10208,2,NULL),(243,10202,'5_WAR_socialnetworkingportlet',1,'10202',10209,2,NULL),(244,10202,'5_WAR_socialnetworkingportlet',1,'10202',10211,2,NULL),(245,10202,'5_WAR_socialnetworkingportlet',1,'10202',10212,2,NULL),(246,10202,'1_WAR_webformportlet',1,'10202',10208,2,NULL),(247,10202,'1_WAR_webformportlet',1,'10202',10209,2,NULL),(248,10202,'1_WAR_webformportlet',1,'10202',10211,2,NULL),(249,10202,'1_WAR_webformportlet',1,'10202',10212,2,NULL),(250,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11802',10210,15,10205),(251,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11802',10214,1,NULL),(252,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11802',10209,1,NULL),(253,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11804',10210,15,10205),(254,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11804',10214,1,NULL),(255,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11804',10209,1,NULL),(256,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10491',10210,247,10205),(257,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10491',10214,5,NULL),(258,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10491',10209,1,NULL),(259,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10492',10210,181,10205),(260,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10492',10214,1,NULL),(261,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10492',10209,1,NULL),(262,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10496',10210,181,10205),(263,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10496',10214,1,NULL),(264,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10496',10209,1,NULL),(265,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10500',10210,181,10205),(266,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10500',10214,1,NULL),(267,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10500',10209,1,NULL),(268,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10504',10210,181,10205),(269,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10504',10214,1,NULL),(270,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10504',10209,1,NULL),(271,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10508',10210,181,10205),(272,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10508',10214,1,NULL),(273,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10508',10209,1,NULL),(274,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10512',10210,181,10205),(275,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10512',10214,1,NULL),(276,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10512',10209,1,NULL),(277,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10516',10210,181,10205),(278,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10516',10214,1,NULL),(279,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10516',10209,1,NULL),(280,10202,'com.liferay.portal.model.Layout',4,'10520',10210,1023,0),(281,10202,'com.liferay.portal.model.Layout',4,'10520',10214,515,NULL),(282,10202,'com.liferay.portal.model.Layout',4,'10520',10209,1,NULL),(283,10202,'145',4,'10520_LAYOUT_145',10210,7,NULL),(284,10202,'145',4,'10520_LAYOUT_145',10214,1,NULL),(285,10202,'145',4,'10520_LAYOUT_145',10209,1,NULL),(286,10202,'56',4,'10520_LAYOUT_56_INSTANCE_zJ2y',10210,7,NULL),(287,10202,'56',4,'10520_LAYOUT_56_INSTANCE_zJ2y',10214,1,NULL),(288,10202,'56',4,'10520_LAYOUT_56_INSTANCE_zJ2y',10209,1,NULL),(289,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10528',10210,255,10205),(290,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10528',10214,3,NULL),(291,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10528',10209,1,NULL),(292,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10531',10210,15,10205),(293,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10531',10214,1,NULL),(294,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10531',10209,1,NULL),(295,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10532',10210,15,10205),(296,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10532',10214,1,NULL),(297,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10532',10209,1,NULL),(298,10202,'56',4,'10520_LAYOUT_56_INSTANCE_0BsX',10210,7,NULL),(299,10202,'56',4,'10520_LAYOUT_56_INSTANCE_0BsX',10214,1,NULL),(300,10202,'56',4,'10520_LAYOUT_56_INSTANCE_0BsX',10209,1,NULL),(301,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10543',10210,255,10205),(302,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10543',10214,3,NULL),(303,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10543',10209,1,NULL),(304,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10546',10210,15,10205),(305,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10546',10214,1,NULL),(306,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10546',10209,1,NULL),(307,10202,'56',4,'10520_LAYOUT_56_INSTANCE_y2Bw',10210,7,NULL),(308,10202,'56',4,'10520_LAYOUT_56_INSTANCE_y2Bw',10214,1,NULL),(309,10202,'56',4,'10520_LAYOUT_56_INSTANCE_y2Bw',10209,1,NULL),(310,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10555',10210,255,10205),(311,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10555',10214,3,NULL),(312,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10555',10209,1,NULL),(313,10202,'56',4,'10520_LAYOUT_56_INSTANCE_Ea40',10210,7,NULL),(314,10202,'56',4,'10520_LAYOUT_56_INSTANCE_Ea40',10214,1,NULL),(315,10202,'56',4,'10520_LAYOUT_56_INSTANCE_Ea40',10209,1,NULL),(316,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10565',10210,255,10205),(317,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10565',10214,3,NULL),(318,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10565',10209,1,NULL),(319,10202,'56',4,'10520_LAYOUT_56_INSTANCE_5Czb',10210,7,NULL),(320,10202,'56',4,'10520_LAYOUT_56_INSTANCE_5Czb',10214,1,NULL),(321,10202,'56',4,'10520_LAYOUT_56_INSTANCE_5Czb',10209,1,NULL),(322,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10574',10210,255,10205),(323,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10574',10214,3,NULL),(324,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10574',10209,1,NULL),(325,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10577',10210,15,10205),(326,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10577',10214,1,NULL),(327,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10577',10209,1,NULL),(328,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10578',10210,15,10205),(329,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10578',10214,1,NULL),(330,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10578',10209,1,NULL),(331,10202,'58',4,'10520_LAYOUT_58',10210,7,NULL),(332,10202,'58',4,'10520_LAYOUT_58',10214,1,NULL),(333,10202,'58',4,'10520_LAYOUT_58',10209,1,NULL),(334,10202,'com.liferay.portal.model.Organization',4,'10586',10210,242801,0),(335,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'10592',10210,15,10205),(336,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'10592',10217,1,NULL),(337,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'10592',10209,1,NULL),(338,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'10593',10210,15,10205),(339,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'10593',10217,1,NULL),(340,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'10593',10209,1,NULL),(341,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10594',10210,31,10205),(342,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10594',10217,3,NULL),(343,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10594',10209,1,NULL),(344,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10595',10210,31,10205),(345,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10595',10217,3,NULL),(346,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10595',10209,1,NULL),(347,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10596',10210,31,10205),(348,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10596',10217,3,NULL),(349,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10596',10209,1,NULL),(350,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10597',10210,31,10205),(351,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10597',10217,3,NULL),(352,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10597',10209,1,NULL),(353,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10598',10210,31,10205),(354,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10598',10217,3,NULL),(355,10202,'com.liferay.portlet.asset.model.AssetCategory',4,'10598',10209,1,NULL),(356,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11803',10210,15,10205),(357,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11803',10217,1,NULL),(358,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11803',10209,1,NULL),(359,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11805',10210,15,10205),(360,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11805',10217,1,NULL),(361,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11805',10209,1,NULL),(362,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10602',10210,247,10205),(363,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10602',10217,5,NULL),(364,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10602',10209,1,NULL),(365,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10603',10210,181,10205),(366,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10603',10217,1,NULL),(367,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10603',10209,1,NULL),(368,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10607',10210,15,10205),(369,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10607',10217,1,NULL),(370,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10607',10209,1,NULL),(371,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10609',10210,181,10205),(372,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10609',10217,1,NULL),(373,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10609',10209,1,NULL),(374,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10613',10210,181,10205),(375,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10613',10217,1,NULL),(376,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10613',10209,1,NULL),(377,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10617',10210,181,10205),(378,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10617',10217,1,NULL),(379,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10617',10209,1,NULL),(380,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10621',10210,15,10205),(381,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10621',10217,1,NULL),(382,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10621',10209,1,NULL),(383,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10622',10210,15,10205),(384,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10622',10217,1,NULL),(385,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10622',10209,1,NULL),(386,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10625',10210,181,10205),(387,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10625',10217,1,NULL),(388,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10625',10209,1,NULL),(389,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10629',10210,181,10205),(390,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10629',10217,1,NULL),(391,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10629',10209,1,NULL),(392,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10633',10210,15,10205),(393,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10633',10217,1,NULL),(394,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10633',10209,1,NULL),(395,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10635',10210,181,10205),(396,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10635',10217,1,NULL),(397,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10635',10209,1,NULL),(398,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10639',10210,15,10205),(399,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10639',10217,1,NULL),(400,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10639',10209,1,NULL),(401,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10640',10210,15,10205),(402,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10640',10217,1,NULL),(403,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10640',10209,1,NULL),(404,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10643',10210,181,10205),(405,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10643',10217,1,NULL),(406,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10643',10209,1,NULL),(407,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10647',10210,181,10205),(408,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10647',10217,1,NULL),(409,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10647',10209,1,NULL),(410,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10651',10210,15,10205),(411,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10651',10217,1,NULL),(412,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10651',10209,1,NULL),(413,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10653',10210,181,10205),(414,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10653',10217,1,NULL),(415,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10653',10209,1,NULL),(416,10202,'com.liferay.portal.model.Layout',4,'10657',10210,1023,0),(417,10202,'com.liferay.portal.model.Layout',4,'10657',10217,3,NULL),(418,10202,'com.liferay.portal.model.Layout',4,'10657',10209,1,NULL),(419,10202,'145',4,'10657_LAYOUT_145',10210,7,NULL),(420,10202,'145',4,'10657_LAYOUT_145',10217,1,NULL),(421,10202,'145',4,'10657_LAYOUT_145',10209,1,NULL),(422,10202,'56',4,'10657_LAYOUT_56_INSTANCE_Pa2s',10210,7,NULL),(423,10202,'56',4,'10657_LAYOUT_56_INSTANCE_Pa2s',10217,1,NULL),(424,10202,'56',4,'10657_LAYOUT_56_INSTANCE_Pa2s',10209,1,NULL),(425,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10665',10210,255,10205),(426,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10665',10217,3,NULL),(427,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10665',10209,1,NULL),(428,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10668',10210,15,10205),(429,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10668',10217,1,NULL),(430,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10668',10209,1,NULL),(431,10202,'56',4,'10657_LAYOUT_56_INSTANCE_nJq4',10210,7,NULL),(432,10202,'56',4,'10657_LAYOUT_56_INSTANCE_nJq4',10217,1,NULL),(433,10202,'56',4,'10657_LAYOUT_56_INSTANCE_nJq4',10209,1,NULL),(434,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10679',10210,255,10205),(435,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10679',10217,3,NULL),(436,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10679',10209,1,NULL),(437,10202,'56',4,'10657_LAYOUT_56_INSTANCE_y2Dg',10210,7,NULL),(438,10202,'56',4,'10657_LAYOUT_56_INSTANCE_y2Dg',10217,1,NULL),(439,10202,'56',4,'10657_LAYOUT_56_INSTANCE_y2Dg',10209,1,NULL),(440,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10689',10210,255,10205),(441,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10689',10217,3,NULL),(442,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10689',10209,1,NULL),(443,10202,'56',4,'10657_LAYOUT_56_INSTANCE_dZ7S',10210,7,NULL),(444,10202,'56',4,'10657_LAYOUT_56_INSTANCE_dZ7S',10217,1,NULL),(445,10202,'56',4,'10657_LAYOUT_56_INSTANCE_dZ7S',10209,1,NULL),(446,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10699',10210,255,10205),(447,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10699',10217,3,NULL),(448,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10699',10209,1,NULL),(449,10202,'56',4,'10657_LAYOUT_56_INSTANCE_P7wi',10210,7,NULL),(450,10202,'56',4,'10657_LAYOUT_56_INSTANCE_P7wi',10217,1,NULL),(451,10202,'56',4,'10657_LAYOUT_56_INSTANCE_P7wi',10209,1,NULL),(452,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10709',10210,255,10205),(453,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10709',10217,3,NULL),(454,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10709',10209,1,NULL),(455,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10712',10210,15,10205),(456,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10712',10217,1,NULL),(457,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10712',10209,1,NULL),(458,10202,'56',4,'10657_LAYOUT_56_INSTANCE_v2EB',10210,7,NULL),(459,10202,'56',4,'10657_LAYOUT_56_INSTANCE_v2EB',10217,1,NULL),(460,10202,'56',4,'10657_LAYOUT_56_INSTANCE_v2EB',10209,1,NULL),(461,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10721',10210,255,10205),(462,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10721',10217,3,NULL),(463,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10721',10209,1,NULL),(464,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10724',10210,15,10205),(465,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10724',10217,1,NULL),(466,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10724',10209,1,NULL),(467,10202,'com.liferay.portal.model.Layout',4,'10730',10210,1023,0),(468,10202,'com.liferay.portal.model.Layout',4,'10730',10217,3,NULL),(469,10202,'com.liferay.portal.model.Layout',4,'10730',10209,1,NULL),(470,10202,'145',4,'10730_LAYOUT_145',10210,7,NULL),(471,10202,'145',4,'10730_LAYOUT_145',10217,1,NULL),(472,10202,'145',4,'10730_LAYOUT_145',10209,1,NULL),(473,10202,'56',4,'10730_LAYOUT_56_INSTANCE_7Fob',10210,7,NULL),(474,10202,'56',4,'10730_LAYOUT_56_INSTANCE_7Fob',10217,1,NULL),(475,10202,'56',4,'10730_LAYOUT_56_INSTANCE_7Fob',10209,1,NULL),(476,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10738',10210,255,10205),(477,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10738',10217,3,NULL),(478,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10738',10209,1,NULL),(479,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10741',10210,15,10205),(480,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10741',10217,1,NULL),(481,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10741',10209,1,NULL),(482,10202,'56',4,'10730_LAYOUT_56_INSTANCE_pZg0',10210,7,NULL),(483,10202,'56',4,'10730_LAYOUT_56_INSTANCE_pZg0',10217,1,NULL),(484,10202,'56',4,'10730_LAYOUT_56_INSTANCE_pZg0',10209,1,NULL),(485,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10750',10210,255,10205),(486,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10750',10217,3,NULL),(487,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10750',10209,1,NULL),(488,10202,'56',4,'10730_LAYOUT_56_INSTANCE_MZ7u',10210,7,NULL),(489,10202,'56',4,'10730_LAYOUT_56_INSTANCE_MZ7u',10217,1,NULL),(490,10202,'56',4,'10730_LAYOUT_56_INSTANCE_MZ7u',10209,1,NULL),(491,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10761',10210,255,10205),(492,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10761',10217,3,NULL),(493,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10761',10209,1,NULL),(494,10202,'56',4,'10730_LAYOUT_56_INSTANCE_i8wB',10210,7,NULL),(495,10202,'56',4,'10730_LAYOUT_56_INSTANCE_i8wB',10217,1,NULL),(496,10202,'56',4,'10730_LAYOUT_56_INSTANCE_i8wB',10209,1,NULL),(497,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10771',10210,255,10205),(498,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10771',10217,3,NULL),(499,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10771',10209,1,NULL),(500,10202,'com.liferay.portal.model.Layout',4,'10778',10210,1023,0),(501,10202,'com.liferay.portal.model.Layout',4,'10778',10217,3,NULL),(502,10202,'com.liferay.portal.model.Layout',4,'10778',10209,1,NULL),(503,10202,'145',4,'10778_LAYOUT_145',10210,7,NULL),(504,10202,'145',4,'10778_LAYOUT_145',10217,1,NULL),(505,10202,'145',4,'10778_LAYOUT_145',10209,1,NULL),(506,10202,'56',4,'10778_LAYOUT_56_INSTANCE_6tPK',10210,7,NULL),(507,10202,'56',4,'10778_LAYOUT_56_INSTANCE_6tPK',10217,1,NULL),(508,10202,'56',4,'10778_LAYOUT_56_INSTANCE_6tPK',10209,1,NULL),(509,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10786',10210,255,10205),(510,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10786',10217,3,NULL),(511,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10786',10209,1,NULL),(512,10202,'114',4,'10778_LAYOUT_114',10210,7,NULL),(513,10202,'114',4,'10778_LAYOUT_114',10217,1,NULL),(514,10202,'114',4,'10778_LAYOUT_114',10209,1,NULL),(515,10202,'115',4,'10778_LAYOUT_115',10210,7,NULL),(516,10202,'115',4,'10778_LAYOUT_115',10217,1,NULL),(517,10202,'115',4,'10778_LAYOUT_115',10209,1,NULL),(518,10202,'com.liferay.portal.model.Layout',4,'10794',10210,1023,0),(519,10202,'com.liferay.portal.model.Layout',4,'10794',10217,3,NULL),(520,10202,'com.liferay.portal.model.Layout',4,'10794',10209,1,NULL),(521,10202,'145',4,'10794_LAYOUT_145',10210,7,NULL),(522,10202,'145',4,'10794_LAYOUT_145',10217,1,NULL),(523,10202,'145',4,'10794_LAYOUT_145',10209,1,NULL),(524,10202,'56',4,'10794_LAYOUT_56_INSTANCE_G9dU',10210,7,NULL),(525,10202,'56',4,'10794_LAYOUT_56_INSTANCE_G9dU',10217,1,NULL),(526,10202,'56',4,'10794_LAYOUT_56_INSTANCE_G9dU',10209,1,NULL),(527,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10802',10210,255,10205),(528,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10802',10217,3,NULL),(529,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10802',10209,1,NULL),(530,10202,'36',4,'10794_LAYOUT_36',10210,55,NULL),(531,10202,'36',4,'10794_LAYOUT_36',10217,1,NULL),(532,10202,'36',4,'10794_LAYOUT_36',10209,1,NULL),(533,10202,'com.liferay.portlet.wiki.model.WikiNode',4,'10810',10210,255,10205),(534,10202,'com.liferay.portlet.wiki.model.WikiNode',4,'10810',10217,71,NULL),(535,10202,'com.liferay.portlet.wiki.model.WikiNode',4,'10810',10209,1,NULL),(536,10202,'com.liferay.portlet.wiki.model.WikiPage',4,'10812',10210,255,10205),(537,10202,'com.liferay.portlet.wiki.model.WikiPage',4,'10812',10217,99,NULL),(538,10202,'com.liferay.portlet.wiki.model.WikiPage',4,'10812',10209,1,NULL),(539,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10814',10210,15,10205),(540,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10814',10217,1,NULL),(541,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10814',10209,1,NULL),(542,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10815',10210,15,10205),(543,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10815',10217,1,NULL),(544,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10815',10209,1,NULL),(545,10202,'com.liferay.portlet.wiki.model.WikiPage',4,'10824',10210,255,10205),(546,10202,'com.liferay.portlet.wiki.model.WikiPage',4,'10824',10217,99,NULL),(547,10202,'com.liferay.portlet.wiki.model.WikiPage',4,'10824',10209,1,NULL),(548,10202,'com.liferay.portal.model.Layout',4,'10831',10210,1023,0),(549,10202,'com.liferay.portal.model.Layout',4,'10831',10217,3,NULL),(550,10202,'com.liferay.portal.model.Layout',4,'10831',10209,1,NULL),(551,10202,'145',4,'10831_LAYOUT_145',10210,7,NULL),(552,10202,'145',4,'10831_LAYOUT_145',10217,1,NULL),(553,10202,'145',4,'10831_LAYOUT_145',10209,1,NULL),(554,10202,'56',4,'10831_LAYOUT_56_INSTANCE_Zsq5',10210,7,NULL),(555,10202,'56',4,'10831_LAYOUT_56_INSTANCE_Zsq5',10217,1,NULL),(556,10202,'56',4,'10831_LAYOUT_56_INSTANCE_Zsq5',10209,1,NULL),(557,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10839',10210,255,10205),(558,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10839',10217,3,NULL),(559,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10839',10209,1,NULL),(560,10202,'19',4,'10831_LAYOUT_19',10210,45,NULL),(561,10202,'19',4,'10831_LAYOUT_19',10217,1,NULL),(562,10202,'19',4,'10831_LAYOUT_19',10209,1,NULL),(563,10202,'com.liferay.portal.model.Layout',4,'10848',10210,1023,0),(564,10202,'com.liferay.portal.model.Layout',4,'10848',10217,3,NULL),(565,10202,'com.liferay.portal.model.Layout',4,'10848',10209,1,NULL),(566,10202,'145',4,'10848_LAYOUT_145',10210,7,NULL),(567,10202,'145',4,'10848_LAYOUT_145',10217,1,NULL),(568,10202,'145',4,'10848_LAYOUT_145',10209,1,NULL),(569,10202,'56',4,'10848_LAYOUT_56_INSTANCE_GC9w',10210,7,NULL),(570,10202,'56',4,'10848_LAYOUT_56_INSTANCE_GC9w',10217,1,NULL),(571,10202,'56',4,'10848_LAYOUT_56_INSTANCE_GC9w',10209,1,NULL),(572,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10856',10210,255,10205),(573,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10856',10217,3,NULL),(574,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10856',10209,1,NULL),(575,10202,'56',4,'10848_LAYOUT_56_INSTANCE_wy0V',10210,7,NULL),(576,10202,'56',4,'10848_LAYOUT_56_INSTANCE_wy0V',10217,1,NULL),(577,10202,'56',4,'10848_LAYOUT_56_INSTANCE_wy0V',10209,1,NULL),(578,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10866',10210,255,10205),(579,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10866',10217,3,NULL),(580,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10866',10209,1,NULL),(581,10202,'1_WAR_googlemapsportlet',4,'10848_LAYOUT_1_WAR_googlemapsportlet_INSTANCE_YrY9',10210,7,NULL),(582,10202,'1_WAR_googlemapsportlet',4,'10848_LAYOUT_1_WAR_googlemapsportlet_INSTANCE_YrY9',10217,1,NULL),(583,10202,'1_WAR_googlemapsportlet',4,'10848_LAYOUT_1_WAR_googlemapsportlet_INSTANCE_YrY9',10209,1,NULL),(584,10202,'1_WAR_webformportlet',4,'10848_LAYOUT_1_WAR_webformportlet_INSTANCE_3znU',10210,7,NULL),(585,10202,'1_WAR_webformportlet',4,'10848_LAYOUT_1_WAR_webformportlet_INSTANCE_3znU',10217,1,NULL),(586,10202,'1_WAR_webformportlet',4,'10848_LAYOUT_1_WAR_webformportlet_INSTANCE_3znU',10209,1,NULL),(587,10202,'com.liferay.portal.model.Layout',4,'10874',10210,1023,0),(588,10202,'com.liferay.portal.model.Layout',4,'10874',10217,3,NULL),(590,10202,'145',4,'10874_LAYOUT_145',10210,7,NULL),(591,10202,'145',4,'10874_LAYOUT_145',10217,1,NULL),(593,10202,'56',4,'10874_LAYOUT_56_INSTANCE_Y5Sr',10210,7,NULL),(594,10202,'56',4,'10874_LAYOUT_56_INSTANCE_Y5Sr',10217,1,NULL),(596,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10882',10210,255,10205),(597,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10882',10217,3,NULL),(598,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10882',10209,1,NULL),(599,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10885',10210,15,10205),(600,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10885',10217,1,NULL),(601,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10885',10209,1,NULL),(602,10202,'116',4,'10874_LAYOUT_116',10210,7,NULL),(603,10202,'116',4,'10874_LAYOUT_116',10217,1,NULL),(605,10202,'com.liferay.portal.model.Layout',4,'10892',10210,1023,0),(606,10202,'com.liferay.portal.model.Layout',4,'10892',10217,3,NULL),(608,10202,'145',4,'10892_LAYOUT_145',10210,7,NULL),(609,10202,'145',4,'10892_LAYOUT_145',10217,1,NULL),(611,10202,'20',4,'10892_LAYOUT_20',10210,111,NULL),(612,10202,'20',4,'10892_LAYOUT_20',10217,1,NULL),(614,10202,'31',4,'10892_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10210,47,NULL),(615,10202,'31',4,'10892_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10217,1,NULL),(617,10202,'56',4,'10892_LAYOUT_56_INSTANCE_0uJ9',10210,7,NULL),(618,10202,'56',4,'10892_LAYOUT_56_INSTANCE_0uJ9',10217,1,NULL),(620,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10900',10210,255,10205),(621,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10900',10217,3,NULL),(622,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10900',10209,1,NULL),(623,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10903',10210,15,10205),(624,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10903',10217,1,NULL),(625,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10903',10209,1,NULL),(626,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10904',10210,15,10205),(627,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10904',10217,1,NULL),(628,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10904',10209,1,NULL),(629,10202,'com.liferay.portal.model.Organization',4,'10911',10210,242801,0),(630,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10916',10210,15,10205),(631,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10916',10208,1,NULL),(632,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10916',10209,1,NULL),(633,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10917',10210,15,10205),(634,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10917',10208,1,NULL),(635,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10917',10209,1,NULL),(636,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10921',10210,247,10205),(637,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10921',10217,5,NULL),(638,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'10921',10209,1,NULL),(639,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10922',10210,181,10205),(640,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10922',10217,1,NULL),(641,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10922',10209,1,NULL),(642,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10926',10210,181,10205),(643,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10926',10217,1,NULL),(644,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'10926',10209,1,NULL),(645,10202,'com.liferay.portal.model.Layout',4,'10930',10210,1023,0),(646,10202,'com.liferay.portal.model.Layout',4,'10930',10217,3,NULL),(647,10202,'com.liferay.portal.model.Layout',4,'10930',10209,1,NULL),(648,10202,'145',4,'10930_LAYOUT_145',10210,7,NULL),(649,10202,'145',4,'10930_LAYOUT_145',10217,1,NULL),(650,10202,'145',4,'10930_LAYOUT_145',10209,1,NULL),(651,10202,'56',4,'10930_LAYOUT_56_INSTANCE_7Fgi',10210,7,NULL),(652,10202,'56',4,'10930_LAYOUT_56_INSTANCE_7Fgi',10217,1,NULL),(653,10202,'56',4,'10930_LAYOUT_56_INSTANCE_7Fgi',10209,1,NULL),(654,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10938',10210,255,10205),(655,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10938',10217,3,NULL),(656,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10938',10209,1,NULL),(657,10202,'com.liferay.portal.model.Layout',4,'10946',10210,1023,0),(658,10202,'com.liferay.portal.model.Layout',4,'10946',10217,3,NULL),(659,10202,'com.liferay.portal.model.Layout',4,'10946',10209,1,NULL),(660,10202,'145',4,'10946_LAYOUT_145',10210,7,NULL),(661,10202,'145',4,'10946_LAYOUT_145',10217,1,NULL),(662,10202,'145',4,'10946_LAYOUT_145',10209,1,NULL),(663,10202,'56',4,'10946_LAYOUT_56_INSTANCE_Wb4N',10210,7,NULL),(664,10202,'56',4,'10946_LAYOUT_56_INSTANCE_Wb4N',10217,1,NULL),(665,10202,'56',4,'10946_LAYOUT_56_INSTANCE_Wb4N',10209,1,NULL),(666,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10954',10210,255,10205),(667,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10954',10217,3,NULL),(668,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10954',10209,1,NULL),(669,10202,'com.liferay.portal.model.Role',4,'10961',10210,127,NULL),(670,10202,'15',1,'10202',10961,2,NULL),(671,10202,'com.liferay.portlet.journal',1,'10202',10961,30,NULL),(672,10202,'com.liferay.portlet.journal.model.JournalArticle',1,'10202',10961,119,NULL),(673,10202,'com.liferay.portal.model.Role',4,'10962',10210,127,NULL),(674,10202,'15',1,'10202',10962,2,NULL),(675,10202,'com.liferay.portlet.journal',1,'10202',10962,30,NULL),(676,10202,'com.liferay.portlet.journal.model.JournalArticle',1,'10202',10962,65,NULL),(677,10202,'com.liferay.portal.model.User',4,'10963',10210,31,10963),(678,10202,'com.liferay.portal.model.Layout',4,'10970',10210,1023,0),(679,10202,'com.liferay.portal.model.Layout',4,'10970',10211,3,NULL),(680,10202,'com.liferay.portal.model.Layout',4,'10970',10209,1,NULL),(681,10202,'145',4,'10970_LAYOUT_145',10210,7,NULL),(682,10202,'145',4,'10970_LAYOUT_145',10212,1,NULL),(683,10202,'145',4,'10970_LAYOUT_145',10209,1,NULL),(684,10202,'56',4,'10970_LAYOUT_56_INSTANCE_42wQ',10210,7,NULL),(685,10202,'56',4,'10970_LAYOUT_56_INSTANCE_42wQ',10212,1,NULL),(686,10202,'56',4,'10970_LAYOUT_56_INSTANCE_42wQ',10209,1,NULL),(687,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10978',10210,255,10963),(688,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10978',10211,3,NULL),(689,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'10978',10209,1,NULL),(690,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10981',10210,15,10963),(691,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10981',10211,1,NULL),(692,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10981',10209,1,NULL),(693,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10982',10210,15,10963),(694,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10982',10211,1,NULL),(695,10202,'com.liferay.portlet.asset.model.AssetTag',4,'10982',10209,1,NULL),(696,10202,'1_WAR_socialnetworkingportlet',4,'10970_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(697,10202,'1_WAR_socialnetworkingportlet',4,'10970_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(698,10202,'1_WAR_socialnetworkingportlet',4,'10970_LAYOUT_1_WAR_socialnetworkingportlet',10209,1,NULL),(699,10202,'121',4,'10970_LAYOUT_121',10210,7,NULL),(700,10202,'121',4,'10970_LAYOUT_121',10212,1,NULL),(701,10202,'121',4,'10970_LAYOUT_121',10209,1,NULL),(702,10202,'2_WAR_socialnetworkingportlet',4,'10970_LAYOUT_2_WAR_socialnetworkingportlet',10210,7,NULL),(703,10202,'2_WAR_socialnetworkingportlet',4,'10970_LAYOUT_2_WAR_socialnetworkingportlet',10212,1,NULL),(704,10202,'2_WAR_socialnetworkingportlet',4,'10970_LAYOUT_2_WAR_socialnetworkingportlet',10209,1,NULL),(705,10202,'116',4,'10970_LAYOUT_116',10210,7,NULL),(706,10202,'116',4,'10970_LAYOUT_116',10212,1,NULL),(707,10202,'116',4,'10970_LAYOUT_116',10209,1,NULL),(708,10202,'3_WAR_socialnetworkingportlet',4,'10970_LAYOUT_3_WAR_socialnetworkingportlet',10210,7,NULL),(709,10202,'3_WAR_socialnetworkingportlet',4,'10970_LAYOUT_3_WAR_socialnetworkingportlet',10212,1,NULL),(710,10202,'3_WAR_socialnetworkingportlet',4,'10970_LAYOUT_3_WAR_socialnetworkingportlet',10209,1,NULL),(711,10202,'com.liferay.portal.model.Layout',4,'10990',10210,1023,0),(712,10202,'com.liferay.portal.model.Layout',4,'10990',10211,3,NULL),(713,10202,'com.liferay.portal.model.Layout',4,'10990',10209,1,NULL),(714,10202,'145',4,'10990_LAYOUT_145',10210,7,NULL),(715,10202,'145',4,'10990_LAYOUT_145',10212,1,NULL),(716,10202,'145',4,'10990_LAYOUT_145',10209,1,NULL),(717,10202,'114',4,'10990_LAYOUT_114',10210,7,NULL),(718,10202,'114',4,'10990_LAYOUT_114',10212,1,NULL),(719,10202,'114',4,'10990_LAYOUT_114',10209,1,NULL),(720,10202,'33',4,'10990_LAYOUT_33',10210,109,NULL),(721,10202,'33',4,'10990_LAYOUT_33',10212,1,NULL),(722,10202,'33',4,'10990_LAYOUT_33',10209,1,NULL),(723,10202,'com.liferay.portal.model.Layout',4,'10995',10210,1023,0),(724,10202,'com.liferay.portal.model.Layout',4,'10995',10211,3,NULL),(726,10202,'145',4,'10995_LAYOUT_145',10210,7,NULL),(727,10202,'145',4,'10995_LAYOUT_145',10212,1,NULL),(729,10202,'1_WAR_socialnetworkingportlet',4,'10995_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(730,10202,'1_WAR_socialnetworkingportlet',4,'10995_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(732,10202,'121',4,'10995_LAYOUT_121',10210,7,NULL),(733,10202,'121',4,'10995_LAYOUT_121',10212,1,NULL),(735,10202,'56',4,'10995_LAYOUT_56_INSTANCE_8f1N',10210,7,NULL),(736,10202,'56',4,'10995_LAYOUT_56_INSTANCE_8f1N',10212,1,NULL),(738,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11003',10210,255,10963),(739,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11003',10211,3,NULL),(740,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11003',10209,1,NULL),(741,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11006',10210,15,10963),(742,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11006',10211,1,NULL),(743,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11006',10209,1,NULL),(744,10202,'4_WAR_socialnetworkingportlet',4,'10995_LAYOUT_4_WAR_socialnetworkingportlet',10210,7,NULL),(745,10202,'4_WAR_socialnetworkingportlet',4,'10995_LAYOUT_4_WAR_socialnetworkingportlet',10212,1,NULL),(747,10202,'48',4,'10995_LAYOUT_48_INSTANCE_IX5t',10210,7,NULL),(748,10202,'48',4,'10995_LAYOUT_48_INSTANCE_IX5t',10212,1,NULL),(750,10202,'com.liferay.portal.model.Layout',4,'11013',10210,1023,0),(751,10202,'com.liferay.portal.model.Layout',4,'11013',10211,3,NULL),(753,10202,'145',4,'11013_LAYOUT_145',10210,7,NULL),(754,10202,'145',4,'11013_LAYOUT_145',10212,1,NULL),(756,10202,'64',4,'11013_LAYOUT_64',10210,7,NULL),(757,10202,'64',4,'11013_LAYOUT_64',10212,1,NULL),(759,10202,'20',4,'11013_LAYOUT_20',10210,111,NULL),(760,10202,'20',4,'11013_LAYOUT_20',10212,1,NULL),(762,10202,'31',4,'11013_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10210,47,NULL),(763,10202,'31',4,'11013_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10212,1,NULL),(765,10202,'56',4,'11013_LAYOUT_56_INSTANCE_kBu5',10210,7,NULL),(766,10202,'56',4,'11013_LAYOUT_56_INSTANCE_kBu5',10212,1,NULL),(768,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11021',10210,255,10963),(769,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11021',10211,3,NULL),(770,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11021',10209,1,NULL),(771,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11024',10210,15,10963),(772,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11024',10211,1,NULL),(773,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11024',10209,1,NULL),(774,10202,'1_WAR_calendarportlet',4,'11013_LAYOUT_1_WAR_calendarportlet',10210,15,NULL),(775,10202,'1_WAR_calendarportlet',4,'11013_LAYOUT_1_WAR_calendarportlet',10212,1,NULL),(777,10202,'com.liferay.portal.model.Layout',4,'11030',10210,1023,0),(778,10202,'com.liferay.portal.model.Layout',4,'11030',10211,3,NULL),(780,10202,'145',4,'11030_LAYOUT_145',10210,7,NULL),(781,10202,'145',4,'11030_LAYOUT_145',10212,1,NULL),(783,10202,'1_WAR_mailportlet',4,'11030_LAYOUT_1_WAR_mailportlet',10210,7,NULL),(784,10202,'1_WAR_mailportlet',4,'11030_LAYOUT_1_WAR_mailportlet',10212,1,NULL),(786,10202,'com.liferay.portal.model.User',4,'11035',10210,31,11035),(787,10202,'com.liferay.portal.model.Layout',4,'11042',10210,1023,0),(788,10202,'com.liferay.portal.model.Layout',4,'11042',10211,3,NULL),(789,10202,'com.liferay.portal.model.Layout',4,'11042',10209,1,NULL),(790,10202,'145',4,'11042_LAYOUT_145',10210,7,NULL),(791,10202,'145',4,'11042_LAYOUT_145',10212,1,NULL),(792,10202,'145',4,'11042_LAYOUT_145',10209,1,NULL),(793,10202,'56',4,'11042_LAYOUT_56_INSTANCE_g5Gu',10210,7,NULL),(794,10202,'56',4,'11042_LAYOUT_56_INSTANCE_g5Gu',10212,1,NULL),(795,10202,'56',4,'11042_LAYOUT_56_INSTANCE_g5Gu',10209,1,NULL),(796,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11050',10210,255,11035),(797,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11050',10211,3,NULL),(798,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11050',10209,1,NULL),(799,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11053',10210,15,11035),(800,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11053',10211,1,NULL),(801,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11053',10209,1,NULL),(802,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11054',10210,15,11035),(803,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11054',10211,1,NULL),(804,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11054',10209,1,NULL),(805,10202,'1_WAR_socialnetworkingportlet',4,'11042_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(806,10202,'1_WAR_socialnetworkingportlet',4,'11042_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(807,10202,'1_WAR_socialnetworkingportlet',4,'11042_LAYOUT_1_WAR_socialnetworkingportlet',10209,1,NULL),(808,10202,'121',4,'11042_LAYOUT_121',10210,7,NULL),(809,10202,'121',4,'11042_LAYOUT_121',10212,1,NULL),(810,10202,'121',4,'11042_LAYOUT_121',10209,1,NULL),(811,10202,'2_WAR_socialnetworkingportlet',4,'11042_LAYOUT_2_WAR_socialnetworkingportlet',10210,7,NULL),(812,10202,'2_WAR_socialnetworkingportlet',4,'11042_LAYOUT_2_WAR_socialnetworkingportlet',10212,1,NULL),(813,10202,'2_WAR_socialnetworkingportlet',4,'11042_LAYOUT_2_WAR_socialnetworkingportlet',10209,1,NULL),(814,10202,'116',4,'11042_LAYOUT_116',10210,7,NULL),(815,10202,'116',4,'11042_LAYOUT_116',10212,1,NULL),(816,10202,'116',4,'11042_LAYOUT_116',10209,1,NULL),(817,10202,'3_WAR_socialnetworkingportlet',4,'11042_LAYOUT_3_WAR_socialnetworkingportlet',10210,7,NULL),(818,10202,'3_WAR_socialnetworkingportlet',4,'11042_LAYOUT_3_WAR_socialnetworkingportlet',10212,1,NULL),(819,10202,'3_WAR_socialnetworkingportlet',4,'11042_LAYOUT_3_WAR_socialnetworkingportlet',10209,1,NULL),(820,10202,'com.liferay.portal.model.Layout',4,'11062',10210,1023,0),(821,10202,'com.liferay.portal.model.Layout',4,'11062',10211,3,NULL),(822,10202,'com.liferay.portal.model.Layout',4,'11062',10209,1,NULL),(823,10202,'145',4,'11062_LAYOUT_145',10210,7,NULL),(824,10202,'145',4,'11062_LAYOUT_145',10212,1,NULL),(825,10202,'145',4,'11062_LAYOUT_145',10209,1,NULL),(826,10202,'114',4,'11062_LAYOUT_114',10210,7,NULL),(827,10202,'114',4,'11062_LAYOUT_114',10212,1,NULL),(828,10202,'114',4,'11062_LAYOUT_114',10209,1,NULL),(829,10202,'33',4,'11062_LAYOUT_33',10210,109,NULL),(830,10202,'33',4,'11062_LAYOUT_33',10212,1,NULL),(831,10202,'33',4,'11062_LAYOUT_33',10209,1,NULL),(832,10202,'com.liferay.portal.model.Layout',4,'11067',10210,1023,0),(833,10202,'com.liferay.portal.model.Layout',4,'11067',10211,3,NULL),(835,10202,'145',4,'11067_LAYOUT_145',10210,7,NULL),(836,10202,'145',4,'11067_LAYOUT_145',10212,1,NULL),(838,10202,'1_WAR_socialnetworkingportlet',4,'11067_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(839,10202,'1_WAR_socialnetworkingportlet',4,'11067_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(841,10202,'121',4,'11067_LAYOUT_121',10210,7,NULL),(842,10202,'121',4,'11067_LAYOUT_121',10212,1,NULL),(844,10202,'56',4,'11067_LAYOUT_56_INSTANCE_gbD0',10210,7,NULL),(845,10202,'56',4,'11067_LAYOUT_56_INSTANCE_gbD0',10212,1,NULL),(847,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11075',10210,255,11035),(848,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11075',10211,3,NULL),(849,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11075',10209,1,NULL),(850,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11078',10210,15,11035),(851,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11078',10211,1,NULL),(852,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11078',10209,1,NULL),(853,10202,'4_WAR_socialnetworkingportlet',4,'11067_LAYOUT_4_WAR_socialnetworkingportlet',10210,7,NULL),(854,10202,'4_WAR_socialnetworkingportlet',4,'11067_LAYOUT_4_WAR_socialnetworkingportlet',10212,1,NULL),(856,10202,'48',4,'11067_LAYOUT_48_INSTANCE_r7mR',10210,7,NULL),(857,10202,'48',4,'11067_LAYOUT_48_INSTANCE_r7mR',10212,1,NULL),(859,10202,'com.liferay.portal.model.Layout',4,'11085',10210,1023,0),(860,10202,'com.liferay.portal.model.Layout',4,'11085',10211,3,NULL),(862,10202,'145',4,'11085_LAYOUT_145',10210,7,NULL),(863,10202,'145',4,'11085_LAYOUT_145',10212,1,NULL),(865,10202,'64',4,'11085_LAYOUT_64',10210,7,NULL),(866,10202,'64',4,'11085_LAYOUT_64',10212,1,NULL),(868,10202,'20',4,'11085_LAYOUT_20',10210,111,NULL),(869,10202,'20',4,'11085_LAYOUT_20',10212,1,NULL),(871,10202,'31',4,'11085_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10210,47,NULL),(872,10202,'31',4,'11085_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10212,1,NULL),(874,10202,'56',4,'11085_LAYOUT_56_INSTANCE_H6m6',10210,7,NULL),(875,10202,'56',4,'11085_LAYOUT_56_INSTANCE_H6m6',10212,1,NULL),(877,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11093',10210,255,11035),(878,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11093',10211,3,NULL),(879,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11093',10209,1,NULL),(880,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11096',10210,15,11035),(881,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11096',10211,1,NULL),(882,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11096',10209,1,NULL),(883,10202,'1_WAR_calendarportlet',4,'11085_LAYOUT_1_WAR_calendarportlet',10210,15,NULL),(884,10202,'1_WAR_calendarportlet',4,'11085_LAYOUT_1_WAR_calendarportlet',10212,1,NULL),(886,10202,'com.liferay.portal.model.Layout',4,'11102',10210,1023,0),(887,10202,'com.liferay.portal.model.Layout',4,'11102',10211,3,NULL),(889,10202,'145',4,'11102_LAYOUT_145',10210,7,NULL),(890,10202,'145',4,'11102_LAYOUT_145',10212,1,NULL),(892,10202,'1_WAR_mailportlet',4,'11102_LAYOUT_1_WAR_mailportlet',10210,7,NULL),(893,10202,'1_WAR_mailportlet',4,'11102_LAYOUT_1_WAR_mailportlet',10212,1,NULL),(895,10202,'com.liferay.portal.model.User',4,'11107',10210,31,11107),(896,10202,'com.liferay.portal.model.Layout',4,'11114',10210,1023,0),(897,10202,'com.liferay.portal.model.Layout',4,'11114',10211,3,NULL),(898,10202,'com.liferay.portal.model.Layout',4,'11114',10209,1,NULL),(899,10202,'145',4,'11114_LAYOUT_145',10210,7,NULL),(900,10202,'145',4,'11114_LAYOUT_145',10212,1,NULL),(901,10202,'145',4,'11114_LAYOUT_145',10209,1,NULL),(902,10202,'56',4,'11114_LAYOUT_56_INSTANCE_Kqb9',10210,7,NULL),(903,10202,'56',4,'11114_LAYOUT_56_INSTANCE_Kqb9',10212,1,NULL),(904,10202,'56',4,'11114_LAYOUT_56_INSTANCE_Kqb9',10209,1,NULL),(905,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11122',10210,255,11107),(906,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11122',10211,3,NULL),(907,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11122',10209,1,NULL),(908,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11125',10210,15,11107),(909,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11125',10211,1,NULL),(910,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11125',10209,1,NULL),(911,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11126',10210,15,11107),(912,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11126',10211,1,NULL),(913,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11126',10209,1,NULL),(914,10202,'1_WAR_socialnetworkingportlet',4,'11114_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(915,10202,'1_WAR_socialnetworkingportlet',4,'11114_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(916,10202,'1_WAR_socialnetworkingportlet',4,'11114_LAYOUT_1_WAR_socialnetworkingportlet',10209,1,NULL),(917,10202,'121',4,'11114_LAYOUT_121',10210,7,NULL),(918,10202,'121',4,'11114_LAYOUT_121',10212,1,NULL),(919,10202,'121',4,'11114_LAYOUT_121',10209,1,NULL),(920,10202,'2_WAR_socialnetworkingportlet',4,'11114_LAYOUT_2_WAR_socialnetworkingportlet',10210,7,NULL),(921,10202,'2_WAR_socialnetworkingportlet',4,'11114_LAYOUT_2_WAR_socialnetworkingportlet',10212,1,NULL),(922,10202,'2_WAR_socialnetworkingportlet',4,'11114_LAYOUT_2_WAR_socialnetworkingportlet',10209,1,NULL),(923,10202,'116',4,'11114_LAYOUT_116',10210,7,NULL),(924,10202,'116',4,'11114_LAYOUT_116',10212,1,NULL),(925,10202,'116',4,'11114_LAYOUT_116',10209,1,NULL),(926,10202,'3_WAR_socialnetworkingportlet',4,'11114_LAYOUT_3_WAR_socialnetworkingportlet',10210,7,NULL),(927,10202,'3_WAR_socialnetworkingportlet',4,'11114_LAYOUT_3_WAR_socialnetworkingportlet',10212,1,NULL),(928,10202,'3_WAR_socialnetworkingportlet',4,'11114_LAYOUT_3_WAR_socialnetworkingportlet',10209,1,NULL),(929,10202,'com.liferay.portal.model.Layout',4,'11134',10210,1023,0),(930,10202,'com.liferay.portal.model.Layout',4,'11134',10211,3,NULL),(931,10202,'com.liferay.portal.model.Layout',4,'11134',10209,1,NULL),(932,10202,'145',4,'11134_LAYOUT_145',10210,7,NULL),(933,10202,'145',4,'11134_LAYOUT_145',10212,1,NULL),(934,10202,'145',4,'11134_LAYOUT_145',10209,1,NULL),(935,10202,'114',4,'11134_LAYOUT_114',10210,7,NULL),(936,10202,'114',4,'11134_LAYOUT_114',10212,1,NULL),(937,10202,'114',4,'11134_LAYOUT_114',10209,1,NULL),(938,10202,'33',4,'11134_LAYOUT_33',10210,109,NULL),(939,10202,'33',4,'11134_LAYOUT_33',10212,1,NULL),(940,10202,'33',4,'11134_LAYOUT_33',10209,1,NULL),(941,10202,'com.liferay.portal.model.Layout',4,'11139',10210,1023,0),(942,10202,'com.liferay.portal.model.Layout',4,'11139',10211,3,NULL),(944,10202,'145',4,'11139_LAYOUT_145',10210,7,NULL),(945,10202,'145',4,'11139_LAYOUT_145',10212,1,NULL),(947,10202,'1_WAR_socialnetworkingportlet',4,'11139_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(948,10202,'1_WAR_socialnetworkingportlet',4,'11139_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(950,10202,'121',4,'11139_LAYOUT_121',10210,7,NULL),(951,10202,'121',4,'11139_LAYOUT_121',10212,1,NULL),(953,10202,'56',4,'11139_LAYOUT_56_INSTANCE_O5ju',10210,7,NULL),(954,10202,'56',4,'11139_LAYOUT_56_INSTANCE_O5ju',10212,1,NULL),(956,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11147',10210,255,11107),(957,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11147',10211,3,NULL),(958,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11147',10209,1,NULL),(959,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11150',10210,15,11107),(960,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11150',10211,1,NULL),(961,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11150',10209,1,NULL),(962,10202,'4_WAR_socialnetworkingportlet',4,'11139_LAYOUT_4_WAR_socialnetworkingportlet',10210,7,NULL),(963,10202,'4_WAR_socialnetworkingportlet',4,'11139_LAYOUT_4_WAR_socialnetworkingportlet',10212,1,NULL),(965,10202,'48',4,'11139_LAYOUT_48_INSTANCE_l1rO',10210,7,NULL),(966,10202,'48',4,'11139_LAYOUT_48_INSTANCE_l1rO',10212,1,NULL),(968,10202,'com.liferay.portal.model.Layout',4,'11157',10210,1023,0),(969,10202,'com.liferay.portal.model.Layout',4,'11157',10211,3,NULL),(971,10202,'145',4,'11157_LAYOUT_145',10210,7,NULL),(972,10202,'145',4,'11157_LAYOUT_145',10212,1,NULL),(974,10202,'64',4,'11157_LAYOUT_64',10210,7,NULL),(975,10202,'64',4,'11157_LAYOUT_64',10212,1,NULL),(977,10202,'20',4,'11157_LAYOUT_20',10210,111,NULL),(978,10202,'20',4,'11157_LAYOUT_20',10212,1,NULL),(980,10202,'31',4,'11157_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10210,47,NULL),(981,10202,'31',4,'11157_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10212,1,NULL),(983,10202,'56',4,'11157_LAYOUT_56_INSTANCE_Dm72',10210,7,NULL),(984,10202,'56',4,'11157_LAYOUT_56_INSTANCE_Dm72',10212,1,NULL),(986,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11165',10210,255,11107),(987,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11165',10211,3,NULL),(988,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11165',10209,1,NULL),(989,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11168',10210,15,11107),(990,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11168',10211,1,NULL),(991,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11168',10209,1,NULL),(992,10202,'1_WAR_calendarportlet',4,'11157_LAYOUT_1_WAR_calendarportlet',10210,15,NULL),(993,10202,'1_WAR_calendarportlet',4,'11157_LAYOUT_1_WAR_calendarportlet',10212,1,NULL),(995,10202,'com.liferay.portal.model.Layout',4,'11174',10210,1023,0),(996,10202,'com.liferay.portal.model.Layout',4,'11174',10211,3,NULL),(998,10202,'145',4,'11174_LAYOUT_145',10210,7,NULL),(999,10202,'145',4,'11174_LAYOUT_145',10212,1,NULL),(1001,10202,'1_WAR_mailportlet',4,'11174_LAYOUT_1_WAR_mailportlet',10210,7,NULL),(1002,10202,'1_WAR_mailportlet',4,'11174_LAYOUT_1_WAR_mailportlet',10212,1,NULL),(1004,10202,'com.liferay.portal.model.User',4,'11179',10210,31,11179),(1005,10202,'com.liferay.portal.model.Layout',4,'11186',10210,1023,0),(1006,10202,'com.liferay.portal.model.Layout',4,'11186',10211,3,NULL),(1007,10202,'com.liferay.portal.model.Layout',4,'11186',10209,1,NULL),(1008,10202,'145',4,'11186_LAYOUT_145',10210,7,NULL),(1009,10202,'145',4,'11186_LAYOUT_145',10212,1,NULL),(1010,10202,'145',4,'11186_LAYOUT_145',10209,1,NULL),(1011,10202,'56',4,'11186_LAYOUT_56_INSTANCE_kJ3K',10210,7,NULL),(1012,10202,'56',4,'11186_LAYOUT_56_INSTANCE_kJ3K',10212,1,NULL),(1013,10202,'56',4,'11186_LAYOUT_56_INSTANCE_kJ3K',10209,1,NULL),(1014,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11194',10210,255,11179),(1015,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11194',10211,3,NULL),(1016,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11194',10209,1,NULL),(1017,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11197',10210,15,11179),(1018,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11197',10211,1,NULL),(1019,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11197',10209,1,NULL),(1020,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11198',10210,15,11179),(1021,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11198',10211,1,NULL),(1022,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11198',10209,1,NULL),(1023,10202,'1_WAR_socialnetworkingportlet',4,'11186_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(1024,10202,'1_WAR_socialnetworkingportlet',4,'11186_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(1025,10202,'1_WAR_socialnetworkingportlet',4,'11186_LAYOUT_1_WAR_socialnetworkingportlet',10209,1,NULL),(1026,10202,'121',4,'11186_LAYOUT_121',10210,7,NULL),(1027,10202,'121',4,'11186_LAYOUT_121',10212,1,NULL),(1028,10202,'121',4,'11186_LAYOUT_121',10209,1,NULL),(1029,10202,'2_WAR_socialnetworkingportlet',4,'11186_LAYOUT_2_WAR_socialnetworkingportlet',10210,7,NULL),(1030,10202,'2_WAR_socialnetworkingportlet',4,'11186_LAYOUT_2_WAR_socialnetworkingportlet',10212,1,NULL),(1031,10202,'2_WAR_socialnetworkingportlet',4,'11186_LAYOUT_2_WAR_socialnetworkingportlet',10209,1,NULL),(1032,10202,'116',4,'11186_LAYOUT_116',10210,7,NULL),(1033,10202,'116',4,'11186_LAYOUT_116',10212,1,NULL),(1034,10202,'116',4,'11186_LAYOUT_116',10209,1,NULL),(1035,10202,'3_WAR_socialnetworkingportlet',4,'11186_LAYOUT_3_WAR_socialnetworkingportlet',10210,7,NULL),(1036,10202,'3_WAR_socialnetworkingportlet',4,'11186_LAYOUT_3_WAR_socialnetworkingportlet',10212,1,NULL),(1037,10202,'3_WAR_socialnetworkingportlet',4,'11186_LAYOUT_3_WAR_socialnetworkingportlet',10209,1,NULL),(1038,10202,'com.liferay.portal.model.Layout',4,'11206',10210,1023,0),(1039,10202,'com.liferay.portal.model.Layout',4,'11206',10211,3,NULL),(1040,10202,'com.liferay.portal.model.Layout',4,'11206',10209,1,NULL),(1041,10202,'145',4,'11206_LAYOUT_145',10210,7,NULL),(1042,10202,'145',4,'11206_LAYOUT_145',10212,1,NULL),(1043,10202,'145',4,'11206_LAYOUT_145',10209,1,NULL),(1044,10202,'114',4,'11206_LAYOUT_114',10210,7,NULL),(1045,10202,'114',4,'11206_LAYOUT_114',10212,1,NULL),(1046,10202,'114',4,'11206_LAYOUT_114',10209,1,NULL),(1047,10202,'33',4,'11206_LAYOUT_33',10210,109,NULL),(1048,10202,'33',4,'11206_LAYOUT_33',10212,1,NULL),(1049,10202,'33',4,'11206_LAYOUT_33',10209,1,NULL),(1050,10202,'com.liferay.portal.model.Layout',4,'11211',10210,1023,0),(1051,10202,'com.liferay.portal.model.Layout',4,'11211',10211,3,NULL),(1053,10202,'145',4,'11211_LAYOUT_145',10210,7,NULL),(1054,10202,'145',4,'11211_LAYOUT_145',10212,1,NULL),(1056,10202,'1_WAR_socialnetworkingportlet',4,'11211_LAYOUT_1_WAR_socialnetworkingportlet',10210,7,NULL),(1057,10202,'1_WAR_socialnetworkingportlet',4,'11211_LAYOUT_1_WAR_socialnetworkingportlet',10212,1,NULL),(1059,10202,'121',4,'11211_LAYOUT_121',10210,7,NULL),(1060,10202,'121',4,'11211_LAYOUT_121',10212,1,NULL),(1062,10202,'56',4,'11211_LAYOUT_56_INSTANCE_64Rn',10210,7,NULL),(1063,10202,'56',4,'11211_LAYOUT_56_INSTANCE_64Rn',10212,1,NULL),(1065,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11219',10210,255,11179),(1066,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11219',10211,3,NULL),(1067,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11219',10209,1,NULL),(1068,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11222',10210,15,11179),(1069,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11222',10211,1,NULL),(1070,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11222',10209,1,NULL),(1071,10202,'4_WAR_socialnetworkingportlet',4,'11211_LAYOUT_4_WAR_socialnetworkingportlet',10210,7,NULL),(1072,10202,'4_WAR_socialnetworkingportlet',4,'11211_LAYOUT_4_WAR_socialnetworkingportlet',10212,1,NULL),(1074,10202,'48',4,'11211_LAYOUT_48_INSTANCE_zCQ2',10210,7,NULL),(1075,10202,'48',4,'11211_LAYOUT_48_INSTANCE_zCQ2',10212,1,NULL),(1077,10202,'com.liferay.portal.model.Layout',4,'11229',10210,1023,0),(1078,10202,'com.liferay.portal.model.Layout',4,'11229',10211,3,NULL),(1080,10202,'145',4,'11229_LAYOUT_145',10210,7,NULL),(1081,10202,'145',4,'11229_LAYOUT_145',10212,1,NULL),(1083,10202,'64',4,'11229_LAYOUT_64',10210,7,NULL),(1084,10202,'64',4,'11229_LAYOUT_64',10212,1,NULL),(1086,10202,'20',4,'11229_LAYOUT_20',10210,111,NULL),(1087,10202,'20',4,'11229_LAYOUT_20',10212,1,NULL),(1089,10202,'31',4,'11229_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10210,47,NULL),(1090,10202,'31',4,'11229_LAYOUT_31_INSTANCE_ibwn8rBwfVE1',10212,1,NULL),(1092,10202,'56',4,'11229_LAYOUT_56_INSTANCE_8vmR',10210,7,NULL),(1093,10202,'56',4,'11229_LAYOUT_56_INSTANCE_8vmR',10212,1,NULL),(1095,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11237',10210,255,11179),(1096,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11237',10211,3,NULL),(1097,10202,'com.liferay.portlet.journal.model.JournalArticle',4,'11237',10209,1,NULL),(1098,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11240',10210,15,11179),(1099,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11240',10211,1,NULL),(1100,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11240',10209,1,NULL),(1101,10202,'1_WAR_calendarportlet',4,'11229_LAYOUT_1_WAR_calendarportlet',10210,15,NULL),(1102,10202,'1_WAR_calendarportlet',4,'11229_LAYOUT_1_WAR_calendarportlet',10212,1,NULL),(1104,10202,'com.liferay.portal.model.Layout',4,'11246',10210,1023,0),(1105,10202,'com.liferay.portal.model.Layout',4,'11246',10211,3,NULL),(1107,10202,'145',4,'11246_LAYOUT_145',10210,7,NULL),(1108,10202,'145',4,'11246_LAYOUT_145',10212,1,NULL),(1110,10202,'1_WAR_mailportlet',4,'11246_LAYOUT_1_WAR_mailportlet',10210,7,NULL),(1111,10202,'1_WAR_mailportlet',4,'11246_LAYOUT_1_WAR_mailportlet',10212,1,NULL),(1113,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11251',10210,127,10963),(1114,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11251',10211,3,NULL),(1115,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11251',10209,1,NULL),(1116,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11253',10210,15,10963),(1117,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11253',10211,1,NULL),(1118,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11253',10209,1,NULL),(1119,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11254',10210,15,10963),(1120,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11254',10211,1,NULL),(1121,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11254',10209,1,NULL),(1122,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11255',10210,15,10963),(1123,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11255',10211,1,NULL),(1124,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11255',10209,1,NULL),(1125,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11266',10210,127,10963),(1126,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11266',10211,3,NULL),(1127,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11266',10209,1,NULL),(1128,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11268',10210,15,10963),(1129,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11268',10211,1,NULL),(1130,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11268',10209,1,NULL),(1131,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11269',10210,15,10963),(1132,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11269',10211,1,NULL),(1133,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11269',10209,1,NULL),(1134,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11270',10210,15,10963),(1135,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11270',10211,1,NULL),(1136,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11270',10209,1,NULL),(1137,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11278',10210,127,11035),(1138,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11278',10211,3,NULL),(1139,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11278',10209,1,NULL),(1140,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11280',10210,15,11035),(1141,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11280',10211,1,NULL),(1142,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11280',10209,1,NULL),(1143,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11281',10210,15,11035),(1144,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11281',10211,1,NULL),(1145,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11281',10209,1,NULL),(1146,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11282',10210,15,11035),(1147,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11282',10211,1,NULL),(1148,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11282',10209,1,NULL),(1149,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11293',10210,127,11107),(1150,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11293',10211,3,NULL),(1151,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11293',10209,1,NULL),(1152,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11295',10210,15,11107),(1153,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11295',10211,1,NULL),(1154,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11295',10209,1,NULL),(1155,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11296',10210,15,11107),(1156,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11296',10211,1,NULL),(1157,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11296',10209,1,NULL),(1158,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11297',10210,15,11107),(1159,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11297',10211,1,NULL),(1160,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11297',10209,1,NULL),(1161,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11298',10210,15,11107),(1162,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11298',10211,1,NULL),(1163,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11298',10209,1,NULL),(1164,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11310',10210,255,10963),(1165,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11310',10211,29,NULL),(1166,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'11311',10210,255,10963),(1167,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'11311',10211,3,NULL),(1168,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11314',10210,15,10963),(1169,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11314',10211,1,NULL),(1170,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11314',10209,1,NULL),(1171,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11315',10210,15,10963),(1172,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11315',10211,1,NULL),(1173,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11315',10209,1,NULL),(1174,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11316',10210,15,10963),(1175,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11316',10211,1,NULL),(1176,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11316',10209,1,NULL),(1177,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11324',10210,255,11107),(1178,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11324',10211,29,NULL),(1179,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11325',10210,255,11107),(1180,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11325',10211,29,NULL),(1181,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'11326',10210,255,11107),(1182,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'11326',10211,3,NULL),(1183,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11329',10210,15,11107),(1184,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11329',10211,1,NULL),(1185,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11329',10209,1,NULL),(1186,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11330',10210,15,11107),(1187,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11330',10211,1,NULL),(1188,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11330',10209,1,NULL),(1189,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11331',10210,15,11107),(1190,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11331',10211,1,NULL),(1191,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11331',10209,1,NULL),(1192,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11339',10210,255,11179),(1193,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11339',10211,29,NULL),(1194,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11340',10210,255,11179),(1195,10202,'com.liferay.portlet.documentlibrary.model.DLFolder',4,'11340',10211,29,NULL),(1196,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'11341',10210,255,11179),(1197,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntry',4,'11341',10211,3,NULL),(1198,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11344',10210,15,11179),(1199,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11344',10211,1,NULL),(1200,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11344',10209,1,NULL),(1201,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11345',10210,15,11179),(1202,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11345',10211,1,NULL),(1203,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11345',10209,1,NULL),(1204,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11346',10210,15,11179),(1205,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11346',10211,1,NULL),(1206,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11346',10209,1,NULL),(1207,10202,'com.liferay.portlet.messageboards.model.MBCategory',4,'11354',10210,4095,10963),(1208,10202,'com.liferay.portlet.messageboards.model.MBCategory',4,'11354',10217,775,NULL),(1209,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11356',10210,31,10963),(1210,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11356',10217,9,NULL),(1211,10202,'com.liferay.portlet.messageboards.model.MBCategory',4,'11363',10210,4095,10963),(1212,10202,'com.liferay.portlet.messageboards.model.MBCategory',4,'11363',10217,775,NULL),(1213,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11365',10210,31,10963),(1214,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11365',10217,9,NULL),(1215,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11369',10210,31,11179),(1216,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11369',10217,9,NULL),(1217,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11371',10210,15,11179),(1218,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11371',10217,1,NULL),(1219,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11371',10209,1,NULL),(1220,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11374',10210,31,11107),(1221,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11374',10217,9,NULL),(1222,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11376',10210,15,11107),(1223,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11376',10217,1,NULL),(1224,10202,'com.liferay.portlet.asset.model.AssetTag',4,'11376',10209,1,NULL),(1225,10202,'1_WAR_wsrpportlet',1,'10202',10208,2,NULL),(1226,10202,'103',4,'10520_LAYOUT_103',10210,7,NULL),(1227,10202,'103',4,'10520_LAYOUT_103',10214,1,NULL),(1228,10202,'103',4,'10520_LAYOUT_103',10209,1,NULL),(1229,10202,'1_WAR_chatportlet',4,'10520_LAYOUT_1_WAR_chatportlet',10210,7,NULL),(1230,10202,'1_WAR_chatportlet',4,'10520_LAYOUT_1_WAR_chatportlet',10214,1,NULL),(1231,10202,'1_WAR_chatportlet',4,'10520_LAYOUT_1_WAR_chatportlet',10209,1,NULL),(1232,10202,'com.liferay.portal.model.Layout',4,'11395',10210,1023,0),(1233,10202,'com.liferay.portal.model.Layout',4,'11395',10211,3,NULL),(1235,10202,'com.liferay.portal.model.Layout',4,'11400',10210,1023,0),(1236,10202,'com.liferay.portal.model.Layout',4,'11400',10211,3,NULL),(1237,10202,'com.liferay.portal.model.Layout',4,'11400',10209,1,NULL),(1238,10202,'com.liferay.portlet.asset',4,'10227',10210,30,NULL),(1239,10202,'160',4,'10222_LAYOUT_160',10210,7,NULL),(1240,10202,'160',4,'10222_LAYOUT_160',10214,1,NULL),(1241,10202,'160',4,'10222_LAYOUT_160',10209,1,NULL),(1242,10202,'145',4,'10222_LAYOUT_145',10210,7,NULL),(1243,10202,'145',4,'10222_LAYOUT_145',10214,1,NULL),(1244,10202,'145',4,'10222_LAYOUT_145',10209,1,NULL),(1245,10202,'com.liferay.portlet.asset',4,'10219',10210,30,NULL),(1246,10202,'33',4,'10222_LAYOUT_33',10210,109,NULL),(1247,10202,'33',4,'10222_LAYOUT_33',10214,1,NULL),(1248,10202,'33',4,'10222_LAYOUT_33',10209,1,NULL),(1249,10202,'com.liferay.portlet.blogs',4,'10219',10210,14,NULL),(1250,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11412',10210,127,10239),(1251,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11412',10214,3,NULL),(1252,10202,'com.liferay.portlet.blogs.model.BlogsEntry',4,'11412',10209,1,NULL),(1253,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'11419',10210,15,10205),(1254,10202,'com.liferay.portlet.asset.model.AssetVocabulary',4,'11420',10210,15,10205),(1255,10202,'19',4,'10222_LAYOUT_19',10210,45,NULL),(1256,10202,'19',4,'10222_LAYOUT_19',10214,1,NULL),(1257,10202,'19',4,'10222_LAYOUT_19',10209,1,NULL),(1258,10202,'com.liferay.portlet.messageboards',4,'10219',10210,2047,NULL),(1259,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11423',10210,31,10239),(1260,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11423',10214,9,NULL),(1261,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11423',10209,1,NULL),(1262,10202,'87',4,'10520_LAYOUT_87',10210,7,NULL),(1263,10202,'87',4,'10520_LAYOUT_87',10214,1,NULL),(1264,10202,'87',4,'10520_LAYOUT_87',10209,1,NULL),(1265,10202,'33',4,'10520_LAYOUT_33',10210,109,NULL),(1266,10202,'33',4,'10520_LAYOUT_33',10214,1,NULL),(1267,10202,'33',4,'10520_LAYOUT_33',10209,1,NULL),(1268,10202,'com.liferay.portlet.blogs',4,'10227',10210,14,NULL),(1269,10202,'19',4,'10520_LAYOUT_19',10210,45,NULL),(1270,10202,'19',4,'10520_LAYOUT_19',10214,1,NULL),(1271,10202,'19',4,'10520_LAYOUT_19',10209,1,NULL),(1272,10202,'com.liferay.portlet.messageboards',4,'10227',10210,2047,NULL),(1301,10202,'161',4,'10990_LAYOUT_33',10210,31,NULL),(1302,10202,'161',4,'11062_LAYOUT_33',10210,31,NULL),(1303,10202,'161',4,'11134_LAYOUT_33',10210,31,NULL),(1304,10202,'161',4,'11206_LAYOUT_33',10210,31,NULL),(1305,10202,'161',4,'10222_LAYOUT_33',10210,31,NULL),(1306,10202,'161',4,'10520_LAYOUT_33',10210,31,NULL),(1307,10202,'162',4,'10831_LAYOUT_19',10210,31,NULL),(1308,10202,'162',4,'10222_LAYOUT_19',10210,31,NULL),(1309,10202,'162',4,'10520_LAYOUT_19',10210,31,NULL),(1348,10202,'com.liferay.portal.model.Group',4,'10586',10210,125835140,0),(1349,10202,'com.liferay.portal.model.Group',4,'10911',10210,125835140,0),(1350,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10223',10210,31,10205),(1351,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10339',10210,31,10205),(1352,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10348',10210,31,10205),(1353,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10357',10210,31,10205),(1354,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10371',10210,31,10205),(1355,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10376',10210,31,10205),(1356,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10381',10210,31,10205),(1357,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10386',10210,31,10205),(1358,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10400',10210,31,10205),(1359,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10405',10210,31,10205),(1360,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10411',10210,31,10205),(1361,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10416',10210,31,10205),(1362,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10521',10210,31,10205),(1363,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10535',10210,31,10205),(1364,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10548',10210,31,10205),(1365,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10558',10210,31,10205),(1366,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10568',10210,31,10205),(1367,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10581',10210,31,10205),(1368,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10658',10210,31,10205),(1369,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10671',10210,31,10205),(1370,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10682',10210,31,10205),(1371,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10692',10210,31,10205),(1372,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10702',10210,31,10205),(1373,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10714',10210,31,10205),(1374,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10726',10210,31,10205),(1375,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10731',10210,31,10205),(1376,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10743',10210,31,10205),(1377,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10754',10210,31,10205),(1378,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10764',10210,31,10205),(1379,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10774',10210,31,10205),(1380,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10779',10210,31,10205),(1381,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10789',10210,31,10205),(1382,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10795',10210,31,10205),(1383,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10805',10210,31,10205),(1384,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10818',10210,31,10205),(1385,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10827',10210,31,10205),(1386,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10832',10210,31,10205),(1387,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10843',10210,31,10205),(1388,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10849',10210,31,10205),(1389,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10859',10210,31,10205),(1390,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10869',10210,31,10205),(1391,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10875',10210,31,10205),(1392,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10887',10210,31,10205),(1393,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10893',10210,31,10205),(1394,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10907',10210,31,10205),(1395,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10931',10210,31,10205),(1396,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10941',10210,31,10205),(1397,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10947',10210,31,10205),(1398,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10957',10210,31,10205),(1399,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10971',10210,31,10963),(1400,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10985',10210,31,10963),(1401,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10991',10210,31,10963),(1402,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'10996',10210,31,10963),(1403,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11008',10210,31,10963),(1404,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11014',10210,31,10963),(1405,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11026',10210,31,10963),(1406,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11031',10210,31,10963),(1407,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11043',10210,31,11035),(1408,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11057',10210,31,11035),(1409,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11063',10210,31,11035),(1410,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11068',10210,31,11035),(1411,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11080',10210,31,11035),(1412,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11086',10210,31,11035),(1413,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11098',10210,31,11035),(1414,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11103',10210,31,11035),(1415,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11115',10210,31,11107),(1416,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11129',10210,31,11107),(1417,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11135',10210,31,11107),(1418,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11140',10210,31,11107),(1419,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11152',10210,31,11107),(1420,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11158',10210,31,11107),(1421,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11170',10210,31,11107),(1422,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11175',10210,31,11107),(1423,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11187',10210,31,11179),(1424,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11201',10210,31,11179),(1425,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11207',10210,31,11179),(1426,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11212',10210,31,11179),(1427,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11224',10210,31,11179),(1428,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11230',10210,31,11179),(1429,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11242',10210,31,11179),(1430,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11247',10210,31,11179),(1431,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11259',10210,31,10963),(1432,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11274',10210,31,10963),(1433,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11286',10210,31,11035),(1434,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11303',10210,31,11107),(1435,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11320',10210,31,10963),(1436,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11335',10210,31,11107),(1437,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11350',10210,31,11179),(1438,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11396',10210,31,10239),(1439,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11401',10210,31,10239),(1440,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11414',10210,31,10239),(1441,10202,'com.liferay.portal.model.PasswordPolicy',4,'10238',10210,31,10205),(1442,10202,'com.liferay.portal.model.User',4,'10205',10210,31,10205),(1443,10202,'90',1,'10202',10212,16384,0),(1444,10202,'110',2,'11598',10212,1,0),(1445,10202,'111',2,'11598',10212,1,0),(1446,10202,'114',2,'11598',10212,1,0),(1447,10202,'115',2,'11598',10212,1,0),(1448,10202,'116',2,'11598',10212,1,0),(1449,10202,'118',2,'11598',10212,1,0),(1450,10202,'97',2,'11598',10212,1,0),(1451,10202,'98',2,'11598',10212,1,0),(1452,10202,'99',2,'11598',10212,1,0),(1453,10202,'11',2,'11598',10212,1,0),(1454,10202,'15',2,'11598',10212,1,0),(1455,10202,'16',2,'11598',10212,1,0),(1456,10202,'19',2,'11598',10212,1,0),(1457,10202,'121',2,'11598',10212,1,0),(1458,10202,'122',2,'11598',10212,1,0),(1459,10202,'3',2,'11598',10212,1,0),(1460,10202,'125',2,'11598',10212,1,0),(1461,10202,'127',2,'11598',10212,1,0),(1462,10202,'128',2,'11598',10212,1,0),(1463,10202,'1_WAR_calendarportlet',2,'11598',10212,1,0),(1464,10202,'129',2,'11598',10212,1,0),(1465,10202,'9',2,'11598',10212,1,0),(1466,10202,'20',2,'11598',10212,1,0),(1467,10202,'23',2,'11598',10212,1,0),(1468,10202,'25',2,'11598',10212,1,0),(1469,10202,'26',2,'11598',10212,1,0),(1470,10202,'27',2,'11598',10212,1,0),(1471,10202,'28',2,'11598',10212,1,0),(1472,10202,'29',2,'11598',10212,1,0),(1473,10202,'130',2,'11598',10212,1,0),(1474,10202,'131',2,'11598',10212,1,0),(1475,10202,'132',2,'11598',10212,1,0),(1476,10202,'134',2,'11598',10212,1,0),(1477,10202,'135',2,'11598',10212,1,0),(1478,10202,'136',2,'11598',10212,1,0),(1479,10202,'137',2,'11598',10212,1,0),(1480,10202,'30',2,'11598',10212,1,0),(1481,10202,'31',2,'11598',10212,1,0),(1482,10202,'33',2,'11598',10212,1,0),(1483,10202,'34',2,'11598',10212,1,0),(1484,10202,'36',2,'11598',10212,1,0),(1485,10202,'39',2,'11598',10212,1,0),(1486,10202,'141',2,'11598',10212,1,0),(1487,10202,'143',2,'11598',10212,1,0),(1488,10202,'146',2,'11598',10212,1,0),(1489,10202,'147',2,'11598',10212,1,0),(1490,10202,'148',2,'11598',10212,1,0),(1491,10202,'149',2,'11598',10212,1,0),(1492,10202,'47',2,'11598',10212,1,0),(1493,10202,'48',2,'11598',10212,1,0),(1494,10202,'150',2,'11598',10212,1,0),(1495,10202,'151',2,'11598',10212,1,0),(1496,10202,'152',2,'11598',10212,1,0),(1497,10202,'153',2,'11598',10212,1,0),(1498,10202,'154',2,'11598',10212,1,0),(1499,10202,'157',2,'11598',10212,1,0),(1500,10202,'158',2,'11598',10212,1,0),(1501,10202,'50',2,'11598',10212,1,0),(1502,10202,'54',2,'11598',10212,1,0),(1503,10202,'56',2,'11598',10212,1,0),(1504,10202,'58',2,'11598',10212,1,0),(1505,10202,'59',2,'11598',10212,1,0),(1506,10202,'161',2,'11598',10212,1,0),(1507,10202,'162',2,'11598',10212,1,0),(1508,10202,'164',2,'11598',10212,1,0),(1509,10202,'166',2,'11598',10212,1,0),(1510,10202,'167',2,'11598',10212,1,0),(1511,10202,'169',2,'11598',10212,1,0),(1512,10202,'61',2,'11598',10212,1,0),(1513,10202,'62',2,'11598',10212,1,0),(1514,10202,'64',2,'11598',10212,1,0),(1515,10202,'66',2,'11598',10212,1,0),(1516,10202,'67',2,'11598',10212,1,0),(1517,10202,'173',2,'11598',10212,1,0),(1518,10202,'175',2,'11598',10212,1,0),(1519,10202,'176',2,'11598',10212,1,0),(1520,10202,'177',2,'11598',10212,1,0),(1521,10202,'178',2,'11598',10212,1,0),(1522,10202,'179',2,'11598',10212,1,0),(1523,10202,'70',2,'11598',10212,1,0),(1524,10202,'71',2,'11598',10212,1,0),(1525,10202,'73',2,'11598',10212,1,0),(1526,10202,'77',2,'11598',10212,1,0),(1527,10202,'180',2,'11598',10212,1,0),(1528,10202,'181',2,'11598',10212,1,0),(1529,10202,'100',2,'11598',10212,1,0),(1530,10202,'101',2,'11598',10212,1,0),(1531,10202,'102',2,'11598',10212,1,0),(1532,10202,'104',2,'11598',10212,1,0),(1533,10202,'107',2,'11598',10212,1,0),(1534,10202,'108',2,'11598',10212,1,0),(1535,10202,'82',2,'11598',10212,1,0),(1536,10202,'83',2,'11598',10212,1,0),(1537,10202,'84',2,'11598',10212,1,0),(1538,10202,'85',2,'11598',10212,1,0),(1539,10202,'com.liferay.portal.model.Layout',2,'11598',10212,1,0),(1540,10202,'com.liferay.portlet.blogs',2,'11598',10212,14,0),(1541,10202,'com.liferay.portlet.calendar',2,'11598',10212,14,0),(1542,10202,'98',2,'11598',10211,2,0),(1543,10202,'99',2,'11598',10211,8,0),(1544,10202,'15',2,'11598',10211,2,0),(1545,10202,'1_WAR_calendarportlet',2,'11598',10211,2,0),(1546,10202,'20',2,'11598',10211,2,0),(1547,10202,'25',2,'11598',10211,2,0),(1548,10202,'28',2,'11598',10211,2,0),(1549,10202,'147',2,'11598',10211,2,0),(1550,10202,'152',2,'11598',10211,2,0),(1551,10202,'154',2,'11598',10211,2,0),(1552,10202,'161',2,'11598',10211,2,0),(1553,10202,'162',2,'11598',10211,2,0),(1554,10202,'167',2,'11598',10211,2,0),(1555,10202,'173',2,'11598',10211,4,0),(1556,10202,'178',2,'11598',10211,4,0),(1557,10202,'179',2,'11598',10211,4,0),(1558,10202,'com.liferay.portal.model.Group',2,'11598',10211,67109120,0),(1559,10202,'com.liferay.portlet.asset',2,'11598',10211,30,0),(1560,10202,'com.liferay.portlet.blogs',2,'11598',10211,14,0),(1561,10202,'com.liferay.portlet.bookmarks',2,'11598',10211,15,0),(1562,10202,'com.liferay.portlet.calendar',2,'11598',10211,14,0),(1563,10202,'com.liferay.portlet.documentlibrary',2,'11598',10211,511,0),(1564,10202,'com.liferay.portlet.messageboards',2,'11598',10211,2047,0),(1565,10202,'com.liferay.portlet.polls',2,'11598',10211,6,0),(1566,10202,'com.liferay.portlet.wiki',2,'11598',10211,6,0),(1567,10202,'164',1,'10202',10209,2,0),(1568,10202,'164',1,'10202',10211,2,0),(1569,10202,'164',1,'10202',10212,2,0),(1570,10202,'166',1,'10202',10211,4,0),(1571,10202,'166',1,'10202',10212,4,0),(1572,10202,'167',1,'10202',10211,4,0),(1573,10202,'167',1,'10202',10212,4,0),(1574,10202,'169',1,'10202',10211,2,0),(1575,10202,'169',1,'10202',10212,2,0),(1576,10202,'173',1,'10202',10209,2,0),(1577,10202,'173',1,'10202',10211,2,0),(1578,10202,'173',1,'10202',10212,2,0),(1579,10202,'175',1,'10202',10209,2,0),(1580,10202,'175',1,'10202',10211,2,0),(1581,10202,'175',1,'10202',10212,2,0),(1582,10202,'176',1,'10202',10208,2,0),(1583,10202,'177',1,'10202',10211,4,0),(1584,10202,'177',1,'10202',10212,4,0),(1585,10202,'178',1,'10202',10211,2,0),(1586,10202,'178',1,'10202',10212,2,0),(1587,10202,'179',1,'10202',10208,2,0),(1588,10202,'180',1,'10202',10209,2,0),(1589,10202,'180',1,'10202',10211,2,0),(1590,10202,'180',1,'10202',10212,2,0),(1591,10202,'181',1,'10202',10209,2,0),(1592,10202,'181',1,'10202',10211,2,0),(1593,10202,'181',1,'10202',10212,2,0),(1594,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11615',10210,15,10205),(1595,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11616',10210,15,10205),(1596,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11617',10210,15,10205),(1597,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11619',10210,15,10205),(1598,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntryType',4,'11618',10210,15,10205),(1599,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11621',10210,15,10205),(1600,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntryType',4,'11620',10210,15,10205),(1601,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11623',10210,15,10205),(1602,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntryType',4,'11622',10210,15,10205),(1603,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11625',10210,15,10205),(1604,10202,'com.liferay.portlet.documentlibrary.model.DLFileEntryType',4,'11624',10210,15,10205),(1605,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11626',10210,15,10205),(1606,10202,'com.liferay.portal.model.LayoutPrototype',4,'11627',10210,15,10205),(1607,10202,'com.liferay.portal.model.Layout',4,'11631',10210,1023,0),(1608,10202,'com.liferay.portal.model.Layout',4,'11631',10214,515,0),(1609,10202,'141',4,'11631_LAYOUT_141_INSTANCE_9V1b2AOtSFo3',10210,15,0),(1610,10202,'141',4,'11631_LAYOUT_141_INSTANCE_9V1b2AOtSFo3',10214,1,0),(1612,10202,'122',4,'11631_LAYOUT_122_INSTANCE_1wEJqBCi7OBi',10210,15,0),(1613,10202,'122',4,'11631_LAYOUT_122_INSTANCE_1wEJqBCi7OBi',10214,1,0),(1615,10202,'3',4,'11631_LAYOUT_3',10210,15,0),(1616,10202,'3',4,'11631_LAYOUT_3',10214,1,0),(1618,10202,'101',4,'11631_LAYOUT_101_INSTANCE_3Zl8ACDNnNJr',10210,15,0),(1619,10202,'101',4,'11631_LAYOUT_101_INSTANCE_3Zl8ACDNnNJr',10214,1,0),(1621,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'11636',10210,15,10205),(1625,10202,'com.liferay.portal.model.Layout',4,'11645',10210,1023,0),(1626,10202,'com.liferay.portal.model.Layout',4,'11645',10214,515,0),(1628,10202,'19',4,'11645_LAYOUT_19',10210,61,0),(1629,10202,'19',4,'11645_LAYOUT_19',10214,1,0),(1630,10202,'com.liferay.portlet.messageboards',4,'11637',10210,2047,0),(1631,10202,'com.liferay.portlet.messageboards',4,'11637',10214,781,0),(1632,10202,'com.liferay.portlet.messageboards',4,'11637',10209,1,0),(1633,10202,'3',4,'11645_LAYOUT_3',10210,15,0),(1634,10202,'3',4,'11645_LAYOUT_3',10214,1,0),(1635,10202,'59',4,'11645_LAYOUT_59_INSTANCE_7OCiBH2wvCQT',10210,31,0),(1636,10202,'59',4,'11645_LAYOUT_59_INSTANCE_7OCiBH2wvCQT',10214,1,0),(1637,10202,'180',4,'11645_LAYOUT_180',10210,15,0),(1638,10202,'180',4,'11645_LAYOUT_180',10214,1,0),(1639,10202,'com.liferay.portal.model.Layout',4,'11651',10210,1023,0),(1640,10202,'com.liferay.portal.model.Layout',4,'11651',10214,515,0),(1642,10202,'1_WAR_calendarportlet',4,'11651_LAYOUT_1_WAR_calendarportlet',10210,31,0),(1643,10202,'1_WAR_calendarportlet',4,'11651_LAYOUT_1_WAR_calendarportlet',10214,1,0),(1644,10202,'com.liferay.portlet.calendar',4,'11637',10210,14,0),(1645,10202,'101',4,'11651_LAYOUT_101_INSTANCE_ksMY8OBKuRAh',10210,15,0),(1646,10202,'101',4,'11651_LAYOUT_101_INSTANCE_ksMY8OBKuRAh',10214,1,0),(1647,10202,'com.liferay.portal.model.Layout',4,'11657',10210,1023,0),(1648,10202,'com.liferay.portal.model.Layout',4,'11657',10214,515,0),(1650,10202,'36',4,'11657_LAYOUT_36',10210,63,0),(1651,10202,'36',4,'11657_LAYOUT_36',10214,1,0),(1652,10202,'com.liferay.portlet.wiki',4,'11637',10210,6,0),(1653,10202,'122',4,'11657_LAYOUT_122_INSTANCE_tz4dFN8q9YtX',10210,15,0),(1654,10202,'122',4,'11657_LAYOUT_122_INSTANCE_tz4dFN8q9YtX',10214,1,0),(1655,10202,'148',4,'11657_LAYOUT_148_INSTANCE_EZJrT7YnvyPd',10210,15,0),(1656,10202,'148',4,'11657_LAYOUT_148_INSTANCE_EZJrT7YnvyPd',10214,1,0),(1657,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'11662',10210,15,10205),(1661,10202,'com.liferay.portal.model.Layout',4,'11671',10210,1023,0),(1662,10202,'com.liferay.portal.model.Layout',4,'11671',10214,515,0),(1664,10202,'116',4,'11671_LAYOUT_116',10210,15,0),(1665,10202,'116',4,'11671_LAYOUT_116',10214,1,0),(1666,10202,'3',4,'11671_LAYOUT_3',10210,15,0),(1667,10202,'3',4,'11671_LAYOUT_3',10214,1,0),(1668,10202,'82',4,'11671_LAYOUT_82',10210,15,0),(1669,10202,'82',4,'11671_LAYOUT_82',10214,1,0),(1670,10202,'101',4,'11671_LAYOUT_101_INSTANCE_TeKytA9G4V5o',10210,15,0),(1671,10202,'101',4,'11671_LAYOUT_101_INSTANCE_TeKytA9G4V5o',10214,1,0),(1672,10202,'com.liferay.portal.model.Layout',4,'11679',10210,1023,0),(1673,10202,'com.liferay.portal.model.Layout',4,'11679',10214,515,0),(1675,10202,'20',4,'11679_LAYOUT_20',10210,127,0),(1676,10202,'20',4,'11679_LAYOUT_20',10214,1,0),(1677,10202,'com.liferay.portlet.documentlibrary',4,'11663',10210,1023,0),(1678,10202,'com.liferay.portlet.documentlibrary',4,'11663',10214,513,0),(1679,10202,'com.liferay.portlet.documentlibrary',4,'11663',10209,1,0),(1680,10202,'com.liferay.portal.model.Layout',4,'11685',10210,1023,0),(1681,10202,'com.liferay.portal.model.Layout',4,'11685',10214,515,0),(1683,10202,'1_WAR_calendarportlet',4,'11685_LAYOUT_1_WAR_calendarportlet',10210,31,0),(1684,10202,'1_WAR_calendarportlet',4,'11685_LAYOUT_1_WAR_calendarportlet',10214,1,0),(1685,10202,'com.liferay.portlet.calendar',4,'11663',10210,14,0),(1686,10202,'101',4,'11685_LAYOUT_101_INSTANCE_evqfsFp1wjx6',10210,15,0),(1687,10202,'101',4,'11685_LAYOUT_101_INSTANCE_evqfsFp1wjx6',10214,1,0),(1688,10202,'com.liferay.portal.model.Layout',4,'11691',10210,1023,0),(1689,10202,'com.liferay.portal.model.Layout',4,'11691',10214,515,0),(1691,10202,'39',4,'11691_LAYOUT_39_INSTANCE_TwLfv3JnMae9',10210,15,0),(1692,10202,'39',4,'11691_LAYOUT_39_INSTANCE_TwLfv3JnMae9',10214,1,0),(1693,10202,'39',4,'11691_LAYOUT_39_INSTANCE_0eHduU29wFyy',10210,15,0),(1694,10202,'39',4,'11691_LAYOUT_39_INSTANCE_0eHduU29wFyy',10214,1,0),(1695,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11698',10210,15,10205),(1696,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11699',10210,15,10205),(1697,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11700',10210,15,10205),(1698,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11701',10210,15,10205),(1699,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11702',10210,15,10205),(1700,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11703',10210,15,10205),(1701,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'11705',10210,15,0),(1702,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'11711',10210,15,0),(1703,10202,'173',4,'10222_LAYOUT_173',10210,31,0),(1704,10202,'173',4,'10222_LAYOUT_173',10214,1,0),(1705,10202,'161',4,'10222_LAYOUT_161',10210,31,0),(1706,10202,'161',4,'10222_LAYOUT_161',10214,1,0),(1707,10202,'162',4,'10222_LAYOUT_162',10210,31,0),(1708,10202,'162',4,'10222_LAYOUT_162',10214,1,0),(1801,10202,'com.liferay.portal.model.Role',4,'10208',10212,1,0),(1802,10202,'com.liferay.portal.model.Role',4,'10209',10212,1,0),(1803,10202,'com.liferay.portal.model.Role',4,'10210',10212,1,0),(1804,10202,'com.liferay.portal.model.Role',4,'10211',10212,1,0),(1805,10202,'com.liferay.portal.model.Role',4,'10212',10212,1,0),(1806,10202,'com.liferay.portal.model.Role',4,'10216',10212,1,0),(1807,10202,'com.liferay.portal.model.Role',4,'10218',10212,1,0),(1808,10202,'com.liferay.portal.model.Role',4,'10217',10212,1,0),(1809,10202,'com.liferay.portal.model.Role',4,'10213',10212,1,0),(1810,10202,'com.liferay.portal.model.Role',4,'10214',10212,1,0),(1811,10202,'com.liferay.portal.model.Role',4,'10215',10212,1,0),(1812,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11632',10210,31,10205),(1813,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11646',10210,31,10205),(1814,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11652',10210,31,10205),(1815,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11658',10210,31,10205),(1816,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11672',10210,31,10205),(1817,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11680',10210,31,10205),(1818,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11686',10210,31,10205),(1819,10202,'com.liferay.portlet.messageboards.model.MBMessage',4,'11692',10210,31,10205),(1820,10202,'193',1,'10202',10209,2,0),(1821,10202,'193',1,'10202',10211,2,0),(1822,10202,'193',1,'10202',10212,2,0),(1823,10202,'194',1,'10202',10209,2,0),(1824,10202,'194',1,'10202',10211,2,0),(1825,10202,'194',1,'10202',10212,2,0),(1826,10202,'182',1,'10202',10211,2,0),(1827,10202,'182',1,'10202',10212,2,0),(1828,10202,'183',1,'10202',10208,2,0),(1829,10202,'184',1,'10202',10209,2,0),(1830,10202,'184',1,'10202',10211,2,0),(1831,10202,'184',1,'10202',10212,2,0),(1832,10202,'186',1,'10202',10211,2,0),(1833,10202,'186',1,'10202',10212,2,0),(1834,10202,'187',1,'10202',10211,2,0),(1835,10202,'187',1,'10202',10212,2,0),(1836,10202,'188',1,'10202',10211,2,0),(1837,10202,'188',1,'10202',10212,2,0),(1838,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11908',10210,15,10205),(1839,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11908',10212,1,0),(1840,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMStructure',4,'11908',10209,1,0),(1841,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'11909',10210,15,10205),(1845,10202,'com.liferay.portal.model.Layout',4,'11921',10210,1023,10205),(1846,10202,'com.liferay.portal.model.Layout',4,'11921',10214,515,0),(1847,10202,'com.liferay.portal.model.Layout',4,'11921',10209,1,0),(1848,10202,'19',4,'11921_LAYOUT_19',10210,63,0),(1849,10202,'19',4,'11921_LAYOUT_19',10214,1,0),(1850,10202,'19',4,'11921_LAYOUT_19',10209,1,0),(1851,10202,'com.liferay.portlet.messageboards',4,'11910',10210,2047,0),(1852,10202,'com.liferay.portlet.messageboards',4,'11910',10214,781,0),(1853,10202,'com.liferay.portlet.messageboards',4,'11910',10209,1,0),(1854,10202,'3',4,'11921_LAYOUT_3',10210,63,0),(1855,10202,'3',4,'11921_LAYOUT_3',10214,1,0),(1856,10202,'3',4,'11921_LAYOUT_3',10209,1,0),(1857,10202,'59',4,'11921_LAYOUT_59_INSTANCE_znxjm56RXW2G',10210,63,0),(1858,10202,'59',4,'11921_LAYOUT_59_INSTANCE_znxjm56RXW2G',10214,1,0),(1859,10202,'59',4,'11921_LAYOUT_59_INSTANCE_znxjm56RXW2G',10209,1,0),(1860,10202,'com.liferay.portlet.polls',4,'11910',10210,6,0),(1861,10202,'180',4,'11921_LAYOUT_180',10210,63,0),(1862,10202,'180',4,'11921_LAYOUT_180',10214,1,0),(1863,10202,'180',4,'11921_LAYOUT_180',10209,1,0),(1864,10202,'101',4,'11921_LAYOUT_101_INSTANCE_MldHrawWABdj',10210,255,0),(1865,10202,'101',4,'11921_LAYOUT_101_INSTANCE_MldHrawWABdj',10214,33,0),(1866,10202,'101',4,'11921_LAYOUT_101_INSTANCE_MldHrawWABdj',10209,1,0),(1867,10202,'com.liferay.portal.model.Layout',4,'11929',10210,1023,10205),(1868,10202,'com.liferay.portal.model.Layout',4,'11929',10214,515,0),(1869,10202,'com.liferay.portal.model.Layout',4,'11929',10209,1,0),(1870,10202,'36',4,'11929_LAYOUT_36',10210,127,0),(1871,10202,'36',4,'11929_LAYOUT_36',10214,1,0),(1872,10202,'36',4,'11929_LAYOUT_36',10209,1,0),(1873,10202,'com.liferay.portlet.wiki',4,'11910',10210,6,0),(1874,10202,'122',4,'11929_LAYOUT_122_INSTANCE_9D0eoOqDyWcb',10210,127,0),(1875,10202,'122',4,'11929_LAYOUT_122_INSTANCE_9D0eoOqDyWcb',10214,1,0),(1876,10202,'122',4,'11929_LAYOUT_122_INSTANCE_9D0eoOqDyWcb',10209,1,0),(1877,10202,'148',4,'11929_LAYOUT_148_INSTANCE_01lVtF7nnzcy',10210,63,0),(1878,10202,'148',4,'11929_LAYOUT_148_INSTANCE_01lVtF7nnzcy',10214,1,0),(1879,10202,'148',4,'11929_LAYOUT_148_INSTANCE_01lVtF7nnzcy',10209,1,0),(1880,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'11935',10210,15,10205),(1884,10202,'com.liferay.portal.model.Layout',4,'11947',10210,1023,10205),(1885,10202,'com.liferay.portal.model.Layout',4,'11947',10214,515,0),(1886,10202,'com.liferay.portal.model.Layout',4,'11947',10209,1,0),(1887,10202,'116',4,'11947_LAYOUT_116',10210,63,0),(1888,10202,'116',4,'11947_LAYOUT_116',10214,1,0),(1889,10202,'116',4,'11947_LAYOUT_116',10209,1,0),(1890,10202,'3',4,'11947_LAYOUT_3',10210,63,0),(1891,10202,'3',4,'11947_LAYOUT_3',10214,1,0),(1892,10202,'3',4,'11947_LAYOUT_3',10209,1,0),(1893,10202,'82',4,'11947_LAYOUT_82',10210,63,0),(1894,10202,'82',4,'11947_LAYOUT_82',10214,1,0),(1895,10202,'82',4,'11947_LAYOUT_82',10209,1,0),(1896,10202,'101',4,'11947_LAYOUT_101_INSTANCE_fDNTh6IUZRTs',10210,255,0),(1897,10202,'101',4,'11947_LAYOUT_101_INSTANCE_fDNTh6IUZRTs',10214,33,0),(1898,10202,'101',4,'11947_LAYOUT_101_INSTANCE_fDNTh6IUZRTs',10209,1,0),(1899,10202,'com.liferay.portal.model.Layout',4,'11956',10210,1023,10205),(1900,10202,'com.liferay.portal.model.Layout',4,'11956',10214,515,0),(1901,10202,'com.liferay.portal.model.Layout',4,'11956',10209,1,0),(1902,10202,'20',4,'11956_LAYOUT_20',10210,127,0),(1903,10202,'20',4,'11956_LAYOUT_20',10214,1,0),(1904,10202,'20',4,'11956_LAYOUT_20',10209,1,0),(1905,10202,'com.liferay.portlet.documentlibrary',4,'11936',10210,1023,0),(1906,10202,'com.liferay.portlet.documentlibrary',4,'11936',10214,527,0),(1907,10202,'com.liferay.portlet.documentlibrary',4,'11936',10209,1,0),(1908,10202,'101',4,'11956_LAYOUT_101_INSTANCE_KIcYTPYU5NR0',10210,255,0),(1909,10202,'101',4,'11956_LAYOUT_101_INSTANCE_KIcYTPYU5NR0',10214,33,0),(1910,10202,'101',4,'11956_LAYOUT_101_INSTANCE_KIcYTPYU5NR0',10209,1,0),(1911,10202,'com.liferay.portal.model.Layout',4,'11964',10210,1023,10205),(1912,10202,'com.liferay.portal.model.Layout',4,'11964',10214,515,0),(1913,10202,'com.liferay.portal.model.Layout',4,'11964',10209,1,0),(1914,10202,'39',4,'11964_LAYOUT_39_INSTANCE_QnKfKFBPLW6C',10210,63,0),(1915,10202,'39',4,'11964_LAYOUT_39_INSTANCE_QnKfKFBPLW6C',10214,1,0),(1916,10202,'39',4,'11964_LAYOUT_39_INSTANCE_QnKfKFBPLW6C',10209,1,0),(1917,10202,'39',4,'11964_LAYOUT_39_INSTANCE_zjfCC2EpNoGg',10210,63,0),(1918,10202,'39',4,'11964_LAYOUT_39_INSTANCE_zjfCC2EpNoGg',10214,1,0),(1919,10202,'39',4,'11964_LAYOUT_39_INSTANCE_zjfCC2EpNoGg',10209,1,0),(1920,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11972',10210,15,10205),(1921,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11974',10210,15,10205),(1922,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11976',10210,15,10205),(1923,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11979',10210,15,10205),(1924,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11981',10210,15,10205),(1925,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11983',10210,15,10205),(1926,10202,'com.liferay.portlet.dynamicdatamapping.model.DDMTemplate',4,'11985',10210,15,10205),(1927,10202,'1_WAR_eventsdisplayportlet',1,'10202',10208,2,0),(1928,10202,'1_WAR_eventsdisplayportlet',1,'10202',10209,2,0),(1929,10202,'1_WAR_eventsdisplayportlet',1,'10202',10211,2,0),(1930,10202,'1_WAR_eventsdisplayportlet',1,'10202',10212,2,0),(1931,10202,'1_WAR_microblogsportlet',1,'10202',10208,2,0),(1932,10202,'1_WAR_microblogsportlet',1,'10202',10209,2,0),(1933,10202,'1_WAR_microblogsportlet',1,'10202',10211,2,0),(1934,10202,'1_WAR_microblogsportlet',1,'10202',10212,2,0),(1935,10202,'2_WAR_microblogsportlet',1,'10202',10208,2,0),(1936,10202,'2_WAR_microblogsportlet',1,'10202',10209,2,0),(1937,10202,'2_WAR_microblogsportlet',1,'10202',10211,2,0),(1938,10202,'2_WAR_microblogsportlet',1,'10202',10212,2,0),(1939,10202,'1_WAR_notificationsportlet',1,'10202',10208,2,0),(1940,10202,'1_WAR_notificationsportlet',1,'10202',10209,2,0),(1941,10202,'1_WAR_notificationsportlet',1,'10202',10211,2,0),(1942,10202,'1_WAR_notificationsportlet',1,'10202',10212,2,0),(1943,10202,'2_WAR_opensocialportlet',1,'10202',10208,2,0),(1944,10202,'2_WAR_opensocialportlet',1,'10202',10209,2,0),(1945,10202,'2_WAR_opensocialportlet',1,'10202',10211,2,0),(1946,10202,'2_WAR_opensocialportlet',1,'10202',10212,2,0),(1947,10202,'3_WAR_opensocialportlet',1,'10202',10208,2,0),(1948,10202,'3_WAR_opensocialportlet',1,'10202',10209,2,0),(1949,10202,'3_WAR_opensocialportlet',1,'10202',10211,2,0),(1950,10202,'3_WAR_opensocialportlet',1,'10202',10212,2,0),(1951,10202,'com.liferay.portlet.documentlibrary',4,'10235',10210,1023,0),(1952,10202,'com.liferay.portlet.documentlibrary',4,'10235',10212,527,0),(1953,10202,'com.liferay.portlet.documentlibrary',4,'10235',10209,1,0),(1954,10202,'1_WAR_privatemessagingportlet',1,'10202',10208,2,0),(1955,10202,'1_WAR_privatemessagingportlet',1,'10202',10209,2,0),(1956,10202,'1_WAR_privatemessagingportlet',1,'10202',10211,2,0),(1957,10202,'1_WAR_privatemessagingportlet',1,'10202',10212,2,0),(1958,10202,'1_WAR_soannouncementsportlet',1,'10202',10208,2,0),(1959,10202,'1_WAR_soannouncementsportlet',1,'10202',10209,2,0),(1960,10202,'1_WAR_soannouncementsportlet',1,'10202',10211,2,0),(1961,10202,'1_WAR_soannouncementsportlet',1,'10202',10212,2,0),(1962,10202,'2_WAR_soportlet',1,'10202',10208,2,0),(1963,10202,'2_WAR_soportlet',1,'10202',10209,2,0),(1964,10202,'2_WAR_soportlet',1,'10202',10211,2,0),(1965,10202,'2_WAR_soportlet',1,'10202',10212,2,0),(1966,10202,'1_WAR_soportlet',1,'10202',10208,2,0),(1967,10202,'1_WAR_soportlet',1,'10202',10209,2,0),(1968,10202,'1_WAR_soportlet',1,'10202',10211,2,0),(1969,10202,'1_WAR_soportlet',1,'10202',10212,2,0),(1970,10202,'2_WAR_contactsportlet',1,'10202',10208,2,0),(1971,10202,'2_WAR_contactsportlet',1,'10202',10209,2,0),(1972,10202,'2_WAR_contactsportlet',1,'10202',10211,2,0),(1973,10202,'2_WAR_contactsportlet',1,'10202',10212,2,0),(1974,10202,'4_WAR_contactsportlet',1,'10202',10208,2,0),(1975,10202,'4_WAR_contactsportlet',1,'10202',10209,2,0),(1976,10202,'4_WAR_contactsportlet',1,'10202',10211,2,0),(1977,10202,'4_WAR_contactsportlet',1,'10202',10212,2,0),(1978,10202,'1_WAR_contactsportlet',1,'10202',10208,4,0),(1979,10202,'1_WAR_contactsportlet',1,'10202',10209,4,0),(1980,10202,'1_WAR_contactsportlet',1,'10202',10211,4,0),(1981,10202,'1_WAR_contactsportlet',1,'10202',10212,4,0),(1982,10202,'3_WAR_contactsportlet',1,'10202',10208,2,0),(1983,10202,'3_WAR_contactsportlet',1,'10202',10209,2,0),(1984,10202,'3_WAR_contactsportlet',1,'10202',10211,2,0),(1985,10202,'3_WAR_contactsportlet',1,'10202',10212,2,0),(1986,10202,'2_WAR_tasksportlet',1,'10202',10208,2,0),(1987,10202,'2_WAR_tasksportlet',1,'10202',10209,2,0),(1988,10202,'2_WAR_tasksportlet',1,'10202',10211,2,0),(1989,10202,'2_WAR_tasksportlet',1,'10202',10212,2,0),(1990,10202,'1_WAR_tasksportlet',1,'10202',10208,2,0),(1991,10202,'1_WAR_tasksportlet',1,'10202',10209,2,0),(1992,10202,'1_WAR_tasksportlet',1,'10202',10211,2,0),(1993,10202,'1_WAR_tasksportlet',1,'10202',10212,2,0),(1994,10202,'1_WAR_wysiwygportlet',1,'10202',10208,2,0),(1995,10202,'1_WAR_wysiwygportlet',1,'10202',10209,2,0),(1996,10202,'1_WAR_wysiwygportlet',1,'10202',10211,2,0),(1997,10202,'1_WAR_wysiwygportlet',1,'10202',10212,2,0),(1998,10202,'90',1,'10202',12131,2,0),(1999,10202,'com.liferay.portal.model.User',1,'10202',12131,1,0),(2000,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'12133',10210,15,0),(2001,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'12133',10212,1,0),(2002,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'12135',10210,15,0),(2003,10202,'com.liferay.portlet.expando.model.ExpandoColumn',4,'12135',10212,1,0),(2004,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'12136',10210,15,10205),(2008,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'12136',12131,1,0),(2009,10202,'com.liferay.portal.model.Layout',4,'12150',10210,1023,10205),(2010,10202,'com.liferay.portal.model.Layout',4,'12150',10214,515,0),(2011,10202,'com.liferay.portal.model.Layout',4,'12150',10209,0,0),(2012,10202,'1_WAR_soannouncementsportlet',4,'12150_LAYOUT_1_WAR_soannouncementsportlet',10210,63,0),(2013,10202,'1_WAR_soannouncementsportlet',4,'12150_LAYOUT_1_WAR_soannouncementsportlet',10214,1,0),(2014,10202,'1_WAR_soannouncementsportlet',4,'12150_LAYOUT_1_WAR_soannouncementsportlet',10209,1,0),(2015,10202,'1_WAR_soportlet',4,'12150_LAYOUT_1_WAR_soportlet',10210,63,0),(2016,10202,'1_WAR_soportlet',4,'12150_LAYOUT_1_WAR_soportlet',10214,1,0),(2017,10202,'1_WAR_soportlet',4,'12150_LAYOUT_1_WAR_soportlet',10209,1,0),(2018,10202,'1_WAR_wysiwygportlet',4,'12150_LAYOUT_1_WAR_wysiwygportlet_INSTANCE_abcd',10210,63,0),(2019,10202,'1_WAR_wysiwygportlet',4,'12150_LAYOUT_1_WAR_wysiwygportlet_INSTANCE_abcd',10214,1,0),(2020,10202,'1_WAR_wysiwygportlet',4,'12150_LAYOUT_1_WAR_wysiwygportlet_INSTANCE_abcd',10209,1,0),(2021,10202,'28',4,'12150_LAYOUT_28',10210,63,0),(2022,10202,'28',4,'12150_LAYOUT_28',10214,1,0),(2023,10202,'28',4,'12150_LAYOUT_28',10209,1,0),(2024,10202,'39',4,'12150_LAYOUT_39_INSTANCE_abcd',10210,63,0),(2025,10202,'39',4,'12150_LAYOUT_39_INSTANCE_abcd',10214,1,0),(2026,10202,'39',4,'12150_LAYOUT_39_INSTANCE_abcd',10209,1,0),(2027,10202,'64',4,'12150_LAYOUT_64',10210,63,0),(2028,10202,'64',4,'12150_LAYOUT_64',10214,1,0),(2029,10202,'64',4,'12150_LAYOUT_64',10209,1,0),(2030,10202,'1_WAR_eventsdisplayportlet',4,'12150_LAYOUT_1_WAR_eventsdisplayportlet',10210,63,0),(2031,10202,'1_WAR_eventsdisplayportlet',4,'12150_LAYOUT_1_WAR_eventsdisplayportlet',10214,1,0),(2032,10202,'1_WAR_eventsdisplayportlet',4,'12150_LAYOUT_1_WAR_eventsdisplayportlet',10209,1,0),(2033,10202,'com.liferay.portal.model.Layout',4,'12150',10212,1,0),(2034,10202,'com.liferay.portal.model.Layout',4,'12160',10210,1023,10205),(2035,10202,'com.liferay.portal.model.Layout',4,'12160',10214,515,0),(2036,10202,'com.liferay.portal.model.Layout',4,'12160',10209,0,0),(2037,10202,'1_WAR_calendarportlet',4,'12160_LAYOUT_1_WAR_calendarportlet',10210,63,0),(2038,10202,'1_WAR_calendarportlet',4,'12160_LAYOUT_1_WAR_calendarportlet',10214,1,0),(2039,10202,'1_WAR_calendarportlet',4,'12160_LAYOUT_1_WAR_calendarportlet',10209,1,0),(2040,10202,'com.liferay.portal.model.Layout',4,'12160',10212,1,0),(2041,10202,'com.liferay.portal.model.Layout',4,'12167',10210,1023,10205),(2042,10202,'com.liferay.portal.model.Layout',4,'12167',10214,515,0),(2043,10202,'com.liferay.portal.model.Layout',4,'12167',10209,0,0),(2044,10202,'20',4,'12167_LAYOUT_20',10210,127,0),(2045,10202,'20',4,'12167_LAYOUT_20',10214,1,0),(2046,10202,'20',4,'12167_LAYOUT_20',10209,1,0),(2047,10202,'com.liferay.portal.model.Layout',4,'12167',10212,1,0),(2048,10202,'com.liferay.portal.model.Layout',4,'12175',10210,1023,10205),(2049,10202,'com.liferay.portal.model.Layout',4,'12175',10214,515,0),(2050,10202,'com.liferay.portal.model.Layout',4,'12175',10209,0,0),(2051,10202,'73',4,'12175_LAYOUT_73_INSTANCE_TCf1osWaeew1',10210,63,0),(2052,10202,'73',4,'12175_LAYOUT_73_INSTANCE_TCf1osWaeew1',10214,1,0),(2053,10202,'73',4,'12175_LAYOUT_73_INSTANCE_TCf1osWaeew1',10209,1,0),(2054,10202,'19',4,'12175_LAYOUT_19',10210,63,0),(2055,10202,'19',4,'12175_LAYOUT_19',10214,1,0),(2056,10202,'19',4,'12175_LAYOUT_19',10209,1,0),(2057,10202,'com.liferay.portal.model.Layout',4,'12175',10212,1,0),(2058,10202,'com.liferay.portal.model.Layout',4,'12185',10210,1023,10205),(2059,10202,'com.liferay.portal.model.Layout',4,'12185',10214,515,0),(2060,10202,'com.liferay.portal.model.Layout',4,'12185',10209,0,0),(2061,10202,'33',4,'12185_LAYOUT_33',10210,127,0),(2062,10202,'33',4,'12185_LAYOUT_33',10214,1,0),(2063,10202,'33',4,'12185_LAYOUT_33',10209,1,0),(2064,10202,'115',4,'12185_LAYOUT_115',10210,63,0),(2065,10202,'115',4,'12185_LAYOUT_115',10214,1,0),(2066,10202,'115',4,'12185_LAYOUT_115',10209,1,0),(2067,10202,'com.liferay.portal.model.Layout',4,'12185',10212,1,0),(2068,10202,'com.liferay.portal.model.Layout',4,'12194',10210,1023,10205),(2069,10202,'com.liferay.portal.model.Layout',4,'12194',10214,515,0),(2070,10202,'com.liferay.portal.model.Layout',4,'12194',10209,0,0),(2071,10202,'36',4,'12194_LAYOUT_36',10210,127,0),(2072,10202,'36',4,'12194_LAYOUT_36',10214,1,0),(2073,10202,'36',4,'12194_LAYOUT_36',10209,1,0),(2074,10202,'com.liferay.portal.model.Layout',4,'12194',10212,1,0),(2075,10202,'com.liferay.portal.model.Layout',4,'12202',10210,1023,10205),(2076,10202,'com.liferay.portal.model.Layout',4,'12202',10214,515,0),(2077,10202,'com.liferay.portal.model.Layout',4,'12202',10209,0,0),(2078,10202,'2_WAR_soportlet',4,'12202_LAYOUT_2_WAR_soportlet',10210,63,0),(2079,10202,'2_WAR_soportlet',4,'12202_LAYOUT_2_WAR_soportlet',10214,1,0),(2080,10202,'2_WAR_soportlet',4,'12202_LAYOUT_2_WAR_soportlet',10209,1,0),(2081,10202,'4_WAR_contactsportlet',4,'12202_LAYOUT_4_WAR_contactsportlet',10210,63,0),(2082,10202,'4_WAR_contactsportlet',4,'12202_LAYOUT_4_WAR_contactsportlet',10214,1,0),(2083,10202,'4_WAR_contactsportlet',4,'12202_LAYOUT_4_WAR_contactsportlet',10209,1,0),(2084,10202,'com.liferay.portal.model.Layout',4,'12202',10212,1,0),(2085,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'12210',10210,15,10205),(2089,10202,'com.liferay.portal.model.Layout',4,'12224',10210,1023,10205),(2090,10202,'com.liferay.portal.model.Layout',4,'12224',10214,515,0),(2091,10202,'com.liferay.portal.model.Layout',4,'12224',10209,0,0),(2092,10202,'2_WAR_microblogsportlet',4,'12224_LAYOUT_2_WAR_microblogsportlet',10210,63,0),(2093,10202,'2_WAR_microblogsportlet',4,'12224_LAYOUT_2_WAR_microblogsportlet',10214,1,0),(2094,10202,'2_WAR_microblogsportlet',4,'12224_LAYOUT_2_WAR_microblogsportlet',10209,1,0),(2095,10202,'1_WAR_soannouncementsportlet',4,'12224_LAYOUT_1_WAR_soannouncementsportlet',10210,63,0),(2096,10202,'1_WAR_soannouncementsportlet',4,'12224_LAYOUT_1_WAR_soannouncementsportlet',10214,1,0),(2097,10202,'1_WAR_soannouncementsportlet',4,'12224_LAYOUT_1_WAR_soannouncementsportlet',10209,1,0),(2098,10202,'1_WAR_soportlet',4,'12224_LAYOUT_1_WAR_soportlet',10210,63,0),(2099,10202,'1_WAR_soportlet',4,'12224_LAYOUT_1_WAR_soportlet',10214,1,0),(2100,10202,'1_WAR_soportlet',4,'12224_LAYOUT_1_WAR_soportlet',10209,1,0),(2101,10202,'2_WAR_tasksportlet',4,'12224_LAYOUT_2_WAR_tasksportlet',10210,63,0),(2102,10202,'2_WAR_tasksportlet',4,'12224_LAYOUT_2_WAR_tasksportlet',10214,1,0),(2103,10202,'2_WAR_tasksportlet',4,'12224_LAYOUT_2_WAR_tasksportlet',10209,1,0),(2104,10202,'1_WAR_eventsdisplayportlet',4,'12224_LAYOUT_1_WAR_eventsdisplayportlet',10210,63,0),(2105,10202,'1_WAR_eventsdisplayportlet',4,'12224_LAYOUT_1_WAR_eventsdisplayportlet',10214,1,0),(2106,10202,'1_WAR_eventsdisplayportlet',4,'12224_LAYOUT_1_WAR_eventsdisplayportlet',10209,1,0),(2107,10202,'com.liferay.portal.model.Layout',4,'12233',10210,1023,10205),(2108,10202,'com.liferay.portal.model.Layout',4,'12233',10214,515,0),(2109,10202,'com.liferay.portal.model.Layout',4,'12233',10209,0,0),(2110,10202,'1_WAR_contactsportlet',4,'12233_LAYOUT_1_WAR_contactsportlet',10210,63,0),(2111,10202,'1_WAR_contactsportlet',4,'12233_LAYOUT_1_WAR_contactsportlet',10214,1,0),(2112,10202,'1_WAR_contactsportlet',4,'12233_LAYOUT_1_WAR_contactsportlet',10209,1,0),(2113,10202,'com.liferay.portal.model.Layout',4,'12233',10212,1,0),(2114,10202,'com.liferay.portal.model.Layout',4,'12240',10210,1023,10205),(2115,10202,'com.liferay.portal.model.Layout',4,'12240',10214,515,0),(2116,10202,'com.liferay.portal.model.Layout',4,'12240',10209,0,0),(2117,10202,'1_WAR_microblogsportlet',4,'12240_LAYOUT_1_WAR_microblogsportlet',10210,63,0),(2118,10202,'1_WAR_microblogsportlet',4,'12240_LAYOUT_1_WAR_microblogsportlet',10214,1,0),(2119,10202,'1_WAR_microblogsportlet',4,'12240_LAYOUT_1_WAR_microblogsportlet',10209,1,0),(2120,10202,'com.liferay.portal.model.Layout',4,'12240',10212,1,0),(2121,10202,'com.liferay.portal.model.Layout',4,'12247',10210,1023,10205),(2122,10202,'com.liferay.portal.model.Layout',4,'12247',10214,515,0),(2123,10202,'com.liferay.portal.model.Layout',4,'12247',10209,0,0),(2124,10202,'1_WAR_privatemessagingportlet',4,'12247_LAYOUT_1_WAR_privatemessagingportlet',10210,63,0),(2125,10202,'1_WAR_privatemessagingportlet',4,'12247_LAYOUT_1_WAR_privatemessagingportlet',10214,1,0),(2126,10202,'1_WAR_privatemessagingportlet',4,'12247_LAYOUT_1_WAR_privatemessagingportlet',10209,1,0),(2127,10202,'com.liferay.portal.model.Layout',4,'12247',10212,1,0),(2128,10202,'com.liferay.portal.model.Layout',4,'12254',10210,1023,10205),(2129,10202,'com.liferay.portal.model.Layout',4,'12254',10214,515,0),(2130,10202,'com.liferay.portal.model.Layout',4,'12254',10209,0,0),(2131,10202,'20',4,'12254_LAYOUT_20',10210,127,0),(2132,10202,'20',4,'12254_LAYOUT_20',10214,1,0),(2133,10202,'20',4,'12254_LAYOUT_20',10209,1,0),(2134,10202,'com.liferay.portal.model.Layout',4,'12254',10212,1,0),(2135,10202,'com.liferay.portal.model.Layout',4,'12261',10210,1023,10205),(2136,10202,'com.liferay.portal.model.Layout',4,'12261',10214,515,0),(2137,10202,'com.liferay.portal.model.Layout',4,'12261',10209,0,0),(2138,10202,'1_WAR_tasksportlet',4,'12261_LAYOUT_1_WAR_tasksportlet',10210,63,0),(2139,10202,'1_WAR_tasksportlet',4,'12261_LAYOUT_1_WAR_tasksportlet',10214,1,0),(2140,10202,'1_WAR_tasksportlet',4,'12261_LAYOUT_1_WAR_tasksportlet',10209,1,0),(2141,10202,'com.liferay.portal.model.Layout',4,'12261',10212,1,0),(2142,10202,'com.liferay.portal.model.LayoutSetPrototype',4,'12268',10210,15,10205),(2146,10202,'com.liferay.portal.model.Layout',4,'12282',10210,1023,10205),(2147,10202,'com.liferay.portal.model.Layout',4,'12282',10214,515,0),(2148,10202,'com.liferay.portal.model.Layout',4,'12282',10209,0,0),(2149,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10210,63,0),(2150,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10214,1,0),(2151,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10209,1,0),(2152,10202,'2_WAR_microblogsportlet',4,'12282_LAYOUT_2_WAR_microblogsportlet',10210,63,0),(2153,10202,'2_WAR_microblogsportlet',4,'12282_LAYOUT_2_WAR_microblogsportlet',10214,1,0),(2154,10202,'2_WAR_microblogsportlet',4,'12282_LAYOUT_2_WAR_microblogsportlet',10209,1,0),(2155,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_efgh',10210,63,0),(2156,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_efgh',10214,1,0),(2157,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_efgh',10209,1,0),(2158,10202,'1_WAR_soportlet',4,'12282_LAYOUT_1_WAR_soportlet',10210,63,0),(2159,10202,'1_WAR_soportlet',4,'12282_LAYOUT_1_WAR_soportlet',10214,1,0),(2160,10202,'1_WAR_soportlet',4,'12282_LAYOUT_1_WAR_soportlet',10209,1,0),(2161,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_ijkl',10210,63,0),(2162,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_ijkl',10214,1,0),(2163,10202,'2_WAR_contactsportlet',4,'12282_LAYOUT_2_WAR_contactsportlet_INSTANCE_ijkl',10209,1,0),(2164,10202,'com.liferay.portal.model.Layout',4,'12282',10212,1,0),(2165,10202,'com.liferay.portal.model.Layout',4,'12292',10210,1023,10205),(2166,10202,'com.liferay.portal.model.Layout',4,'12292',10214,515,0),(2167,10202,'com.liferay.portal.model.Layout',4,'12292',10209,0,0),(2168,10202,'2_WAR_contactsportlet',4,'12292_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10210,63,0),(2169,10202,'2_WAR_contactsportlet',4,'12292_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10214,1,0),(2170,10202,'2_WAR_contactsportlet',4,'12292_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10209,1,0),(2171,10202,'1_WAR_contactsportlet',4,'12292_LAYOUT_1_WAR_contactsportlet',10210,63,0),(2172,10202,'1_WAR_contactsportlet',4,'12292_LAYOUT_1_WAR_contactsportlet',10214,1,0),(2173,10202,'1_WAR_contactsportlet',4,'12292_LAYOUT_1_WAR_contactsportlet',10209,1,0),(2174,10202,'com.liferay.portal.model.Layout',4,'12292',10212,1,0),(2175,10202,'com.liferay.portal.model.Layout',4,'12300',10210,1023,10205),(2176,10202,'com.liferay.portal.model.Layout',4,'12300',10214,515,0),(2177,10202,'com.liferay.portal.model.Layout',4,'12300',10209,0,0),(2178,10202,'2_WAR_contactsportlet',4,'12300_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10210,63,0),(2179,10202,'2_WAR_contactsportlet',4,'12300_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10214,1,0),(2180,10202,'2_WAR_contactsportlet',4,'12300_LAYOUT_2_WAR_contactsportlet_INSTANCE_abcd',10209,1,0),(2181,10202,'1_WAR_microblogsportlet',4,'12300_LAYOUT_1_WAR_microblogsportlet',10210,63,0),(2182,10202,'1_WAR_microblogsportlet',4,'12300_LAYOUT_1_WAR_microblogsportlet',10214,1,0),(2183,10202,'1_WAR_microblogsportlet',4,'12300_LAYOUT_1_WAR_microblogsportlet',10209,1,0),(2184,10202,'com.liferay.portal.model.Layout',4,'12300',10212,1,0),(2185,10202,'8_WAR_soportlet',4,'10520_LAYOUT_8_WAR_soportlet',10210,63,0),(2186,10202,'8_WAR_soportlet',4,'10520_LAYOUT_8_WAR_soportlet',10214,1,0),(2187,10202,'8_WAR_soportlet',4,'10520_LAYOUT_8_WAR_soportlet',10209,1,0),(2188,10202,'com.liferay.portlet.journal',4,'10227',10210,255,0),(2192,10202,'com.liferay.portlet.journal',4,'10227',10214,1,0),(2194,10202,'com.liferay.portlet.journal',4,'10227',10209,1,0),(2195,10202,'2_WAR_notificationsportlet',4,'10520_LAYOUT_2_WAR_notificationsportlet',10210,63,0),(2196,10202,'2_WAR_notificationsportlet',4,'10520_LAYOUT_2_WAR_notificationsportlet',10214,1,0),(2197,10202,'2_WAR_notificationsportlet',4,'10520_LAYOUT_2_WAR_notificationsportlet',10209,1,0); /*!40000 ALTER TABLE `ResourcePermission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceTypePermission` -- DROP TABLE IF EXISTS `ResourceTypePermission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceTypePermission` ( `resourceTypePermissionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `roleId` bigint(20) DEFAULT NULL, `actionIds` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceTypePermissionId`), UNIQUE KEY `IX_BA497163` (`companyId`,`groupId`,`name`,`roleId`), KEY `IX_7D81F66F` (`companyId`,`name`,`roleId`), KEY `IX_A82690E2` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceTypePermission` -- LOCK TABLES `ResourceTypePermission` WRITE; /*!40000 ALTER TABLE `ResourceTypePermission` DISABLE KEYS */; /*!40000 ALTER TABLE `ResourceTypePermission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Role_` -- DROP TABLE IF EXISTS `Role_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Role_` ( `roleId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, `description` longtext, `type_` int(11) DEFAULT NULL, `subtype` varchar(75) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`roleId`), UNIQUE KEY `IX_A88E424E` (`companyId`,`classNameId`,`classPK`), UNIQUE KEY `IX_EBC931B8` (`companyId`,`name`), KEY `IX_449A10B9` (`companyId`), KEY `IX_5EB4E2FB` (`subtype`), KEY `IX_CBE204` (`type_`,`subtype`), KEY `IX_F436EC8E` (`name`), KEY `IX_F3E1C6FC` (`companyId`,`type_`), KEY `IX_F92B66E6` (`type_`), KEY `IX_26DB26C5` (`uuid_`), KEY `IX_B9FF6043` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Role_` -- LOCK TABLES `Role_` WRITE; /*!40000 ALTER TABLE `Role_` DISABLE KEYS */; INSERT INTO `Role_` VALUES (10208,10202,10040,10208,'Administrator','','Administrators are super users who can do anything.',1,'','06bbfc23-c114-46af-bd31-c9eb8174b141',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10209,10202,10040,10209,'Guest','','Unauthenticated users always have this role.',1,'','5b42be71-efca-49d2-8986-d953a5fe61e7',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10210,10202,10040,10210,'Owner','','This is an implied role with respect to the objects users create.',1,'','9c7a948a-d2e8-4c9b-a8a1-c5a2395ca940',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10211,10202,10040,10211,'Power User','','Power Users have their own personal site.',1,'','f68ddfef-aac2-452a-8950-9db229585948',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10212,10202,10040,10212,'User','','Authenticated users should be assigned this role.',1,'','4bb0e638-953e-4bcc-9078-45cee66851e6',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10213,10202,10040,10213,'Site Administrator','','Site Administrators are super users of their site but cannot make other users into Site Administrators.',2,'','0cd9889e-8dfe-446b-ae68-e3ade3d44951',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10214,10202,10040,10214,'Site Member','','All users who belong to a site have this role within that site.',2,'','2227309b-97e2-432f-9324-3f1aa3696ee5',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10215,10202,10040,10215,'Site Owner','','Site Owners are super users of their site and can assign site roles to users.',2,'','d736bc3a-e3e5-4a00-8f08-f2b62fed1ba2',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10216,10202,10040,10216,'Organization Administrator','','Organization Administrators are super users of their organization but cannot make other users into Organization Administrators.',3,'','f2f07143-fd92-4e98-b7a2-e4a177e9bceb',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10217,10202,10040,10217,'Organization User','','All users who belong to an organization have this role within that organization.',3,'','992b2fe7-6c62-4aba-84f1-46057f90ee4f',0,'',NULL,NULL),(10218,10202,10040,10218,'Organization Owner','','Organization Owners are super users of their organization and can assign organization roles to users.',3,'','56a833bb-ad96-4f84-99bf-94d5ae3c7092',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10447,10202,10040,10447,'Portal Content Reviewer','','Autogenerated role from workflow definition',1,'','af32a819-c05a-4d13-92c4-606f456b0320',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10453,10202,10040,10453,'Community Content Reviewer','','Autogenerated role from workflow definition',2,'','de0a4584-a012-4c28-83a3-fbe8eb3b2d80',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10456,10202,10040,10456,'Organization Content Reviewer','','Autogenerated role from workflow definition',3,'','d9a8e471-54c5-4fa3-8f42-26995d63d66b',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10961,10202,10040,10961,'Publisher','','Publishers are responsible for publishing content.',1,'','87eb8fc4-5e21-435f-b9c8-23e10b0bc87a',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(10962,10202,10040,10962,'Writer','','Writers are responsible for creating content.',1,'','4dfc7c72-ef3e-492b-8efd-881f1ff3ff79',10205,'','2016-11-22 18:05:13','2016-11-22 18:05:13'),(12131,10202,10040,12131,'Social Office User','','Social Office Users have access to the Social Office Suite.',1,'','db5a1f0b-995c-41c5-9b3a-67546bc895c6',10205,'','2016-11-22 18:05:56','2016-11-22 18:05:56'); /*!40000 ALTER TABLE `Role_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCFrameworkVersi_SCProductVers` -- DROP TABLE IF EXISTS `SCFrameworkVersi_SCProductVers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCFrameworkVersi_SCProductVers` ( `frameworkVersionId` bigint(20) NOT NULL, `productVersionId` bigint(20) NOT NULL, PRIMARY KEY (`frameworkVersionId`,`productVersionId`), KEY `IX_3BB93ECA` (`frameworkVersionId`), KEY `IX_E8D33FF9` (`productVersionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCFrameworkVersi_SCProductVers` -- LOCK TABLES `SCFrameworkVersi_SCProductVers` WRITE; /*!40000 ALTER TABLE `SCFrameworkVersi_SCProductVers` DISABLE KEYS */; /*!40000 ALTER TABLE `SCFrameworkVersi_SCProductVers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCFrameworkVersion` -- DROP TABLE IF EXISTS `SCFrameworkVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCFrameworkVersion` ( `frameworkVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `url` longtext, `active_` tinyint(4) DEFAULT NULL, `priority` int(11) DEFAULT NULL, PRIMARY KEY (`frameworkVersionId`), KEY `IX_C98C0D78` (`companyId`), KEY `IX_272991FA` (`groupId`), KEY `IX_6E1764F` (`groupId`,`active_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCFrameworkVersion` -- LOCK TABLES `SCFrameworkVersion` WRITE; /*!40000 ALTER TABLE `SCFrameworkVersion` DISABLE KEYS */; /*!40000 ALTER TABLE `SCFrameworkVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCLicense` -- DROP TABLE IF EXISTS `SCLicense`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCLicense` ( `licenseId` bigint(20) NOT NULL, `name` varchar(75) DEFAULT NULL, `url` longtext, `openSource` tinyint(4) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `recommended` tinyint(4) DEFAULT NULL, PRIMARY KEY (`licenseId`), KEY `IX_1C841592` (`active_`), KEY `IX_5327BB79` (`active_`,`recommended`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCLicense` -- LOCK TABLES `SCLicense` WRITE; /*!40000 ALTER TABLE `SCLicense` DISABLE KEYS */; /*!40000 ALTER TABLE `SCLicense` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCLicenses_SCProductEntries` -- DROP TABLE IF EXISTS `SCLicenses_SCProductEntries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCLicenses_SCProductEntries` ( `licenseId` bigint(20) NOT NULL, `productEntryId` bigint(20) NOT NULL, PRIMARY KEY (`licenseId`,`productEntryId`), KEY `IX_27006638` (`licenseId`), KEY `IX_D7710A66` (`productEntryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCLicenses_SCProductEntries` -- LOCK TABLES `SCLicenses_SCProductEntries` WRITE; /*!40000 ALTER TABLE `SCLicenses_SCProductEntries` DISABLE KEYS */; /*!40000 ALTER TABLE `SCLicenses_SCProductEntries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCProductEntry` -- DROP TABLE IF EXISTS `SCProductEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCProductEntry` ( `productEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `tags` varchar(255) DEFAULT NULL, `shortDescription` longtext, `longDescription` longtext, `pageURL` longtext, `author` varchar(75) DEFAULT NULL, `repoGroupId` varchar(75) DEFAULT NULL, `repoArtifactId` varchar(75) DEFAULT NULL, PRIMARY KEY (`productEntryId`), KEY `IX_5D25244F` (`companyId`), KEY `IX_72F87291` (`groupId`), KEY `IX_98E6A9CB` (`groupId`,`userId`), KEY `IX_7311E812` (`repoGroupId`,`repoArtifactId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCProductEntry` -- LOCK TABLES `SCProductEntry` WRITE; /*!40000 ALTER TABLE `SCProductEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `SCProductEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCProductScreenshot` -- DROP TABLE IF EXISTS `SCProductScreenshot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCProductScreenshot` ( `productScreenshotId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `productEntryId` bigint(20) DEFAULT NULL, `thumbnailId` bigint(20) DEFAULT NULL, `fullImageId` bigint(20) DEFAULT NULL, `priority` int(11) DEFAULT NULL, PRIMARY KEY (`productScreenshotId`), KEY `IX_AE8224CC` (`fullImageId`), KEY `IX_467956FD` (`productEntryId`), KEY `IX_DA913A55` (`productEntryId`,`priority`), KEY `IX_6C572DAC` (`thumbnailId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCProductScreenshot` -- LOCK TABLES `SCProductScreenshot` WRITE; /*!40000 ALTER TABLE `SCProductScreenshot` DISABLE KEYS */; /*!40000 ALTER TABLE `SCProductScreenshot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SCProductVersion` -- DROP TABLE IF EXISTS `SCProductVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SCProductVersion` ( `productVersionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `productEntryId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `changeLog` longtext, `downloadPageURL` longtext, `directDownloadURL` varchar(2000) DEFAULT NULL, `repoStoreArtifact` tinyint(4) DEFAULT NULL, PRIMARY KEY (`productVersionId`), KEY `IX_8377A211` (`productEntryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SCProductVersion` -- LOCK TABLES `SCProductVersion` WRITE; /*!40000 ALTER TABLE `SCProductVersion` DISABLE KEYS */; /*!40000 ALTER TABLE `SCProductVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SN_MeetupsEntry` -- DROP TABLE IF EXISTS `SN_MeetupsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SN_MeetupsEntry` ( `meetupsEntryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `description` longtext, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `totalAttendees` int(11) DEFAULT NULL, `maxAttendees` int(11) DEFAULT NULL, `price` double DEFAULT NULL, `thumbnailId` bigint(20) DEFAULT NULL, PRIMARY KEY (`meetupsEntryId`), KEY `IX_A56E51DD` (`companyId`), KEY `IX_6EA9EEA5` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SN_MeetupsEntry` -- LOCK TABLES `SN_MeetupsEntry` WRITE; /*!40000 ALTER TABLE `SN_MeetupsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `SN_MeetupsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SN_MeetupsRegistration` -- DROP TABLE IF EXISTS `SN_MeetupsRegistration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SN_MeetupsRegistration` ( `meetupsRegistrationId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `meetupsEntryId` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, `comments` longtext, PRIMARY KEY (`meetupsRegistrationId`), KEY `IX_A79293FC` (`meetupsEntryId`), KEY `IX_BCEB16E2` (`meetupsEntryId`,`status`), KEY `IX_3CBE4C36` (`userId`,`meetupsEntryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SN_MeetupsRegistration` -- LOCK TABLES `SN_MeetupsRegistration` WRITE; /*!40000 ALTER TABLE `SN_MeetupsRegistration` DISABLE KEYS */; /*!40000 ALTER TABLE `SN_MeetupsRegistration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SN_WallEntry` -- DROP TABLE IF EXISTS `SN_WallEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SN_WallEntry` ( `wallEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `comments` longtext, PRIMARY KEY (`wallEntryId`), KEY `IX_5C68C960` (`groupId`), KEY `IX_F2F6C19A` (`groupId`,`userId`), KEY `IX_C46194C4` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SN_WallEntry` -- LOCK TABLES `SN_WallEntry` WRITE; /*!40000 ALTER TABLE `SN_WallEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `SN_WallEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SO_FavoriteSite` -- DROP TABLE IF EXISTS `SO_FavoriteSite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SO_FavoriteSite` ( `favoriteSiteId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, PRIMARY KEY (`favoriteSiteId`), UNIQUE KEY `IX_3AA03DF8` (`groupId`,`userId`), KEY `IX_DE2F16A6` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SO_FavoriteSite` -- LOCK TABLES `SO_FavoriteSite` WRITE; /*!40000 ALTER TABLE `SO_FavoriteSite` DISABLE KEYS */; /*!40000 ALTER TABLE `SO_FavoriteSite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SO_MemberRequest` -- DROP TABLE IF EXISTS `SO_MemberRequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SO_MemberRequest` ( `memberRequestId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `key_` varchar(75) DEFAULT NULL, `receiverUserId` bigint(20) DEFAULT NULL, `invitedRoleId` bigint(20) DEFAULT NULL, `invitedTeamId` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`memberRequestId`), KEY `IX_D34593C1` (`groupId`,`receiverUserId`,`status`), KEY `IX_212FA0EC` (`key_`), KEY `IX_D6810661` (`receiverUserId`), KEY `IX_16475447` (`receiverUserId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SO_MemberRequest` -- LOCK TABLES `SO_MemberRequest` WRITE; /*!40000 ALTER TABLE `SO_MemberRequest` DISABLE KEYS */; /*!40000 ALTER TABLE `SO_MemberRequest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SO_ProjectsEntry` -- DROP TABLE IF EXISTS `SO_ProjectsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SO_ProjectsEntry` ( `projectsEntryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `description` longtext, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `data_` varchar(1000) DEFAULT NULL, PRIMARY KEY (`projectsEntryId`), KEY `IX_3371C715` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SO_ProjectsEntry` -- LOCK TABLES `SO_ProjectsEntry` WRITE; /*!40000 ALTER TABLE `SO_ProjectsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `SO_ProjectsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ServiceComponent` -- DROP TABLE IF EXISTS `ServiceComponent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ServiceComponent` ( `serviceComponentId` bigint(20) NOT NULL, `buildNamespace` varchar(75) DEFAULT NULL, `buildNumber` bigint(20) DEFAULT NULL, `buildDate` bigint(20) DEFAULT NULL, `data_` longtext, PRIMARY KEY (`serviceComponentId`), UNIQUE KEY `IX_4F0315B8` (`buildNamespace`,`buildNumber`), KEY `IX_7338606F` (`buildNamespace`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ServiceComponent` -- LOCK TABLES `ServiceComponent` WRITE; /*!40000 ALTER TABLE `ServiceComponent` DISABLE KEYS */; INSERT INTO `ServiceComponent` VALUES (10333,'Chat',12,1241822823426,'\n\n\n \n \n \n'),(10434,'Kaleo',2,1279742623917,'\n\n\n \n \n \n'),(10465,'Mail',1,1270595745413,'\n\n\n \n \n \n'),(10469,'OpenSocial',1,1277920674284,'\n\n\n \n \n \n'),(10475,'SN',1,1250629154126,'\n\n\n \n \n \n'),(11389,'WSRP',3,1269325183920,'\n\n\n \n \n \n'),(11708,'Marketplace',2,1343264386388,'\n\n\n \n \n \n'),(11987,'Marketplace',4,1410828214125,'\n\n\n \n \n \n'),(11992,'Calendar',2,1397685647889,'\n\n\n \n \n \n'),(11994,'Chat',15,1366900937977,'\n\n\n \n \n \n'),(11999,'Kaleo',8,1425595080483,'\n\n\n \n \n \n'),(12002,'Microblogs',2,1343264393669,'\n\n\n \n \n \n'),(12006,'Notification',1,1409250476826,'\n\n\n \n \n \n'),(12011,'OpenSocial',4,1343264401607,'\n\n\n \n \n \n'),(12017,'PM',3,1343264408122,'\n\n\n \n \n \n'),(12024,'SO',4,1343264447701,'\n\n\n \n \n \n'),(12028,'Contacts',2,1343264272450,'\n\n\n \n \n \n'),(12036,'Sync',6,1445034861916,'\n\n\n \n \n \n'),(12069,'TMS',2,1343264478888,'\n\n\n \n \n \n'); /*!40000 ALTER TABLE `ServiceComponent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Shard` -- DROP TABLE IF EXISTS `Shard`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Shard` ( `shardId` bigint(20) NOT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, PRIMARY KEY (`shardId`), KEY `IX_DA5F4359` (`classNameId`,`classPK`), KEY `IX_941BA8C3` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Shard` -- LOCK TABLES `Shard` WRITE; /*!40000 ALTER TABLE `Shard` DISABLE KEYS */; INSERT INTO `Shard` VALUES (10203,10008,10202,'default'); /*!40000 ALTER TABLE `Shard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingCart` -- DROP TABLE IF EXISTS `ShoppingCart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingCart` ( `cartId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `itemIds` longtext, `couponCodes` varchar(75) DEFAULT NULL, `altShipping` int(11) DEFAULT NULL, `insure` tinyint(4) DEFAULT NULL, PRIMARY KEY (`cartId`), UNIQUE KEY `IX_FC46FE16` (`groupId`,`userId`), KEY `IX_C28B41DC` (`groupId`), KEY `IX_54101CC8` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingCart` -- LOCK TABLES `ShoppingCart` WRITE; /*!40000 ALTER TABLE `ShoppingCart` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingCart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingCategory` -- DROP TABLE IF EXISTS `ShoppingCategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingCategory` ( `categoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `parentCategoryId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, PRIMARY KEY (`categoryId`), KEY `IX_5F615D3E` (`groupId`), KEY `IX_1E6464F5` (`groupId`,`parentCategoryId`), KEY `IX_6A84467D` (`groupId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingCategory` -- LOCK TABLES `ShoppingCategory` WRITE; /*!40000 ALTER TABLE `ShoppingCategory` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingCategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingCoupon` -- DROP TABLE IF EXISTS `ShoppingCoupon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingCoupon` ( `couponId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `code_` varchar(75) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `limitCategories` longtext, `limitSkus` longtext, `minOrder` double DEFAULT NULL, `discount` double DEFAULT NULL, `discountType` varchar(75) DEFAULT NULL, PRIMARY KEY (`couponId`), UNIQUE KEY `IX_DC60CFAE` (`code_`), KEY `IX_3251AF16` (`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingCoupon` -- LOCK TABLES `ShoppingCoupon` WRITE; /*!40000 ALTER TABLE `ShoppingCoupon` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingCoupon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingItem` -- DROP TABLE IF EXISTS `ShoppingItem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingItem` ( `itemId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `sku` varchar(75) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `properties` longtext, `fields_` tinyint(4) DEFAULT NULL, `fieldsQuantities` longtext, `minQuantity` int(11) DEFAULT NULL, `maxQuantity` int(11) DEFAULT NULL, `price` double DEFAULT NULL, `discount` double DEFAULT NULL, `taxable` tinyint(4) DEFAULT NULL, `shipping` double DEFAULT NULL, `useShippingFormula` tinyint(4) DEFAULT NULL, `requiresShipping` tinyint(4) DEFAULT NULL, `stockQuantity` int(11) DEFAULT NULL, `featured_` tinyint(4) DEFAULT NULL, `sale_` tinyint(4) DEFAULT NULL, `smallImage` tinyint(4) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, `mediumImage` tinyint(4) DEFAULT NULL, `mediumImageId` bigint(20) DEFAULT NULL, `mediumImageURL` longtext, `largeImage` tinyint(4) DEFAULT NULL, `largeImageId` bigint(20) DEFAULT NULL, `largeImageURL` longtext, PRIMARY KEY (`itemId`), UNIQUE KEY `IX_1C717CA6` (`companyId`,`sku`), KEY `IX_FEFE7D76` (`groupId`,`categoryId`), KEY `IX_903DC750` (`largeImageId`), KEY `IX_D217AB30` (`mediumImageId`), KEY `IX_FF203304` (`smallImageId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingItem` -- LOCK TABLES `ShoppingItem` WRITE; /*!40000 ALTER TABLE `ShoppingItem` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingItem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingItemField` -- DROP TABLE IF EXISTS `ShoppingItemField`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingItemField` ( `itemFieldId` bigint(20) NOT NULL, `itemId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `values_` longtext, `description` longtext, PRIMARY KEY (`itemFieldId`), KEY `IX_6D5F9B87` (`itemId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingItemField` -- LOCK TABLES `ShoppingItemField` WRITE; /*!40000 ALTER TABLE `ShoppingItemField` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingItemField` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingItemPrice` -- DROP TABLE IF EXISTS `ShoppingItemPrice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingItemPrice` ( `itemPriceId` bigint(20) NOT NULL, `itemId` bigint(20) DEFAULT NULL, `minQuantity` int(11) DEFAULT NULL, `maxQuantity` int(11) DEFAULT NULL, `price` double DEFAULT NULL, `discount` double DEFAULT NULL, `taxable` tinyint(4) DEFAULT NULL, `shipping` double DEFAULT NULL, `useShippingFormula` tinyint(4) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`itemPriceId`), KEY `IX_EA6FD516` (`itemId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingItemPrice` -- LOCK TABLES `ShoppingItemPrice` WRITE; /*!40000 ALTER TABLE `ShoppingItemPrice` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingItemPrice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingOrder` -- DROP TABLE IF EXISTS `ShoppingOrder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingOrder` ( `orderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `number_` varchar(75) DEFAULT NULL, `tax` double DEFAULT NULL, `shipping` double DEFAULT NULL, `altShipping` varchar(75) DEFAULT NULL, `requiresShipping` tinyint(4) DEFAULT NULL, `insure` tinyint(4) DEFAULT NULL, `insurance` double DEFAULT NULL, `couponCodes` varchar(75) DEFAULT NULL, `couponDiscount` double DEFAULT NULL, `billingFirstName` varchar(75) DEFAULT NULL, `billingLastName` varchar(75) DEFAULT NULL, `billingEmailAddress` varchar(75) DEFAULT NULL, `billingCompany` varchar(75) DEFAULT NULL, `billingStreet` varchar(75) DEFAULT NULL, `billingCity` varchar(75) DEFAULT NULL, `billingState` varchar(75) DEFAULT NULL, `billingZip` varchar(75) DEFAULT NULL, `billingCountry` varchar(75) DEFAULT NULL, `billingPhone` varchar(75) DEFAULT NULL, `shipToBilling` tinyint(4) DEFAULT NULL, `shippingFirstName` varchar(75) DEFAULT NULL, `shippingLastName` varchar(75) DEFAULT NULL, `shippingEmailAddress` varchar(75) DEFAULT NULL, `shippingCompany` varchar(75) DEFAULT NULL, `shippingStreet` varchar(75) DEFAULT NULL, `shippingCity` varchar(75) DEFAULT NULL, `shippingState` varchar(75) DEFAULT NULL, `shippingZip` varchar(75) DEFAULT NULL, `shippingCountry` varchar(75) DEFAULT NULL, `shippingPhone` varchar(75) DEFAULT NULL, `ccName` varchar(75) DEFAULT NULL, `ccType` varchar(75) DEFAULT NULL, `ccNumber` varchar(75) DEFAULT NULL, `ccExpMonth` int(11) DEFAULT NULL, `ccExpYear` int(11) DEFAULT NULL, `ccVerNumber` varchar(75) DEFAULT NULL, `comments` longtext, `ppTxnId` varchar(75) DEFAULT NULL, `ppPaymentStatus` varchar(75) DEFAULT NULL, `ppPaymentGross` double DEFAULT NULL, `ppReceiverEmail` varchar(75) DEFAULT NULL, `ppPayerEmail` varchar(75) DEFAULT NULL, `sendOrderEmail` tinyint(4) DEFAULT NULL, `sendShippingEmail` tinyint(4) DEFAULT NULL, PRIMARY KEY (`orderId`), UNIQUE KEY `IX_D7D6E87A` (`number_`), KEY `IX_1D15553E` (`groupId`), KEY `IX_119B5630` (`groupId`,`userId`,`ppPaymentStatus`), KEY `IX_F474FD89` (`ppTxnId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingOrder` -- LOCK TABLES `ShoppingOrder` WRITE; /*!40000 ALTER TABLE `ShoppingOrder` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingOrder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ShoppingOrderItem` -- DROP TABLE IF EXISTS `ShoppingOrderItem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ShoppingOrderItem` ( `orderItemId` bigint(20) NOT NULL, `orderId` bigint(20) DEFAULT NULL, `itemId` varchar(75) DEFAULT NULL, `sku` varchar(75) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `properties` longtext, `price` double DEFAULT NULL, `quantity` int(11) DEFAULT NULL, `shippedDate` datetime DEFAULT NULL, PRIMARY KEY (`orderItemId`), KEY `IX_B5F82C7A` (`orderId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ShoppingOrderItem` -- LOCK TABLES `ShoppingOrderItem` WRITE; /*!40000 ALTER TABLE `ShoppingOrderItem` DISABLE KEYS */; /*!40000 ALTER TABLE `ShoppingOrderItem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivity` -- DROP TABLE IF EXISTS `SocialActivity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivity` ( `activityId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `mirrorActivityId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, `receiverUserId` bigint(20) DEFAULT NULL, `activitySetId` bigint(20) DEFAULT NULL, `parentClassNameId` bigint(20) DEFAULT NULL, `parentClassPK` bigint(20) DEFAULT NULL, PRIMARY KEY (`activityId`), UNIQUE KEY `IX_8F32DEC9` (`groupId`,`userId`,`createDate`,`classNameId`,`classPK`,`type_`,`receiverUserId`), KEY `IX_82E39A0C` (`classNameId`), KEY `IX_A853C757` (`classNameId`,`classPK`), KEY `IX_64B1BC66` (`companyId`), KEY `IX_2A2468` (`groupId`), KEY `IX_1271F25F` (`mirrorActivityId`), KEY `IX_1F00C374` (`mirrorActivityId`,`classNameId`,`classPK`), KEY `IX_121CA3CB` (`receiverUserId`), KEY `IX_3504B8BC` (`userId`), KEY `IX_FB604DC7` (`groupId`,`userId`,`classNameId`,`classPK`,`type_`,`receiverUserId`), KEY `IX_F542E9BC` (`activitySetId`), KEY `IX_D0E9029E` (`classNameId`,`classPK`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivity` -- LOCK TABLES `SocialActivity` WRITE; /*!40000 ALTER TABLE `SocialActivity` DISABLE KEYS */; INSERT INTO `SocialActivity` VALUES (1,10227,10202,10205,1479837254486,0,10083,10492,1,'',0,12073,NULL,NULL),(2,10227,10202,10205,1479837254609,0,10083,10496,1,'',0,12074,NULL,NULL),(3,10227,10202,10205,1479837254682,0,10083,10500,1,'',0,12075,NULL,NULL),(4,10227,10202,10205,1479837254751,0,10083,10504,1,'',0,12076,NULL,NULL),(5,10227,10202,10205,1479837254823,0,10083,10508,1,'',0,12077,NULL,NULL),(6,10227,10202,10205,1479837254879,0,10083,10512,1,'',0,12078,NULL,NULL),(7,10227,10202,10205,1479837254939,0,10083,10516,1,'',0,12079,NULL,NULL),(8,10587,10202,10205,1479837256079,0,10083,10603,1,'',0,12080,NULL,NULL),(9,10587,10202,10205,1479837256131,0,10083,10609,1,'',0,12081,NULL,NULL),(10,10587,10202,10205,1479837256187,0,10083,10613,1,'',0,12082,NULL,NULL),(11,10587,10202,10205,1479837256264,0,10083,10617,1,'',0,12083,NULL,NULL),(12,10587,10202,10205,1479837256324,0,10083,10625,1,'',0,12084,NULL,NULL),(13,10587,10202,10205,1479837256391,0,10083,10629,1,'',0,12085,NULL,NULL),(14,10587,10202,10205,1479837256465,0,10083,10635,1,'',0,12086,NULL,NULL),(15,10587,10202,10205,1479837256544,0,10083,10643,1,'',0,12087,NULL,NULL),(16,10587,10202,10205,1479837256620,0,10083,10647,1,'',0,12088,NULL,NULL),(17,10587,10202,10205,1479837256690,0,10083,10653,1,'',0,12089,NULL,NULL),(20,10912,10202,10205,1479837259868,0,10083,10922,1,'',0,12090,NULL,NULL),(21,10912,10202,10205,1479837259920,0,10083,10926,1,'',0,12091,NULL,NULL),(22,10965,10202,10963,1479837263073,0,10068,11251,2,'',0,12092,NULL,NULL),(23,10965,10202,10963,1479837263157,0,10068,11266,2,'',0,12093,NULL,NULL),(24,11037,10202,11035,1479837263230,0,10068,11278,2,'',0,12094,NULL,NULL),(25,11109,10202,11107,1479837263317,0,10068,11293,2,'',0,12095,NULL,NULL),(29,10587,10202,10963,1479837263888,0,10095,11356,1,'',0,12096,NULL,NULL),(30,10587,10202,10963,1479837263957,0,10095,11365,1,'',0,12097,NULL,NULL),(31,10587,10202,11179,1479837264005,0,10095,11369,2,'',10963,12098,NULL,NULL),(32,10587,10202,10963,1479837264005,31,10095,11369,2,'',11179,NULL,NULL,NULL),(33,10587,10202,11107,1479837264059,0,10095,11374,2,'',11179,12099,NULL,NULL),(34,10587,10202,11179,1479837264059,33,10095,11374,2,'',11107,NULL,NULL,NULL),(35,0,10202,11107,1479837264119,0,10046,11107,1,'',10963,12100,NULL,NULL),(36,0,10202,10963,1479837264119,35,10046,11107,1,'',11107,NULL,NULL,NULL),(37,0,10202,11107,1479837264146,0,10046,11107,1,'',11035,12101,NULL,NULL),(38,0,10202,11035,1479837264146,37,10046,11107,1,'',11107,NULL,NULL,NULL),(39,0,10202,11107,1479837264155,0,10046,11107,1,'',11179,12102,NULL,NULL),(40,0,10202,11179,1479837264155,39,10046,11107,1,'',11107,NULL,NULL,NULL),(41,10227,10202,10239,1479837301882,0,10068,11412,2,'',0,12103,NULL,NULL),(42,10227,10202,10239,1479837311495,0,10095,11423,1,'',0,12104,NULL,NULL),(11859,10965,10202,10963,1479837264001,0,10073,11311,1,'{\"title\":\"Budget\"}',0,12105,NULL,NULL),(11860,11109,10202,11107,1479837264001,0,10073,11326,1,'{\"title\":\"Notes from the last meeting\"}',0,12106,NULL,NULL),(11861,11181,10202,11179,1479837264001,0,10073,11341,1,'{\"title\":\"New Features\"}',0,12107,NULL,NULL),(11862,10227,10202,10205,1479837254001,0,10073,10492,1,'{\"title\":\"cell_bg\"}',0,12108,NULL,NULL),(11863,10227,10202,10205,1479837255001,0,10073,10496,1,'{\"title\":\"portal_mashup\"}',0,12109,NULL,NULL),(11864,10227,10202,10205,1479837255001,0,10073,10500,1,'{\"title\":\"sevencogs_ad\"}',0,12110,NULL,NULL),(11865,10227,10202,10205,1479837255001,0,10073,10504,1,'{\"title\":\"sevencogs_mobile_ad\"}',0,12111,NULL,NULL),(11866,10227,10202,10205,1479837255001,0,10073,10508,1,'{\"title\":\"shared_workspaces\"}',0,12112,NULL,NULL),(11867,10227,10202,10205,1479837255001,0,10073,10512,1,'{\"title\":\"social_network\"}',0,12113,NULL,NULL),(11868,10227,10202,10205,1479837255001,0,10073,10516,1,'{\"title\":\"web_publishing\"}',0,12114,NULL,NULL),(11869,10587,10202,10205,1479837256001,0,10073,10603,1,'{\"title\":\"cog_blue\"}',0,12115,NULL,NULL),(11870,10587,10202,10205,1479837256001,0,10073,10609,1,'{\"title\":\"cog_light_blue\"}',0,12116,NULL,NULL),(11871,10587,10202,10205,1479837256001,0,10073,10613,1,'{\"title\":\"cog_orange\"}',0,12117,NULL,NULL),(11872,10587,10202,10205,1479837256001,0,10073,10617,1,'{\"title\":\"blogs_icon\"}',0,12118,NULL,NULL),(11873,10587,10202,10205,1479837256001,0,10073,10625,1,'{\"title\":\"cog_network_advertisement\"}',0,12119,NULL,NULL),(11874,10587,10202,10205,1479837256001,0,10073,10629,1,'{\"title\":\"forums_icon\"}',0,12120,NULL,NULL),(11875,10587,10202,10205,1479837256001,0,10073,10635,1,'{\"title\":\"liferay_logo\"}',0,12121,NULL,NULL),(11876,10587,10202,10205,1479837256001,0,10073,10643,1,'{\"title\":\"home_page_banner\"}',0,12122,NULL,NULL),(11877,10587,10202,10205,1479837257001,0,10073,10647,1,'{\"title\":\"products_icon\"}',0,12123,NULL,NULL),(11878,10587,10202,10205,1479837257001,0,10073,10653,1,'{\"title\":\"product_landing\"}',0,12124,NULL,NULL),(11879,10912,10202,10205,1479837260001,0,10073,10922,1,'{\"title\":\"mobile_product_1\"}',0,12125,NULL,NULL),(11880,10912,10202,10205,1479837260001,0,10073,10926,1,'{\"title\":\"mobile_product_2\"}',0,12126,NULL,NULL),(11881,10587,10202,10205,1479837258001,0,10129,10812,1,'{\"version\":1}',0,12127,NULL,NULL),(11882,10587,10202,10205,1479837259001,0,10129,10824,1,'{\"version\":1}',0,12128,NULL,NULL); /*!40000 ALTER TABLE `SocialActivity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivityAchievement` -- DROP TABLE IF EXISTS `SocialActivityAchievement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivityAchievement` ( `activityAchievementId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `firstInGroup` tinyint(4) DEFAULT NULL, PRIMARY KEY (`activityAchievementId`), UNIQUE KEY `IX_D4390CAA` (`groupId`,`userId`,`name`), KEY `IX_E14B1F1` (`groupId`), KEY `IX_83E16F2F` (`groupId`,`firstInGroup`), KEY `IX_8F6408F0` (`groupId`,`name`), KEY `IX_C8FD892B` (`groupId`,`userId`), KEY `IX_AABC18E9` (`groupId`,`userId`,`firstInGroup`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivityAchievement` -- LOCK TABLES `SocialActivityAchievement` WRITE; /*!40000 ALTER TABLE `SocialActivityAchievement` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivityAchievement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivityCounter` -- DROP TABLE IF EXISTS `SocialActivityCounter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivityCounter` ( `activityCounterId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `ownerType` int(11) DEFAULT NULL, `currentValue` int(11) DEFAULT NULL, `totalValue` int(11) DEFAULT NULL, `graceValue` int(11) DEFAULT NULL, `startPeriod` int(11) DEFAULT NULL, `endPeriod` int(11) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`activityCounterId`), UNIQUE KEY `IX_1B7E3B67` (`groupId`,`classNameId`,`classPK`,`name`,`ownerType`,`endPeriod`), UNIQUE KEY `IX_374B35AE` (`groupId`,`classNameId`,`classPK`,`name`,`ownerType`,`startPeriod`), KEY `IX_A4B9A23B` (`classNameId`,`classPK`), KEY `IX_926CDD04` (`groupId`,`classNameId`,`classPK`,`ownerType`), KEY `IX_D6666704` (`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivityCounter` -- LOCK TABLES `SocialActivityCounter` WRITE; /*!40000 ALTER TABLE `SocialActivityCounter` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivityCounter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivityLimit` -- DROP TABLE IF EXISTS `SocialActivityLimit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivityLimit` ( `activityLimitId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `activityType` int(11) DEFAULT NULL, `activityCounterName` varchar(75) DEFAULT NULL, `value` varchar(75) DEFAULT NULL, PRIMARY KEY (`activityLimitId`), UNIQUE KEY `IX_F1C1A617` (`groupId`,`userId`,`classNameId`,`classPK`,`activityType`,`activityCounterName`), KEY `IX_B15863FA` (`classNameId`,`classPK`), KEY `IX_18D4BAE5` (`groupId`), KEY `IX_6F9EDE9F` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivityLimit` -- LOCK TABLES `SocialActivityLimit` WRITE; /*!40000 ALTER TABLE `SocialActivityLimit` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivityLimit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivitySet` -- DROP TABLE IF EXISTS `SocialActivitySet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivitySet` ( `activitySetId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `modifiedDate` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, `activityCount` int(11) DEFAULT NULL, PRIMARY KEY (`activitySetId`), KEY `IX_4460FA14` (`classNameId`,`classPK`,`type_`), KEY `IX_9E13F2DE` (`groupId`), KEY `IX_9BE30DDF` (`groupId`,`userId`,`classNameId`,`type_`), KEY `IX_F71071BD` (`groupId`,`userId`,`type_`), KEY `IX_F80C4386` (`userId`), KEY `IX_62AC101A` (`userId`,`classNameId`,`classPK`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivitySet` -- LOCK TABLES `SocialActivitySet` WRITE; /*!40000 ALTER TABLE `SocialActivitySet` DISABLE KEYS */; INSERT INTO `SocialActivitySet` VALUES (12073,10227,10202,10205,1479837254486,1479837254486,10083,10492,1,NULL,1),(12074,10227,10202,10205,1479837254609,1479837254609,10083,10496,1,NULL,1),(12075,10227,10202,10205,1479837254682,1479837254682,10083,10500,1,NULL,1),(12076,10227,10202,10205,1479837254751,1479837254751,10083,10504,1,NULL,1),(12077,10227,10202,10205,1479837254823,1479837254823,10083,10508,1,NULL,1),(12078,10227,10202,10205,1479837254879,1479837254879,10083,10512,1,NULL,1),(12079,10227,10202,10205,1479837254939,1479837254939,10083,10516,1,NULL,1),(12080,10587,10202,10205,1479837256079,1479837256079,10083,10603,1,NULL,1),(12081,10587,10202,10205,1479837256131,1479837256131,10083,10609,1,NULL,1),(12082,10587,10202,10205,1479837256187,1479837256187,10083,10613,1,NULL,1),(12083,10587,10202,10205,1479837256264,1479837256264,10083,10617,1,NULL,1),(12084,10587,10202,10205,1479837256324,1479837256324,10083,10625,1,NULL,1),(12085,10587,10202,10205,1479837256391,1479837256391,10083,10629,1,NULL,1),(12086,10587,10202,10205,1479837256465,1479837256465,10083,10635,1,NULL,1),(12087,10587,10202,10205,1479837256544,1479837256544,10083,10643,1,NULL,1),(12088,10587,10202,10205,1479837256620,1479837256620,10083,10647,1,NULL,1),(12089,10587,10202,10205,1479837256690,1479837256690,10083,10653,1,NULL,1),(12090,10912,10202,10205,1479837259868,1479837259868,10083,10922,1,NULL,1),(12091,10912,10202,10205,1479837259920,1479837259920,10083,10926,1,NULL,1),(12092,10965,10202,10963,1479837263073,1479837263073,10068,11251,2,NULL,1),(12093,10965,10202,10963,1479837263157,1479837263157,10068,11266,2,NULL,1),(12094,11037,10202,11035,1479837263230,1479837263230,10068,11278,2,NULL,1),(12095,11109,10202,11107,1479837263317,1479837263317,10068,11293,2,NULL,1),(12096,10587,10202,10963,1479837263888,1479837263888,10095,11356,1,NULL,1),(12097,10587,10202,10963,1479837263957,1479837263957,10095,11365,1,NULL,1),(12098,10587,10202,11179,1479837264005,1479837264005,10095,11369,2,NULL,1),(12099,10587,10202,11107,1479837264059,1479837264059,10095,11374,2,NULL,1),(12100,0,10202,11107,1479837264119,1479837264119,10046,11107,1,NULL,1),(12101,0,10202,11107,1479837264146,1479837264146,10046,11107,1,NULL,1),(12102,0,10202,11107,1479837264155,1479837264155,10046,11107,1,NULL,1),(12103,10227,10202,10239,1479837301882,1479837301882,10068,11412,2,NULL,1),(12104,10227,10202,10239,1479837311495,1479837311495,10095,11423,1,NULL,1),(12105,10965,10202,10963,1479837264001,1479837264001,10073,11311,1,NULL,1),(12106,11109,10202,11107,1479837264001,1479837264001,10073,11326,1,NULL,1),(12107,11181,10202,11179,1479837264001,1479837264001,10073,11341,1,NULL,1),(12108,10227,10202,10205,1479837254001,1479837254001,10073,10492,1,NULL,1),(12109,10227,10202,10205,1479837255001,1479837255001,10073,10496,1,NULL,1),(12110,10227,10202,10205,1479837255001,1479837255001,10073,10500,1,NULL,1),(12111,10227,10202,10205,1479837255001,1479837255001,10073,10504,1,NULL,1),(12112,10227,10202,10205,1479837255001,1479837255001,10073,10508,1,NULL,1),(12113,10227,10202,10205,1479837255001,1479837255001,10073,10512,1,NULL,1),(12114,10227,10202,10205,1479837255001,1479837255001,10073,10516,1,NULL,1),(12115,10587,10202,10205,1479837256001,1479837256001,10073,10603,1,NULL,1),(12116,10587,10202,10205,1479837256001,1479837256001,10073,10609,1,NULL,1),(12117,10587,10202,10205,1479837256001,1479837256001,10073,10613,1,NULL,1),(12118,10587,10202,10205,1479837256001,1479837256001,10073,10617,1,NULL,1),(12119,10587,10202,10205,1479837256001,1479837256001,10073,10625,1,NULL,1),(12120,10587,10202,10205,1479837256001,1479837256001,10073,10629,1,NULL,1),(12121,10587,10202,10205,1479837256001,1479837256001,10073,10635,1,NULL,1),(12122,10587,10202,10205,1479837256001,1479837256001,10073,10643,1,NULL,1),(12123,10587,10202,10205,1479837257001,1479837257001,10073,10647,1,NULL,1),(12124,10587,10202,10205,1479837257001,1479837257001,10073,10653,1,NULL,1),(12125,10912,10202,10205,1479837260001,1479837260001,10073,10922,1,NULL,1),(12126,10912,10202,10205,1479837260001,1479837260001,10073,10926,1,NULL,1),(12127,10587,10202,10205,1479837258001,1479837258001,10129,10812,1,NULL,1),(12128,10587,10202,10205,1479837259001,1479837259001,10129,10824,1,NULL,1); /*!40000 ALTER TABLE `SocialActivitySet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivitySetting` -- DROP TABLE IF EXISTS `SocialActivitySetting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivitySetting` ( `activitySettingId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `activityType` int(11) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `value` varchar(1024) DEFAULT NULL, PRIMARY KEY (`activitySettingId`), KEY `IX_384788CD` (`groupId`,`activityType`), KEY `IX_1E9CF33B` (`groupId`,`classNameId`,`activityType`), KEY `IX_D984AABA` (`groupId`,`classNameId`,`activityType`,`name`), KEY `IX_8BE5F230` (`groupId`), KEY `IX_9D22151E` (`groupId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivitySetting` -- LOCK TABLES `SocialActivitySetting` WRITE; /*!40000 ALTER TABLE `SocialActivitySetting` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivitySetting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialRelation` -- DROP TABLE IF EXISTS `SocialRelation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialRelation` ( `uuid_` varchar(75) DEFAULT NULL, `relationId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `userId1` bigint(20) DEFAULT NULL, `userId2` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, PRIMARY KEY (`relationId`), UNIQUE KEY `IX_12A92145` (`userId1`,`userId2`,`type_`), KEY `IX_61171E99` (`companyId`), KEY `IX_95135D1C` (`companyId`,`type_`), KEY `IX_C31A64C6` (`type_`), KEY `IX_5A40CDCC` (`userId1`), KEY `IX_4B52BE89` (`userId1`,`type_`), KEY `IX_5A40D18D` (`userId2`), KEY `IX_3F9C2FA8` (`userId2`,`type_`), KEY `IX_F0CA24A5` (`uuid_`), KEY `IX_B5C9C690` (`userId1`,`userId2`), KEY `IX_5B30F663` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialRelation` -- LOCK TABLES `SocialRelation` WRITE; /*!40000 ALTER TABLE `SocialRelation` DISABLE KEYS */; INSERT INTO `SocialRelation` VALUES ('706b57ef-69ae-477d-914a-9a19d6cbde6f',11379,10202,1479837264114,11107,10963,2),('0ff2c22d-179b-486e-a028-384cc5744a5b',11380,10202,1479837264116,10963,11107,2),('64e6078a-7ced-4fb9-8abc-6227fc5bdef0',11381,10202,1479837264143,11107,11035,2),('c7860ced-80ca-45be-a980-7dc76e5dbc7a',11382,10202,1479837264145,11035,11107,2),('09865af7-74e2-4b13-86c0-8e0bf8f62324',11383,10202,1479837264153,11107,11179,2),('d55a9393-3a02-4119-b6db-b3460435bede',11384,10202,1479837264154,11179,11107,2); /*!40000 ALTER TABLE `SocialRelation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialRequest` -- DROP TABLE IF EXISTS `SocialRequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialRequest` ( `uuid_` varchar(75) DEFAULT NULL, `requestId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `modifiedDate` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, `receiverUserId` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`requestId`), UNIQUE KEY `IX_36A90CA7` (`userId`,`classNameId`,`classPK`,`type_`,`receiverUserId`), UNIQUE KEY `IX_4F973EFE` (`uuid_`,`groupId`), KEY `IX_D3425487` (`classNameId`,`classPK`,`type_`,`receiverUserId`,`status`), KEY `IX_A90FE5A0` (`companyId`), KEY `IX_32292ED1` (`receiverUserId`), KEY `IX_D9380CB7` (`receiverUserId`,`status`), KEY `IX_80F7A9C2` (`userId`), KEY `IX_CC86A444` (`userId`,`classNameId`,`classPK`,`type_`,`status`), KEY `IX_AB5906A8` (`userId`,`status`), KEY `IX_49D5872C` (`uuid_`), KEY `IX_8D42897C` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialRequest` -- LOCK TABLES `SocialRequest` WRITE; /*!40000 ALTER TABLE `SocialRequest` DISABLE KEYS */; INSERT INTO `SocialRequest` VALUES ('3b7d42d2-2b4d-4d63-acaa-6536a1eaac11',1,0,10202,11107,1479837264078,1479837264104,10046,11107,1,'',10963,1),('0d5cb21b-8f2e-4600-ab38-08d7d4bffd93',2,0,10202,11107,1479837264129,1479837264140,10046,11107,1,'',11035,1),('4e6b7087-1532-41f7-88bf-2b05c115acb3',3,0,10202,11107,1479837264149,1479837264152,10046,11107,1,'',11179,1),('14b62b00-e6b2-4858-9c2e-a844585f90ba',4,0,10202,11035,1479837264159,1479837264159,10046,11035,1,'',10963,3),('2c121b5a-66d5-48e5-8541-0700a42f1dda',5,0,10202,11035,1479837264168,1479837264168,10046,11035,1,'',11179,3); /*!40000 ALTER TABLE `SocialRequest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Subscription` -- DROP TABLE IF EXISTS `Subscription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Subscription` ( `subscriptionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `frequency` varchar(75) DEFAULT NULL, PRIMARY KEY (`subscriptionId`), UNIQUE KEY `IX_2E1A92D4` (`companyId`,`userId`,`classNameId`,`classPK`), KEY `IX_786D171A` (`companyId`,`classNameId`,`classPK`), KEY `IX_54243AFD` (`userId`), KEY `IX_E8F34171` (`userId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Subscription` -- LOCK TABLES `Subscription` WRITE; /*!40000 ALTER TABLE `Subscription` DISABLE KEYS */; /*!40000 ALTER TABLE `Subscription` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SyncDLFileVersionDiff` -- DROP TABLE IF EXISTS `SyncDLFileVersionDiff`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SyncDLFileVersionDiff` ( `syncDLFileVersionDiffId` bigint(20) NOT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `sourceFileVersionId` bigint(20) DEFAULT NULL, `targetFileVersionId` bigint(20) DEFAULT NULL, `dataFileEntryId` bigint(20) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, PRIMARY KEY (`syncDLFileVersionDiffId`), UNIQUE KEY `IX_AC4C7667` (`fileEntryId`,`sourceFileVersionId`,`targetFileVersionId`), KEY `IX_A9B43C55` (`expirationDate`), KEY `IX_F832A75D` (`fileEntryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SyncDLFileVersionDiff` -- LOCK TABLES `SyncDLFileVersionDiff` WRITE; /*!40000 ALTER TABLE `SyncDLFileVersionDiff` DISABLE KEYS */; /*!40000 ALTER TABLE `SyncDLFileVersionDiff` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SyncDLObject` -- DROP TABLE IF EXISTS `SyncDLObject`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SyncDLObject` ( `syncDLObjectId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createTime` bigint(20) DEFAULT NULL, `modifiedTime` bigint(20) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(255) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `description` longtext, `changeLog` varchar(75) DEFAULT NULL, `extraSettings` longtext, `version` varchar(75) DEFAULT NULL, `versionId` bigint(20) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `checksum` varchar(75) DEFAULT NULL, `event` varchar(75) DEFAULT NULL, `lastPermissionChangeDate` datetime DEFAULT NULL, `lockExpirationDate` datetime DEFAULT NULL, `lockUserId` bigint(20) DEFAULT NULL, `lockUserName` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `typePK` bigint(20) DEFAULT NULL, `typeUuid` varchar(75) DEFAULT NULL, PRIMARY KEY (`syncDLObjectId`), UNIQUE KEY `IX_E3F57BD6` (`type_`,`typePK`), KEY `IX_980323CB` (`modifiedTime`,`repositoryId`), KEY `IX_8D4FDC9F` (`modifiedTime`,`repositoryId`,`event`), KEY `IX_A3ACE372` (`modifiedTime`,`repositoryId`,`parentFolderId`), KEY `IX_F174AD48` (`repositoryId`,`parentFolderId`), KEY `IX_3BE7BB8D` (`repositoryId`,`parentFolderId`,`type_`), KEY `IX_57F62914` (`repositoryId`,`type_`), KEY `IX_28CD54BB` (`type_`,`version`), KEY `IX_1CCA3B5` (`version`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SyncDLObject` -- LOCK TABLES `SyncDLObject` WRITE; /*!40000 ALTER TABLE `SyncDLObject` DISABLE KEYS */; INSERT INTO `SyncDLObject` VALUES (12038,10202,0,'',1479837263000,1479837263000,10965,0,'/11310/','Important Documents','','','Documents related with the company','','','',0,0,'','add',NULL,NULL,0,'','folder',11310,'15b8bda7-6b92-43db-9b19-99a1e0e09f99'),(12039,10202,10963,'Bruno Admin',1479837264000,1479837264000,10965,11310,'/11310/','Budget','xls','application/vnd.ms-excel','Budgets for the current year','','','1.0',11312,6656,'dRyxfhEnXBR/YJCv7Zf3gS1qD0I=','add',NULL,NULL,0,'','file',11311,'31a9d13d-e76c-4068-84c9-bd53b27a029e'),(12040,10202,0,'',1479837264000,1479837264000,11109,0,'/11324/','My Documents','','','Personal docs','','','',0,0,'','add',NULL,NULL,0,'','folder',11324,'d5f8b216-ebe9-4c4f-8231-3965c95f6915'),(12041,10202,0,'',1479837264000,1479837264000,11109,0,'/11325/','Work Documents','','','Works docs','','','',0,0,'','add',NULL,NULL,0,'','folder',11325,'cbc7f5e7-032d-47dd-b69c-db170a18e7b0'),(12042,10202,11107,'Michelle Writer',1479837264000,1479837264000,11109,11325,'/11325/','Notes from the last meeting','doc','application/msword','Important notes','','','1.0',11327,8192,'Up0jnbtHxqat1v0utTyxzD30ScA=','add',NULL,NULL,0,'','file',11326,'b5390dda-2870-4ff5-8ad0-7ee4ae4825f1'),(12043,10202,0,'',1479837264000,1479837264000,11181,0,'/11339/','Documentation','','','','','','',0,0,'','add',NULL,NULL,0,'','folder',11339,'56d95d96-175e-46e2-9d96-ea4d8fa8384a'),(12044,10202,0,'',1479837264000,1479837264000,11181,0,'/11340/','Innovation','','','New things','','','',0,0,'','add',NULL,NULL,0,'','folder',11340,'3a2a813e-43ab-4958-9e71-29502b04c27d'),(12045,10202,11179,'Richard Editor',1479837264000,1479837264000,11181,11340,'/11340/','New Features','ppt','application/vnd.ms-powerpoint','Features for the current year','','','1.0',11342,109568,'2xPLKBU9ICGTOBifpvBkEabySAQ=','add',NULL,NULL,0,'','file',11341,'3b48be63-926a-4282-93e5-c626e43955d3'),(12046,10202,0,'',1479837256000,1479837256000,10587,0,'/10602/','7Cogs Web Content','','','Images used for content','','','',0,0,'','add',NULL,NULL,0,'','folder',10602,'4ee9a238-4680-493e-848e-1e5603d8b6ec'),(12047,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','cog_blue','png','image/png','','','','1.0',11509,2212,'kq9VdNR1D0VRvKF/C0EIXe1SK44=','add',NULL,NULL,0,'','file',10603,'3b944cec-37dc-447a-8b11-cf929f53fa36'),(12048,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','cog_light_blue','png','image/png','','','','1.0',11510,2789,'YjVzcvcvS7q4AH7wxRAkAZ7XK38=','add',NULL,NULL,0,'','file',10609,'9bcb84bf-b6c6-4a48-8e83-0ed732262913'),(12049,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','cog_orange','png','image/png','','','','1.0',11511,2078,'aBE/+ot8UExdebjS/Fm2Sy+thBA=','add',NULL,NULL,0,'','file',10613,'9488439a-162c-45be-addf-f7ced1d6d6dd'),(12050,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','blogs_icon','png','image/png','','','','1.0',11512,5414,'qdzWSpTPon10jx/mZdP8xDA3KXI=','add',NULL,NULL,0,'','file',10617,'8f2124c5-878d-446e-8081-81491ce569a6'),(12051,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','cog_network_advertisement','png','image/png','','','','1.0',11513,24537,'M5SgE8m5gog1sy8v8ygtMOt/5y0=','add',NULL,NULL,0,'','file',10625,'d5d44050-5192-4775-858b-887d067a0d8d'),(12052,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','forums_icon','png','image/png','','','','1.0',11514,5904,'iQ9BjgMakeRMwCcSDwIBcyBCRqA=','add',NULL,NULL,0,'','file',10629,'3d7f606e-51ba-4e5c-9d44-09ae67f6a874'),(12053,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','liferay_logo','png','image/png','','','','1.0',11515,906,'5HGp1CeidxwQqnKJk3KEbyxM690=','add',NULL,NULL,0,'','file',10635,'dd0a47ee-2316-4ad2-b7f8-f861d3fb3437'),(12054,10202,10205,'',1479837256000,1479837256000,10587,10602,'/10602/','home_page_banner','png','image/png','','','','1.0',11516,43180,'22zifpCtBGpsbeh/Wnr/f3b1+cI=','add',NULL,NULL,0,'','file',10643,'4358cb75-aa7a-4a9c-a340-321ebf48c3cd'),(12055,10202,10205,'',1479837257000,1479837257000,10587,10602,'/10602/','products_icon','png','image/png','','','','1.0',11517,5995,'XKTUhqvpvBBK/AdBBhm7euDLyms=','add',NULL,NULL,0,'','file',10647,'d0e97861-29dc-48b5-aa33-56069cf928bf'),(12056,10202,10205,'',1479837257000,1479837257000,10587,10602,'/10602/','product_landing','png','image/png','','','','1.0',11518,34165,'SRZJjdsDXT8L7pFz087lCXIzcyU=','add',NULL,NULL,0,'','file',10653,'ce41045e-574c-4a0f-9536-0b0858d78ce6'),(12057,10202,0,'',1479837260000,1479837260000,10912,0,'/10921/','7Cogs Mobile Content','','','Images used for mobile content','','','',0,0,'','add',NULL,NULL,0,'','folder',10921,'baac9429-70a4-4a71-9645-b0c224de471f'),(12058,10202,10205,'',1479837260000,1479837260000,10912,10921,'/10921/','mobile_product_1','png','image/png','','','','1.0',11519,48468,'fuyVlHLDNfmWjXPcIk+LyeKaRPE=','add',NULL,NULL,0,'','file',10922,'219d7ad3-126c-4cdf-8e9f-34fd980b555f'),(12059,10202,10205,'',1479837260000,1479837260000,10912,10921,'/10921/','mobile_product_2','png','image/png','','','','1.0',11520,48571,'0ajcC03vrHa3AYClmKohD+b+6Mg=','add',NULL,NULL,0,'','file',10926,'22b4f239-6ec9-44ac-9a58-0925ce57643f'),(12060,10202,0,'',1479837254000,1479837254000,10227,0,'/10491/','Web Content','','','Images used for content','','','',0,0,'','add',NULL,NULL,0,'','folder',10491,'871dcca6-2463-49e8-a0d0-d0694db3279a'),(12061,10202,10205,'',1479837254000,1479837254000,10227,10491,'/10491/','cell_bg','png','image/png','','','','1.0',11502,305,'ycFl9xX4mD1LLmOfuJ9vfru2X/o=','add',NULL,NULL,0,'','file',10492,'4e44f50d-6aa5-4b7a-a75d-6b6e67ee3a94'),(12062,10202,10205,'',1479837255000,1479837255000,10227,10491,'/10491/','portal_mashup','png','image/png','','','','1.0',11503,36562,'R6urfu0dkFlweWRiNf9R0cA94f0=','add',NULL,NULL,0,'','file',10496,'bcde623b-42f5-4871-9ade-44052d10fadd'),(12063,10202,10205,'',1479837255000,1479837255000,10227,10491,'/10491/','sevencogs_ad','png','image/png','','','','1.0',11504,7491,'aHSFICY+t3zXpOMAVcXXIzA/tYs=','add',NULL,NULL,0,'','file',10500,'b976fd0b-fe08-426e-933f-bad870fa3df3'),(12064,10202,10205,'',1479837255000,1479837255000,10227,10491,'/10491/','sevencogs_mobile_ad','png','image/png','','','','1.0',11505,6963,'uyZa3Wxrepfaro77ryka2H1D0aI=','add',NULL,NULL,0,'','file',10504,'c347888a-470f-404e-b645-5cf1e60af860'),(12065,10202,10205,'',1479837255000,1479837255000,10227,10491,'/10491/','shared_workspaces','png','image/png','','','','1.0',11506,30734,'4tvqB1O1mmQEtHqtEsihI9kNl2o=','add',NULL,NULL,0,'','file',10508,'23a1b7d8-a446-4d88-b288-d74eb2f0986f'),(12066,10202,10205,'',1479837255000,1479837255000,10227,10491,'/10491/','social_network','png','image/png','','','','1.0',11507,19163,'3L+5wUv/aM4m3ykn7pdB4+50tGM=','add',NULL,NULL,0,'','file',10512,'fada6a18-d179-4f70-8b15-185b5db60195'),(12067,10202,10205,'',1479837255000,1479837255000,10227,10491,'/10491/','web_publishing','png','image/png','','','','1.0',11508,24886,'zfPZmp8Q4Qne8B1wLkJlz6Jxz+Q=','add',NULL,NULL,0,'','file',10516,'bf41b99a-4f5d-4ed9-aec0-fce2a143a4da'); /*!40000 ALTER TABLE `SyncDLObject` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemEvent` -- DROP TABLE IF EXISTS `SystemEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SystemEvent` ( `systemEventId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `classUuid` varchar(75) DEFAULT NULL, `referrerClassNameId` bigint(20) DEFAULT NULL, `parentSystemEventId` bigint(20) DEFAULT NULL, `systemEventSetKey` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, PRIMARY KEY (`systemEventId`), KEY `IX_72D73D39` (`groupId`), KEY `IX_7A2F0ECE` (`groupId`,`classNameId`,`classPK`), KEY `IX_FFCBB747` (`groupId`,`classNameId`,`classPK`,`type_`), KEY `IX_A19C89FF` (`groupId`,`systemEventSetKey`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemEvent` -- LOCK TABLES `SystemEvent` WRITE; /*!40000 ALTER TABLE `SystemEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `SystemEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TMS_TasksEntry` -- DROP TABLE IF EXISTS `TMS_TasksEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TMS_TasksEntry` ( `tasksEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `priority` int(11) DEFAULT NULL, `assigneeUserId` bigint(20) DEFAULT NULL, `resolverUserId` bigint(20) DEFAULT NULL, `dueDate` datetime DEFAULT NULL, `finishDate` datetime DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`tasksEntryId`), KEY `IX_9DB062B8` (`assigneeUserId`), KEY `IX_DF694DFB` (`groupId`), KEY `IX_EE672124` (`groupId`,`assigneeUserId`), KEY `IX_EB40A85B` (`groupId`,`resolverUserId`), KEY `IX_84A27B35` (`groupId`,`userId`), KEY `IX_9A89E9EF` (`resolverUserId`), KEY `IX_5D4090C9` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TMS_TasksEntry` -- LOCK TABLES `TMS_TasksEntry` WRITE; /*!40000 ALTER TABLE `TMS_TasksEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `TMS_TasksEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TasksProposal` -- DROP TABLE IF EXISTS `TasksProposal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TasksProposal` ( `proposalId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` varchar(75) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `publishDate` datetime DEFAULT NULL, `dueDate` datetime DEFAULT NULL, PRIMARY KEY (`proposalId`), UNIQUE KEY `IX_181A4A1B` (`classNameId`,`classPK`), KEY `IX_7FB27324` (`groupId`), KEY `IX_6EEC675E` (`groupId`,`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TasksProposal` -- LOCK TABLES `TasksProposal` WRITE; /*!40000 ALTER TABLE `TasksProposal` DISABLE KEYS */; /*!40000 ALTER TABLE `TasksProposal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TasksReview` -- DROP TABLE IF EXISTS `TasksReview`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TasksReview` ( `reviewId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `proposalId` bigint(20) DEFAULT NULL, `assignedByUserId` bigint(20) DEFAULT NULL, `assignedByUserName` varchar(75) DEFAULT NULL, `stage` int(11) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `rejected` tinyint(4) DEFAULT NULL, PRIMARY KEY (`reviewId`), UNIQUE KEY `IX_5C6BE4C7` (`userId`,`proposalId`), KEY `IX_4D0C7F8D` (`proposalId`), KEY `IX_70AFEA01` (`proposalId`,`stage`), KEY `IX_1894B29A` (`proposalId`,`stage`,`completed`), KEY `IX_41AFC20C` (`proposalId`,`stage`,`completed`,`rejected`), KEY `IX_36F512E6` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TasksReview` -- LOCK TABLES `TasksReview` WRITE; /*!40000 ALTER TABLE `TasksReview` DISABLE KEYS */; /*!40000 ALTER TABLE `TasksReview` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Team` -- DROP TABLE IF EXISTS `Team`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Team` ( `teamId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, PRIMARY KEY (`teamId`), UNIQUE KEY `IX_143DC786` (`groupId`,`name`), KEY `IX_AE6E9907` (`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Team` -- LOCK TABLES `Team` WRITE; /*!40000 ALTER TABLE `Team` DISABLE KEYS */; /*!40000 ALTER TABLE `Team` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Ticket` -- DROP TABLE IF EXISTS `Ticket`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Ticket` ( `ticketId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `key_` varchar(75) DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraInfo` longtext, PRIMARY KEY (`ticketId`), KEY `IX_B2468446` (`key_`), KEY `IX_1E8DFB2E` (`classNameId`,`classPK`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Ticket` -- LOCK TABLES `Ticket` WRITE; /*!40000 ALTER TABLE `Ticket` DISABLE KEYS */; /*!40000 ALTER TABLE `Ticket` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TrashEntry` -- DROP TABLE IF EXISTS `TrashEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TrashEntry` ( `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `systemEventSetKey` bigint(20) DEFAULT NULL, `typeSettings` longtext, `status` int(11) DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_B35F73D5` (`classNameId`,`classPK`), KEY `IX_2674F2A8` (`companyId`), KEY `IX_526A032A` (`groupId`), KEY `IX_FC4EEA64` (`groupId`,`classNameId`), KEY `IX_6CAAE2E8` (`groupId`,`createDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TrashEntry` -- LOCK TABLES `TrashEntry` WRITE; /*!40000 ALTER TABLE `TrashEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `TrashEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TrashVersion` -- DROP TABLE IF EXISTS `TrashVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TrashVersion` ( `versionId` bigint(20) NOT NULL, `entryId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `typeSettings` longtext, `status` int(11) DEFAULT NULL, PRIMARY KEY (`versionId`), UNIQUE KEY `IX_D639348C` (`entryId`,`classNameId`,`classPK`), KEY `IX_630A643B` (`classNameId`,`classPK`), KEY `IX_55D44577` (`entryId`), KEY `IX_72D58D37` (`entryId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TrashVersion` -- LOCK TABLES `TrashVersion` WRITE; /*!40000 ALTER TABLE `TrashVersion` DISABLE KEYS */; /*!40000 ALTER TABLE `TrashVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroup` -- DROP TABLE IF EXISTS `UserGroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroup` ( `userGroupId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `parentUserGroupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `addedByLDAPImport` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, PRIMARY KEY (`userGroupId`), UNIQUE KEY `IX_23EAD0D` (`companyId`,`name`), KEY `IX_524FEFCE` (`companyId`), KEY `IX_69771487` (`companyId`,`parentUserGroupId`), KEY `IX_5F1DD85A` (`uuid_`), KEY `IX_72394F8E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroup` -- LOCK TABLES `UserGroup` WRITE; /*!40000 ALTER TABLE `UserGroup` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroupGroupRole` -- DROP TABLE IF EXISTS `UserGroupGroupRole`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroupGroupRole` ( `userGroupId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, PRIMARY KEY (`userGroupId`,`groupId`,`roleId`), KEY `IX_CCBE4063` (`groupId`), KEY `IX_CAB0CCC8` (`groupId`,`roleId`), KEY `IX_1CDF88C` (`roleId`), KEY `IX_DCDED558` (`userGroupId`), KEY `IX_73C52252` (`userGroupId`,`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroupGroupRole` -- LOCK TABLES `UserGroupGroupRole` WRITE; /*!40000 ALTER TABLE `UserGroupGroupRole` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroupGroupRole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroupRole` -- DROP TABLE IF EXISTS `UserGroupRole`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroupRole` ( `userId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, PRIMARY KEY (`userId`,`groupId`,`roleId`), KEY `IX_1B988D7A` (`groupId`), KEY `IX_871412DF` (`groupId`,`roleId`), KEY `IX_887A2C95` (`roleId`), KEY `IX_887BE56A` (`userId`), KEY `IX_4D040680` (`userId`,`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroupRole` -- LOCK TABLES `UserGroupRole` WRITE; /*!40000 ALTER TABLE `UserGroupRole` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroupRole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroups_Teams` -- DROP TABLE IF EXISTS `UserGroups_Teams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroups_Teams` ( `userGroupId` bigint(20) NOT NULL, `teamId` bigint(20) NOT NULL, PRIMARY KEY (`userGroupId`,`teamId`), KEY `IX_31FB0B08` (`teamId`), KEY `IX_7F187E63` (`userGroupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroups_Teams` -- LOCK TABLES `UserGroups_Teams` WRITE; /*!40000 ALTER TABLE `UserGroups_Teams` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroups_Teams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserIdMapper` -- DROP TABLE IF EXISTS `UserIdMapper`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserIdMapper` ( `userIdMapperId` bigint(20) NOT NULL, `userId` bigint(20) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `description` varchar(75) DEFAULT NULL, `externalUserId` varchar(75) DEFAULT NULL, PRIMARY KEY (`userIdMapperId`), UNIQUE KEY `IX_41A32E0D` (`type_`,`externalUserId`), UNIQUE KEY `IX_D1C44A6E` (`userId`,`type_`), KEY `IX_E60EA987` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserIdMapper` -- LOCK TABLES `UserIdMapper` WRITE; /*!40000 ALTER TABLE `UserIdMapper` DISABLE KEYS */; /*!40000 ALTER TABLE `UserIdMapper` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserNotificationDelivery` -- DROP TABLE IF EXISTS `UserNotificationDelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserNotificationDelivery` ( `userNotificationDeliveryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `notificationType` int(11) DEFAULT NULL, `deliveryType` int(11) DEFAULT NULL, `deliver` tinyint(4) DEFAULT NULL, PRIMARY KEY (`userNotificationDeliveryId`), UNIQUE KEY `IX_8B6E3ACE` (`userId`,`portletId`,`classNameId`,`notificationType`,`deliveryType`), KEY `IX_C648700A` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserNotificationDelivery` -- LOCK TABLES `UserNotificationDelivery` WRITE; /*!40000 ALTER TABLE `UserNotificationDelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `UserNotificationDelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserNotificationEvent` -- DROP TABLE IF EXISTS `UserNotificationEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserNotificationEvent` ( `uuid_` varchar(75) DEFAULT NULL, `userNotificationEventId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `timestamp` bigint(20) DEFAULT NULL, `deliverBy` bigint(20) DEFAULT NULL, `payload` longtext, `archived` tinyint(4) DEFAULT NULL, `delivered` tinyint(4) DEFAULT NULL, PRIMARY KEY (`userNotificationEventId`), KEY `IX_3E5D78C4` (`userId`), KEY `IX_3DBB361A` (`userId`,`archived`), KEY `IX_ECD8CFEA` (`uuid_`), KEY `IX_24F1BF0` (`userId`,`delivered`), KEY `IX_A6BAFDFE` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserNotificationEvent` -- LOCK TABLES `UserNotificationEvent` WRITE; /*!40000 ALTER TABLE `UserNotificationEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `UserNotificationEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserTracker` -- DROP TABLE IF EXISTS `UserTracker`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserTracker` ( `userTrackerId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `sessionId` varchar(200) DEFAULT NULL, `remoteAddr` varchar(75) DEFAULT NULL, `remoteHost` varchar(75) DEFAULT NULL, `userAgent` varchar(200) DEFAULT NULL, PRIMARY KEY (`userTrackerId`), KEY `IX_29BA1CF5` (`companyId`), KEY `IX_46B0AE8E` (`sessionId`), KEY `IX_E4EFBA8D` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserTracker` -- LOCK TABLES `UserTracker` WRITE; /*!40000 ALTER TABLE `UserTracker` DISABLE KEYS */; /*!40000 ALTER TABLE `UserTracker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserTrackerPath` -- DROP TABLE IF EXISTS `UserTrackerPath`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserTrackerPath` ( `userTrackerPathId` bigint(20) NOT NULL, `userTrackerId` bigint(20) DEFAULT NULL, `path_` longtext, `pathDate` datetime DEFAULT NULL, PRIMARY KEY (`userTrackerPathId`), KEY `IX_14D8BCC0` (`userTrackerId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserTrackerPath` -- LOCK TABLES `UserTrackerPath` WRITE; /*!40000 ALTER TABLE `UserTrackerPath` DISABLE KEYS */; /*!40000 ALTER TABLE `UserTrackerPath` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `User_` -- DROP TABLE IF EXISTS `User_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `User_` ( `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `defaultUser` tinyint(4) DEFAULT NULL, `contactId` bigint(20) DEFAULT NULL, `password_` varchar(75) DEFAULT NULL, `passwordEncrypted` tinyint(4) DEFAULT NULL, `passwordReset` tinyint(4) DEFAULT NULL, `passwordModifiedDate` datetime DEFAULT NULL, `digest` varchar(255) DEFAULT NULL, `reminderQueryQuestion` varchar(75) DEFAULT NULL, `reminderQueryAnswer` varchar(75) DEFAULT NULL, `graceLoginCount` int(11) DEFAULT NULL, `screenName` varchar(75) DEFAULT NULL, `emailAddress` varchar(75) DEFAULT NULL, `facebookId` bigint(20) DEFAULT NULL, `openId` varchar(1024) DEFAULT NULL, `portraitId` bigint(20) DEFAULT NULL, `languageId` varchar(75) DEFAULT NULL, `timeZoneId` varchar(75) DEFAULT NULL, `greeting` varchar(255) DEFAULT NULL, `comments` longtext, `firstName` varchar(75) DEFAULT NULL, `middleName` varchar(75) DEFAULT NULL, `lastName` varchar(75) DEFAULT NULL, `jobTitle` varchar(100) DEFAULT NULL, `loginDate` datetime DEFAULT NULL, `loginIP` varchar(75) DEFAULT NULL, `lastLoginDate` datetime DEFAULT NULL, `lastLoginIP` varchar(75) DEFAULT NULL, `lastFailedLoginDate` datetime DEFAULT NULL, `failedLoginAttempts` int(11) DEFAULT NULL, `lockout` tinyint(4) DEFAULT NULL, `lockoutDate` datetime DEFAULT NULL, `agreedToTermsOfUse` tinyint(4) DEFAULT NULL, `emailAddressVerified` tinyint(4) DEFAULT NULL, `status` int(11) DEFAULT NULL, `ldapServerId` bigint(20) DEFAULT NULL, PRIMARY KEY (`userId`), UNIQUE KEY `IX_615E9F7A` (`companyId`,`emailAddress`), UNIQUE KEY `IX_C5806019` (`companyId`,`screenName`), UNIQUE KEY `IX_9782AD88` (`companyId`,`userId`), UNIQUE KEY `IX_5ADBE171` (`contactId`), KEY `IX_3A1E834E` (`companyId`), KEY `IX_6EF03E4E` (`companyId`,`defaultUser`), KEY `IX_1D731F03` (`companyId`,`facebookId`), KEY `IX_762F63C6` (`emailAddress`), KEY `IX_A18034A4` (`portraitId`), KEY `IX_E0422BDA` (`uuid_`), KEY `IX_740C4D0C` (`companyId`,`createDate`), KEY `IX_BCFDA257` (`companyId`,`createDate`,`modifiedDate`), KEY `IX_EE8ABD19` (`companyId`,`modifiedDate`), KEY `IX_F6039434` (`companyId`,`status`), KEY `IX_405CC0E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `User_` -- LOCK TABLES `User_` WRITE; /*!40000 ALTER TABLE `User_` DISABLE KEYS */; INSERT INTO `User_` VALUES ('a36c6824-6b24-4106-ad7f-da9fac2260d9',10205,10202,'2016-11-22 17:54:01','2016-11-22 17:54:01',1,10206,'password',0,0,NULL,'5533ed38b5e33c076a804bb4bca644f9,4dfd2efa62787037a39353b0ff556c35,4dfd2efa62787037a39353b0ff556c35','','',0,'10205','default@liferay.com',0,'',0,'en_US','UTC','Welcome!','','','','','','2016-11-22 17:54:01','',NULL,'',NULL,0,0,NULL,1,1,0,-1),('73f5b962-5cb4-464a-9312-895afccfeb19',10239,10202,'2016-11-22 17:54:02','2016-11-22 17:54:02',0,10240,'qUqP5cyxm6YcTAhz05Hph5gvu9M=',1,0,NULL,'e5d86c6f3672e52795891c3597f20de0,751da756639bc033b572ba2e7849b589,e87d740b70d367d54e0e2f61f2e84eef','what-is-your-father\'s-middle-name','test',0,'test','test@liferay.com',0,'',0,'en_US','UTC','Welcome Test Test!','','Test','','Test','','2016-11-22 18:06:21','127.0.0.1','2016-11-22 18:02:06','127.0.0.1',NULL,0,0,NULL,1,1,0,-1),('6d901f6d-b159-4808-8463-a5e416a5b4b7',10963,10202,'2016-11-22 17:54:20','2016-11-22 17:54:20',0,10964,'ZgYJsXFgf/Pc0pSSnl2COXNvQpg=',1,0,NULL,'','what-is-your-primary-frequent-flyer-number','1234',0,'bruno','bruno@7cogs.com',0,'',10969,'en_US','UTC','Welcome Bruno Admin!','','Bruno','','Admin','Administrator',NULL,'',NULL,'',NULL,0,0,NULL,0,1,0,-1),('b820e22d-c1c4-4e43-ae37-39944aa1d205',11035,10202,'2016-11-22 17:54:21','2016-11-22 17:54:21',0,11036,'pR3afH/1C2Hq6gRENx9KapMB5QE=',1,0,NULL,'','what-is-your-primary-frequent-flyer-number','1234',0,'john','john@7cogs.com',0,'',11041,'en_US','UTC','Welcome John Regular!','','John','','Regular','Employee',NULL,'',NULL,'',NULL,0,0,NULL,0,1,0,-1),('41a50f95-93e5-4cdf-9fc6-2f0a44898413',11107,10202,'2016-11-22 17:54:22','2016-11-22 17:54:22',0,11108,'chKp4BMp6pOlf1dL2b93aV1f3KQ=',1,0,NULL,'','what-is-your-primary-frequent-flyer-number','1234',0,'michelle','michelle@7cogs.com',0,'',11113,'en_US','UTC','Welcome Michelle Writer!','','Michelle','','Writer','Writer',NULL,'',NULL,'',NULL,0,0,NULL,0,1,0,-1),('a2b721ef-f689-475c-8131-d53320195af7',11179,10202,'2016-11-22 17:54:22','2016-11-22 17:54:22',0,11180,'MgvKcfw4GkoCVjYEPKhuc04xz4s=',1,0,NULL,'','what-is-your-primary-frequent-flyer-number','1234',0,'richard','richard@7cogs.com',0,'',11185,'en_US','UTC','Welcome Richard Editor!','','Richard','','Editor','Publisher',NULL,'',NULL,'',NULL,0,0,NULL,0,1,0,-1); /*!40000 ALTER TABLE `User_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Groups` -- DROP TABLE IF EXISTS `Users_Groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Groups` ( `userId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, PRIMARY KEY (`userId`,`groupId`), KEY `IX_C4F9E699` (`groupId`), KEY `IX_F10B6C6B` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Groups` -- LOCK TABLES `Users_Groups` WRITE; /*!40000 ALTER TABLE `Users_Groups` DISABLE KEYS */; INSERT INTO `Users_Groups` VALUES (10239,10227),(10963,10227),(11035,10227),(11107,10227),(11179,10227); /*!40000 ALTER TABLE `Users_Groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Orgs` -- DROP TABLE IF EXISTS `Users_Orgs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Orgs` ( `userId` bigint(20) NOT NULL, `organizationId` bigint(20) NOT NULL, PRIMARY KEY (`userId`,`organizationId`), KEY `IX_7EF4EC0E` (`organizationId`), KEY `IX_FB646CA6` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Orgs` -- LOCK TABLES `Users_Orgs` WRITE; /*!40000 ALTER TABLE `Users_Orgs` DISABLE KEYS */; INSERT INTO `Users_Orgs` VALUES (10963,10586),(11035,10586),(11107,10586),(11179,10586); /*!40000 ALTER TABLE `Users_Orgs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Roles` -- DROP TABLE IF EXISTS `Users_Roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Roles` ( `userId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, PRIMARY KEY (`userId`,`roleId`), KEY `IX_C19E5F31` (`roleId`), KEY `IX_C1A01806` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Roles` -- LOCK TABLES `Users_Roles` WRITE; /*!40000 ALTER TABLE `Users_Roles` DISABLE KEYS */; INSERT INTO `Users_Roles` VALUES (10239,10208),(10963,10208),(10205,10209),(10239,10211),(10963,10211),(11035,10211),(11107,10211),(11179,10211),(10239,10212),(10963,10212),(11035,10212),(11107,10212),(11179,10212),(11179,10447),(11179,10961),(11107,10962); /*!40000 ALTER TABLE `Users_Roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Teams` -- DROP TABLE IF EXISTS `Users_Teams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Teams` ( `userId` bigint(20) NOT NULL, `teamId` bigint(20) NOT NULL, PRIMARY KEY (`userId`,`teamId`), KEY `IX_4D06AD51` (`teamId`), KEY `IX_A098EFBF` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Teams` -- LOCK TABLES `Users_Teams` WRITE; /*!40000 ALTER TABLE `Users_Teams` DISABLE KEYS */; /*!40000 ALTER TABLE `Users_Teams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_UserGroups` -- DROP TABLE IF EXISTS `Users_UserGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_UserGroups` ( `userGroupId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, PRIMARY KEY (`userGroupId`,`userId`), KEY `IX_66FF2503` (`userGroupId`), KEY `IX_BE8102D6` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_UserGroups` -- LOCK TABLES `Users_UserGroups` WRITE; /*!40000 ALTER TABLE `Users_UserGroups` DISABLE KEYS */; /*!40000 ALTER TABLE `Users_UserGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `VirtualHost` -- DROP TABLE IF EXISTS `VirtualHost`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `VirtualHost` ( `virtualHostId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `layoutSetId` bigint(20) DEFAULT NULL, `hostname` varchar(75) DEFAULT NULL, PRIMARY KEY (`virtualHostId`), UNIQUE KEY `IX_A083D394` (`companyId`,`layoutSetId`), UNIQUE KEY `IX_431A3960` (`hostname`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `VirtualHost` -- LOCK TABLES `VirtualHost` WRITE; /*!40000 ALTER TABLE `VirtualHost` DISABLE KEYS */; INSERT INTO `VirtualHost` VALUES (11560,10202,0,'localhost'); /*!40000 ALTER TABLE `VirtualHost` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Vocabulary` -- DROP TABLE IF EXISTS `Vocabulary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Vocabulary` ( `vocabularyId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` varchar(75) DEFAULT NULL, `folksonomy` tinyint(4) DEFAULT NULL, PRIMARY KEY (`vocabularyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Vocabulary` -- LOCK TABLES `Vocabulary` WRITE; /*!40000 ALTER TABLE `Vocabulary` DISABLE KEYS */; /*!40000 ALTER TABLE `Vocabulary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WSRP_WSRPConsumer` -- DROP TABLE IF EXISTS `WSRP_WSRPConsumer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WSRP_WSRPConsumer` ( `wsrpConsumerId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `url` longtext, `wsdl` longtext, `registrationContextString` longtext, `registrationPropertiesString` longtext, PRIMARY KEY (`wsrpConsumerId`), KEY `IX_8F3348D` (`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WSRP_WSRPConsumer` -- LOCK TABLES `WSRP_WSRPConsumer` WRITE; /*!40000 ALTER TABLE `WSRP_WSRPConsumer` DISABLE KEYS */; /*!40000 ALTER TABLE `WSRP_WSRPConsumer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WSRP_WSRPConsumerPortlet` -- DROP TABLE IF EXISTS `WSRP_WSRPConsumerPortlet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WSRP_WSRPConsumerPortlet` ( `wsrpConsumerPortletId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `wsrpConsumerId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `portletHandle` longtext, PRIMARY KEY (`wsrpConsumerPortletId`), KEY `IX_1CEEF2AA` (`wsrpConsumerId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WSRP_WSRPConsumerPortlet` -- LOCK TABLES `WSRP_WSRPConsumerPortlet` WRITE; /*!40000 ALTER TABLE `WSRP_WSRPConsumerPortlet` DISABLE KEYS */; /*!40000 ALTER TABLE `WSRP_WSRPConsumerPortlet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WSRP_WSRPProducer` -- DROP TABLE IF EXISTS `WSRP_WSRPProducer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WSRP_WSRPProducer` ( `wsrpProducerId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `portletIds` longtext, PRIMARY KEY (`wsrpProducerId`), KEY `IX_DD08A671` (`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WSRP_WSRPProducer` -- LOCK TABLES `WSRP_WSRPProducer` WRITE; /*!40000 ALTER TABLE `WSRP_WSRPProducer` DISABLE KEYS */; /*!40000 ALTER TABLE `WSRP_WSRPProducer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WebDAVProps` -- DROP TABLE IF EXISTS `WebDAVProps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WebDAVProps` ( `webDavPropsId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `props` longtext, PRIMARY KEY (`webDavPropsId`), UNIQUE KEY `IX_97DFA146` (`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WebDAVProps` -- LOCK TABLES `WebDAVProps` WRITE; /*!40000 ALTER TABLE `WebDAVProps` DISABLE KEYS */; /*!40000 ALTER TABLE `WebDAVProps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Website` -- DROP TABLE IF EXISTS `Website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Website` ( `websiteId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `url` longtext, `typeId` int(11) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, `uuid_` varchar(75) DEFAULT NULL, PRIMARY KEY (`websiteId`), KEY `IX_96F07007` (`companyId`), KEY `IX_4F0F0CA7` (`companyId`,`classNameId`), KEY `IX_F960131C` (`companyId`,`classNameId`,`classPK`), KEY `IX_1AA07A6D` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_F75690BB` (`userId`), KEY `IX_76F15D13` (`uuid_`), KEY `IX_712BCD35` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Website` -- LOCK TABLES `Website` WRITE; /*!40000 ALTER TABLE `Website` DISABLE KEYS */; /*!40000 ALTER TABLE `Website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WikiNode` -- DROP TABLE IF EXISTS `WikiNode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WikiNode` ( `uuid_` varchar(75) DEFAULT NULL, `nodeId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `lastPostDate` datetime DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`nodeId`), UNIQUE KEY `IX_920CD8B1` (`groupId`,`name`), UNIQUE KEY `IX_7609B2AE` (`uuid_`,`groupId`), KEY `IX_5D6FE3F0` (`companyId`), KEY `IX_B480A672` (`groupId`), KEY `IX_6C112D7C` (`uuid_`), KEY `IX_B54332D6` (`companyId`,`status`), KEY `IX_23325358` (`groupId`,`status`), KEY `IX_E0E6D12C` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WikiNode` -- LOCK TABLES `WikiNode` WRITE; /*!40000 ALTER TABLE `WikiNode` DISABLE KEYS */; INSERT INTO `WikiNode` VALUES ('7abab167-fa1e-4c73-8876-85f5e14e4e1b',10810,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18','Main','','2016-11-22 17:54:19',0,10205,' ','2016-11-22 17:54:18'); /*!40000 ALTER TABLE `WikiNode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WikiPage` -- DROP TABLE IF EXISTS `WikiPage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WikiPage` ( `uuid_` varchar(75) DEFAULT NULL, `pageId` bigint(20) NOT NULL, `resourcePrimKey` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `nodeId` bigint(20) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `version` double DEFAULT NULL, `minorEdit` tinyint(4) DEFAULT NULL, `content` longtext, `summary` longtext, `format` varchar(75) DEFAULT NULL, `head` tinyint(4) DEFAULT NULL, `parentTitle` varchar(255) DEFAULT NULL, `redirectTitle` varchar(255) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime DEFAULT NULL, PRIMARY KEY (`pageId`), UNIQUE KEY `IX_3D4AF476` (`nodeId`,`title`,`version`), UNIQUE KEY `IX_2CD67C81` (`resourcePrimKey`,`nodeId`,`version`), UNIQUE KEY `IX_899D3DFB` (`uuid_`,`groupId`), KEY `IX_A2001730` (`format`), KEY `IX_C8A9C476` (`nodeId`), KEY `IX_E7F635CA` (`nodeId`,`head`), KEY `IX_65E84AF4` (`nodeId`,`head`,`parentTitle`), KEY `IX_9F7655DA` (`nodeId`,`head`,`parentTitle`,`status`), KEY `IX_432F0AB0` (`nodeId`,`head`,`status`), KEY `IX_46EEF3C8` (`nodeId`,`parentTitle`), KEY `IX_1ECC7656` (`nodeId`,`redirectTitle`), KEY `IX_546F2D5C` (`nodeId`,`status`), KEY `IX_997EEDD2` (`nodeId`,`title`), KEY `IX_E745EA26` (`nodeId`,`title`,`head`), KEY `IX_BEA33AB8` (`nodeId`,`title`,`status`), KEY `IX_B771D67` (`resourcePrimKey`,`nodeId`), KEY `IX_94D1054D` (`resourcePrimKey`,`nodeId`,`status`), KEY `IX_FBBE7C96` (`userId`,`nodeId`,`status`), KEY `IX_9C0E478F` (`uuid_`), KEY `IX_16E99B0A` (`groupId`,`nodeId`,`head`), KEY `IX_BA72B89A` (`groupId`,`nodeId`,`head`,`parentTitle`,`status`), KEY `IX_E0092FF0` (`groupId`,`nodeId`,`head`,`status`), KEY `IX_941E429C` (`groupId`,`nodeId`,`status`), KEY `IX_5FF21CE6` (`groupId`,`nodeId`,`title`,`head`), KEY `IX_CAA451D6` (`groupId`,`userId`,`nodeId`,`status`), KEY `IX_64CCB282` (`nodeId`,`head`,`redirectTitle`), KEY `IX_40F94F68` (`nodeId`,`head`,`redirectTitle`,`status`), KEY `IX_85E7CC76` (`resourcePrimKey`), KEY `IX_E1F55FB` (`resourcePrimKey`,`nodeId`,`head`), KEY `IX_1725355C` (`resourcePrimKey`,`status`), KEY `IX_5DC4BD39` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WikiPage` -- LOCK TABLES `WikiPage` WRITE; /*!40000 ALTER TABLE `WikiPage` DISABLE KEYS */; INSERT INTO `WikiPage` VALUES ('6839f4de-1086-4db6-8f7a-82b8c7f99879',10811,10812,10587,10202,10205,' ','2016-11-22 17:54:18','2016-11-22 17:54:18',10810,'FrontPage',1,0,'Wikis are tools that help collaboration. Users can share what they know here.\n\nCreate categories to keep pages organized and use tags to make finding them easier.\n\nFor pages related to **Liferay**, please refer to: [[http://wiki.liferay.com|wiki.liferay.com]]','New','creole',1,'','',0,10205,' ','2016-11-22 17:54:18'),('97bd5ae8-35da-4508-8432-24da4e170d18',10823,10824,10587,10202,10205,' ','2016-11-22 17:54:19','2016-11-22 17:54:19',10810,'Vix-998',1,0,'','New','creole',1,'','',0,10205,' ','2016-11-22 17:54:19'); /*!40000 ALTER TABLE `WikiPage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WikiPageResource` -- DROP TABLE IF EXISTS `WikiPageResource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WikiPageResource` ( `uuid_` varchar(75) DEFAULT NULL, `resourcePrimKey` bigint(20) NOT NULL, `nodeId` bigint(20) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, PRIMARY KEY (`resourcePrimKey`), UNIQUE KEY `IX_21277664` (`nodeId`,`title`), KEY `IX_BE898221` (`uuid_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WikiPageResource` -- LOCK TABLES `WikiPageResource` WRITE; /*!40000 ALTER TABLE `WikiPageResource` DISABLE KEYS */; INSERT INTO `WikiPageResource` VALUES ('50552ece-f50c-47f6-99c5-6d0959abe6fd',10812,10810,'FrontPage'),('27fdd69c-4f4c-49a2-8215-8b134c06d5ec',10824,10810,'Vix-998'); /*!40000 ALTER TABLE `WikiPageResource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowDefinitionLink` -- DROP TABLE IF EXISTS `WorkflowDefinitionLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WorkflowDefinitionLink` ( `workflowDefinitionLinkId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `workflowDefinitionName` varchar(75) DEFAULT NULL, `workflowDefinitionVersion` int(11) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `typePK` bigint(20) DEFAULT NULL, PRIMARY KEY (`workflowDefinitionLinkId`), KEY `IX_A8B0D276` (`companyId`), KEY `IX_A4DB1F0F` (`companyId`,`workflowDefinitionName`,`workflowDefinitionVersion`), KEY `IX_B6EE8C9E` (`groupId`,`companyId`,`classNameId`), KEY `IX_1E5B9905` (`groupId`,`companyId`,`classNameId`,`classPK`), KEY `IX_705B40EE` (`groupId`,`companyId`,`classNameId`,`classPK`,`typePK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowDefinitionLink` -- LOCK TABLES `WorkflowDefinitionLink` WRITE; /*!40000 ALTER TABLE `WorkflowDefinitionLink` DISABLE KEYS */; INSERT INTO `WorkflowDefinitionLink` VALUES (11385,10227,10202,10205,' ','2016-11-22 17:54:24','2016-11-22 17:54:24',10084,'Single Approver',1,0,0); /*!40000 ALTER TABLE `WorkflowDefinitionLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowInstanceLink` -- DROP TABLE IF EXISTS `WorkflowInstanceLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WorkflowInstanceLink` ( `workflowInstanceLinkId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime DEFAULT NULL, `modifiedDate` datetime DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `workflowInstanceId` bigint(20) DEFAULT NULL, PRIMARY KEY (`workflowInstanceLinkId`), KEY `IX_415A7007` (`groupId`,`companyId`,`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowInstanceLink` -- LOCK TABLES `WorkflowInstanceLink` WRITE; /*!40000 ALTER TABLE `WorkflowInstanceLink` DISABLE KEYS */; /*!40000 ALTER TABLE `WorkflowInstanceLink` 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 2016-11-22 19:06:59