diff --git a/Lesson-21-begin/.devcontainer/Dockerfile b/Lesson-21-begin/.devcontainer/Dockerfile new file mode 100644 index 0000000..ffb2374 --- /dev/null +++ b/Lesson-21-begin/.devcontainer/Dockerfile @@ -0,0 +1,3 @@ +FROM manuth/silverstripe-dev +RUN curl -s https://getcomposer.org/installer | php +RUN mv composer.phar /usr/bin/composer diff --git a/Lesson-21-begin/.devcontainer/devcontainer.json b/Lesson-21-begin/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b24dfbe --- /dev/null +++ b/Lesson-21-begin/.devcontainer/devcontainer.json @@ -0,0 +1,6 @@ +{ + "name": "SilverStripe Development", + "dockerComposeFile": "docker-compose.yml", + "service": "silverstripe", + "workspaceFolder": "/var/www/html" +} \ No newline at end of file diff --git a/Lesson-21-begin/.devcontainer/docker-compose.yml b/Lesson-21-begin/.devcontainer/docker-compose.yml new file mode 100644 index 0000000..24a9a49 --- /dev/null +++ b/Lesson-21-begin/.devcontainer/docker-compose.yml @@ -0,0 +1,27 @@ +version: '3' + +services: + silverstripe: + build: + context: . + dockerfile: Dockerfile + environment: + - SS_DATABASE_CHOOSE_NAME=true + - SS_DATABASE_CLASS=MySQLPDODatabase + - SS_DATABASE_SERVER=db + - SS_DATABASE_USERNAME=root + - SS_DATABASE_PASSWORD=root + - SS_ENVIRONMENT_TYPE=dev + - SS_DEFAULT_ADMIN_USERNAME=root + - SS_DEFAULT_ADMIN_PASSWORD=password + ports: + - 8888:80 + volumes: + - ..:/var/www/html + db: + image: mysql:5 + environment: + - MYSQL_ROOT_PASSWORD=root + volumes: + - ./mysql-data:/var/lib/mysql + - ./initdb.d:/docker-entrypoint-initdb.d diff --git a/Lesson-21-begin/.devcontainer/initdb.d/database.sql b/Lesson-21-begin/.devcontainer/initdb.d/database.sql new file mode 100644 index 0000000..4063255 --- /dev/null +++ b/Lesson-21-begin/.devcontainer/initdb.d/database.sql @@ -0,0 +1,1699 @@ +-- MySQL dump 10.17 Distrib 10.3.17-MariaDB, for debian-linux-gnu (x86_64) +-- +-- Host: db Database: SS_html +-- ------------------------------------------------------ +-- Server version 5.7.27 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Current Database: `SS_html` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `SS_html` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `SS_html`; + +-- +-- Table structure for table `ChangeSet` +-- + +DROP TABLE IF EXISTS `ChangeSet`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ChangeSet` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Versioned\\ChangeSet') DEFAULT 'SilverStripe\\Versioned\\ChangeSet', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Name` varchar(255) DEFAULT NULL, + `State` enum('open','published','reverted') DEFAULT 'open', + `IsInferred` tinyint(1) unsigned NOT NULL DEFAULT '0', + `Description` mediumtext, + `PublishDate` datetime DEFAULT NULL, + `LastSynced` datetime DEFAULT NULL, + `OwnerID` int(11) NOT NULL DEFAULT '0', + `PublisherID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `State` (`State`), + KEY `ID` (`ID`), + KEY `ClassName` (`ClassName`), + KEY `OwnerID` (`OwnerID`), + KEY `PublisherID` (`PublisherID`) +) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ChangeSet` +-- + +LOCK TABLES `ChangeSet` WRITE; +/*!40000 ALTER TABLE `ChangeSet` DISABLE KEYS */; +INSERT INTO `ChangeSet` VALUES (1,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 05:52:23','2019-10-15 05:52:23','Generated by publish of \'Find a Rental\' at Oct 15, 2019, 5:52 AM','published',1,NULL,'2019-10-15 05:52:23','2019-10-15 05:52:23',0,1),(2,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 05:54:16','2019-10-15 05:54:15','Generated by publish of \'List Your Rental\' at Oct 15, 2019, 5:54 AM','published',1,NULL,'2019-10-15 05:54:16','2019-10-15 05:54:15',0,1),(3,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 05:56:18','2019-10-15 05:56:18','Generated by publish of \'Regions\' at Oct 15, 2019, 5:56 AM','published',1,NULL,'2019-10-15 05:56:18','2019-10-15 05:56:18',0,1),(4,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 05:58:41','2019-10-15 05:58:40','Generated by publish of \'Find a Rental\' at Oct 15, 2019, 5:58 AM','published',1,NULL,'2019-10-15 05:58:41','2019-10-15 05:58:41',0,1),(5,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 05:59:28','2019-10-15 05:59:27','Generated by publish of \'List Your Rental\' at Oct 15, 2019, 5:59 AM','published',1,NULL,'2019-10-15 05:59:28','2019-10-15 05:59:27',0,1),(6,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 06:01:20','2019-10-15 06:01:20','Generated by publish of \'Travel Guides\' at Oct 15, 2019, 6:01 AM','published',1,NULL,'2019-10-15 06:01:20','2019-10-15 06:01:20',0,1),(7,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 09:49:10','2019-10-15 09:49:10','Generated by publish of \'Regions\' at Oct 15, 2019, 9:49 AM','published',1,NULL,'2019-10-15 09:49:10','2019-10-15 09:49:10',0,1),(8,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 09:50:17','2019-10-15 09:50:17','Generated by publish of \'Travel Guides\' at Oct 15, 2019, 9:50 AM','published',1,NULL,'2019-10-15 09:50:17','2019-10-15 09:50:17',0,1),(9,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 09:51:18','2019-10-15 09:51:18','Generated by publish of \'About Us\' at Oct 15, 2019, 9:51 AM','published',1,NULL,'2019-10-15 09:51:18','2019-10-15 09:51:18',0,1),(10,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 09:52:33','2019-10-15 09:52:32','Generated by publish of \'Contact Us\' at Oct 15, 2019, 9:52 AM','published',1,NULL,'2019-10-15 09:52:33','2019-10-15 09:52:33',0,1),(11,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:00:17','2019-10-15 10:00:17','Generated by publish of \'Sample Article 1\' at Oct 15, 2019, 10:00 AM','published',1,NULL,'2019-10-15 10:00:17','2019-10-15 10:00:17',0,1),(12,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:03:36','2019-10-15 10:03:36','Generated by publish of \'Sample Article 2\' at Oct 15, 2019, 10:03 AM','published',1,NULL,'2019-10-15 10:03:36','2019-10-15 10:03:36',0,1),(13,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:06:26','2019-10-15 10:06:26','Generated by publish of \'Sample Article 3\' at Oct 15, 2019, 10:06 AM','published',1,NULL,'2019-10-15 10:06:26','2019-10-15 10:06:26',0,1),(14,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:28:48','2019-10-15 10:28:48','Generated by publish of \'Travel Guides\' at Oct 15, 2019, 10:28 AM','published',1,NULL,'2019-10-15 10:28:48','2019-10-15 10:28:48',0,1),(15,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:31:40','2019-10-15 10:31:40','Generated by publish of \'Sample Article 1\' at Oct 15, 2019, 10:31 AM','published',1,NULL,'2019-10-15 10:31:40','2019-10-15 10:31:40',0,1),(16,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:36:02','2019-10-15 10:36:02','Generated by publish of \'Sample Article 2\' at Oct 15, 2019, 10:36 AM','published',1,NULL,'2019-10-15 10:36:02','2019-10-15 10:36:02',0,1),(17,'SilverStripe\\Versioned\\ChangeSet','2019-10-15 10:37:26','2019-10-15 10:37:26','Generated by publish of \'Sample Article 3\' at Oct 15, 2019, 10:37 AM','published',1,NULL,'2019-10-15 10:37:26','2019-10-15 10:37:26',0,1),(18,'SilverStripe\\Versioned\\ChangeSet','2019-10-16 10:04:20','2019-10-16 10:04:19','Generated by publish of \'Ireland\' at Oct 16, 2019, 10:04 AM','published',1,NULL,'2019-10-16 10:04:20','2019-10-16 10:04:20',0,1),(19,'SilverStripe\\Versioned\\ChangeSet','2019-10-16 10:14:27','2019-10-16 10:14:27','Generated by publish of \'Sample Article 1\' at Oct 16, 2019, 10:14 AM','published',1,NULL,'2019-10-16 10:14:27','2019-10-16 10:14:27',0,1),(20,'SilverStripe\\Versioned\\ChangeSet','2019-10-16 10:15:16','2019-10-16 10:15:16','Generated by publish of \'Sample Article 1\' at Oct 16, 2019, 10:15 AM','published',1,NULL,'2019-10-16 10:15:16','2019-10-16 10:15:16',0,1),(21,'SilverStripe\\Versioned\\ChangeSet','2019-10-16 10:27:21','2019-10-16 10:27:21','Generated by publish of \'Sample Article 2\' at Oct 16, 2019, 10:27 AM','published',1,NULL,'2019-10-16 10:27:21','2019-10-16 10:27:21',0,1),(22,'SilverStripe\\Versioned\\ChangeSet','2019-10-16 10:28:26','2019-10-16 10:28:26','Generated by publish of \'Sample Article 3\' at Oct 16, 2019, 10:28 AM','published',1,NULL,'2019-10-16 10:28:26','2019-10-16 10:28:26',0,1),(23,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 02:37:17','2019-10-17 02:37:16','Generated by publish of \'Regions\' at Oct 17, 2019, 2:37 AM','published',1,NULL,'2019-10-17 02:37:17','2019-10-17 02:37:16',0,1),(24,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 02:37:17','2019-10-17 02:37:16','Generated by publish of \'Regions\' at Oct 17, 2019, 2:37 AM','published',1,NULL,'2019-10-17 02:37:17','2019-10-17 02:37:16',0,1),(25,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:08:27','2019-10-17 03:08:27','Generated by publish of \'Business\' at Oct 17, 2019, 3:08 AM','published',1,NULL,'2019-10-17 03:08:27','2019-10-17 03:08:27',0,1),(26,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:08:48','2019-10-17 03:08:48','Generated by publish of \'Commercial\' at Oct 17, 2019, 3:08 AM','published',1,NULL,'2019-10-17 03:08:48','2019-10-17 03:08:48',0,1),(27,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:09:12','2019-10-17 03:09:12','Generated by publish of \'Land\' at Oct 17, 2019, 3:09 AM','published',1,NULL,'2019-10-17 03:09:12','2019-10-17 03:09:12',0,1),(28,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:09:30','2019-10-17 03:09:30','Generated by publish of \'Loans\' at Oct 17, 2019, 3:09 AM','published',1,NULL,'2019-10-17 03:09:30','2019-10-17 03:09:30',0,1),(29,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:09:50','2019-10-17 03:09:50','Generated by publish of \'News and Updates\' at Oct 17, 2019, 3:09 AM','published',1,NULL,'2019-10-17 03:09:50','2019-10-17 03:09:50',0,1),(30,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:10:11','2019-10-17 03:10:11','Generated by publish of \'Properties for Sale\' at Oct 17, 2019, 3:10 AM','published',1,NULL,'2019-10-17 03:10:11','2019-10-17 03:10:11',0,1),(31,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:10:29','2019-10-17 03:10:29','Generated by publish of \'Real Estate\' at Oct 17, 2019, 3:10 AM','published',1,NULL,'2019-10-17 03:10:29','2019-10-17 03:10:29',0,1),(32,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:21:47','2019-10-17 03:21:47','Generated by publish of \'Sample Article 1\' at Oct 17, 2019, 3:21 AM','published',1,NULL,'2019-10-17 03:21:47','2019-10-17 03:21:47',0,1),(33,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:22:53','2019-10-17 03:22:53','Generated by publish of \'Sample Article 2\' at Oct 17, 2019, 3:22 AM','published',1,NULL,'2019-10-17 03:22:53','2019-10-17 03:22:53',0,1),(34,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 03:24:24','2019-10-17 03:24:24','Generated by publish of \'Sample Article 3\' at Oct 17, 2019, 3:24 AM','published',1,NULL,'2019-10-17 03:24:24','2019-10-17 03:24:24',0,1),(35,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 21:20:54','2019-10-17 21:20:54','Generated by publish of \'Your Site Name\' at Oct 17, 2019, 9:20 PM','published',1,NULL,'2019-10-17 21:20:54','2019-10-17 21:20:54',0,1),(36,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:04:30','2019-10-17 22:04:30','Generated by publish of \'Luxury Apartment with great views\' at Oct 17, 2019, 10:04 PM','published',1,NULL,'2019-10-17 22:04:30','2019-10-17 22:04:30',0,1),(37,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:05:17','2019-10-17 22:05:17','Generated by publish of \'Luxury Apartment with great views\' at Oct 17, 2019, 10:05 PM','published',1,NULL,'2019-10-17 22:05:17','2019-10-17 22:05:17',0,1),(38,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:06:26','2019-10-17 22:06:25','Generated by publish of \'Stunning Villa with 5 bedrooms\' at Oct 17, 2019, 10:06 PM','published',1,NULL,'2019-10-17 22:06:26','2019-10-17 22:06:26',0,1),(39,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:08:41','2019-10-17 22:08:41','Generated by publish of \'Recent construction with 3 bedrooms\' at Oct 17, 2019, 10:08 PM','published',1,NULL,'2019-10-17 22:08:41','2019-10-17 22:08:41',0,1),(40,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:10:18','2019-10-17 22:10:18','Generated by publish of \'Modern construction with parking space\' at Oct 17, 2019, 10:10 PM','published',1,NULL,'2019-10-17 22:10:18','2019-10-17 22:10:18',0,1),(41,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:11:41','2019-10-17 22:11:40','Generated by publish of \'Single Family Townhouse\' at Oct 17, 2019, 10:11 PM','published',1,NULL,'2019-10-17 22:11:41','2019-10-17 22:11:40',0,1),(42,'SilverStripe\\Versioned\\ChangeSet','2019-10-17 22:12:42','2019-10-17 22:12:42','Generated by publish of \'3 bedroom villa with garage for rent\' at Oct 17, 2019, 10:12 PM','published',1,NULL,'2019-10-17 22:12:42','2019-10-17 22:12:42',0,1),(43,'SilverStripe\\Versioned\\ChangeSet','2019-10-18 08:33:05','2019-10-18 08:33:05','Generated by publish of \'Find a Rental\' at Oct 18, 2019, 8:33 AM','published',1,NULL,'2019-10-18 08:33:05','2019-10-18 08:33:05',0,1); +/*!40000 ALTER TABLE `ChangeSet` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ChangeSetItem` +-- + +DROP TABLE IF EXISTS `ChangeSetItem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ChangeSetItem` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Versioned\\ChangeSetItem') DEFAULT 'SilverStripe\\Versioned\\ChangeSetItem', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `VersionBefore` int(11) NOT NULL DEFAULT '0', + `VersionAfter` int(11) NOT NULL DEFAULT '0', + `Added` enum('explicitly','implicitly') DEFAULT 'implicitly', + `ChangeSetID` int(11) NOT NULL DEFAULT '0', + `ObjectID` int(11) NOT NULL DEFAULT '0', + `ObjectClass` enum('SilverStripe\\Example\\ArticleCategory','SilverStripe\\Example\\ArticleComment','SilverStripe\\Example\\Property','SilverStripe\\Example\\Region','SilverStripe\\Assets\\File','SilverStripe\\SiteConfig\\SiteConfig','SilverStripe\\Versioned\\ChangeSet','SilverStripe\\Versioned\\ChangeSetItem','SilverStripe\\Assets\\Shortcodes\\FileLink','SilverStripe\\CMS\\Model\\SiteTree','SilverStripe\\CMS\\Model\\SiteTreeLink','SilverStripe\\Security\\Group','SilverStripe\\Security\\LoginAttempt','SilverStripe\\Security\\Member','SilverStripe\\Security\\MemberPassword','SilverStripe\\Security\\Permission','SilverStripe\\Security\\PermissionRole','SilverStripe\\Security\\PermissionRoleCode','SilverStripe\\Security\\RememberLoginHash','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image','Page','SilverStripe\\Example\\ArticleHolder','SilverStripe\\Example\\ArticlePage','SilverStripe\\Example\\HomePage','SilverStripe\\Example\\PropertySearchPage','SilverStripe\\Example\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'SilverStripe\\Example\\ArticleCategory', + PRIMARY KEY (`ID`), + UNIQUE KEY `ObjectUniquePerChangeSet` (`ObjectID`,`ObjectClass`,`ChangeSetID`), + KEY `ClassName` (`ClassName`), + KEY `ChangeSetID` (`ChangeSetID`), + KEY `Object` (`ObjectID`,`ObjectClass`) +) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ChangeSetItem` +-- + +LOCK TABLES `ChangeSetItem` WRITE; +/*!40000 ALTER TABLE `ChangeSetItem` DISABLE KEYS */; +INSERT INTO `ChangeSetItem` VALUES (1,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 05:52:23','2019-10-15 05:52:23',0,3,'explicitly',1,6,'SilverStripe\\CMS\\Model\\SiteTree'),(2,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 05:54:16','2019-10-15 05:54:15',0,3,'explicitly',2,7,'SilverStripe\\CMS\\Model\\SiteTree'),(3,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 05:56:18','2019-10-15 05:56:18',0,3,'explicitly',3,8,'SilverStripe\\CMS\\Model\\SiteTree'),(4,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 05:58:41','2019-10-15 05:58:40',3,5,'explicitly',4,6,'SilverStripe\\CMS\\Model\\SiteTree'),(5,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 05:59:28','2019-10-15 05:59:27',3,5,'explicitly',5,7,'SilverStripe\\CMS\\Model\\SiteTree'),(6,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 06:01:20','2019-10-15 06:01:20',0,3,'explicitly',6,9,'SilverStripe\\CMS\\Model\\SiteTree'),(7,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 09:49:10','2019-10-15 09:49:10',3,5,'explicitly',7,8,'SilverStripe\\CMS\\Model\\SiteTree'),(8,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 09:50:17','2019-10-15 09:50:17',3,5,'explicitly',8,9,'SilverStripe\\CMS\\Model\\SiteTree'),(9,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 09:51:18','2019-10-15 09:51:18',2,4,'explicitly',9,2,'SilverStripe\\CMS\\Model\\SiteTree'),(10,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 09:52:33','2019-10-15 09:52:32',0,6,'explicitly',10,3,'SilverStripe\\CMS\\Model\\SiteTree'),(11,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:00:17','2019-10-15 10:00:17',0,3,'explicitly',11,10,'SilverStripe\\CMS\\Model\\SiteTree'),(12,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:03:36','2019-10-15 10:03:36',0,3,'explicitly',12,11,'SilverStripe\\CMS\\Model\\SiteTree'),(13,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:06:26','2019-10-15 10:06:26',0,3,'explicitly',13,12,'SilverStripe\\CMS\\Model\\SiteTree'),(14,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:28:48','2019-10-15 10:28:48',5,7,'explicitly',14,9,'SilverStripe\\CMS\\Model\\SiteTree'),(15,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:31:40','2019-10-15 10:31:40',3,5,'explicitly',15,10,'SilverStripe\\CMS\\Model\\SiteTree'),(16,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:36:02','2019-10-15 10:36:02',3,5,'explicitly',16,11,'SilverStripe\\CMS\\Model\\SiteTree'),(17,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-15 10:37:26','2019-10-15 10:37:26',3,5,'explicitly',17,12,'SilverStripe\\CMS\\Model\\SiteTree'),(18,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:04:20','2019-10-16 10:04:19',0,3,'explicitly',1,3,'SilverStripe\\Assets\\File'),(19,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:14:27','2019-10-16 10:14:27',0,3,'explicitly',2,4,'SilverStripe\\Assets\\File'),(20,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:15:16','2019-10-16 10:15:16',7,9,'explicitly',3,10,'SilverStripe\\CMS\\Model\\SiteTree'),(21,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:27:21','2019-10-16 10:27:21',7,9,'explicitly',21,11,'SilverStripe\\CMS\\Model\\SiteTree'),(22,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:27:21','2019-10-16 10:27:21',0,2,'implicitly',21,5,'SilverStripe\\Assets\\File'),(23,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:27:21','2019-10-16 10:27:21',0,2,'implicitly',21,6,'SilverStripe\\Assets\\File'),(24,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:28:26','2019-10-16 10:28:26',7,9,'explicitly',22,12,'SilverStripe\\CMS\\Model\\SiteTree'),(25,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:28:26','2019-10-16 10:28:26',0,2,'implicitly',22,7,'SilverStripe\\Assets\\File'),(26,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-16 10:28:26','2019-10-16 10:28:26',0,2,'implicitly',22,8,'SilverStripe\\Assets\\File'),(27,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',5,7,'explicitly',23,8,'SilverStripe\\CMS\\Model\\SiteTree'),(28,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',23,1,'SilverStripe\\Example\\Region'),(29,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',23,2,'SilverStripe\\Example\\Region'),(30,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',23,3,'SilverStripe\\Example\\Region'),(31,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',23,4,'SilverStripe\\Example\\Region'),(32,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',23,6,'SilverStripe\\Assets\\File'),(33,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',23,7,'SilverStripe\\Assets\\File'),(34,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',23,8,'SilverStripe\\Assets\\File'),(35,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',23,9,'SilverStripe\\Assets\\File'),(36,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',5,7,'explicitly',24,8,'SilverStripe\\CMS\\Model\\SiteTree'),(37,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',24,1,'SilverStripe\\Example\\Region'),(38,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',24,2,'SilverStripe\\Example\\Region'),(39,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',24,3,'SilverStripe\\Example\\Region'),(40,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:16','2019-10-17 02:37:16',0,2,'implicitly',24,4,'SilverStripe\\Example\\Region'),(41,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',24,10,'SilverStripe\\Assets\\File'),(42,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',24,11,'SilverStripe\\Assets\\File'),(43,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',24,12,'SilverStripe\\Assets\\File'),(44,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 02:37:17','2019-10-17 02:37:16',0,2,'implicitly',24,13,'SilverStripe\\Assets\\File'),(45,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:08:27','2019-10-17 03:08:27',0,0,'explicitly',25,1,'SilverStripe\\Example\\ArticleCategory'),(46,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:08:48','2019-10-17 03:08:48',0,0,'explicitly',26,2,'SilverStripe\\Example\\ArticleCategory'),(47,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:09:12','2019-10-17 03:09:12',0,0,'explicitly',27,3,'SilverStripe\\Example\\ArticleCategory'),(48,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:09:30','2019-10-17 03:09:30',0,0,'explicitly',28,4,'SilverStripe\\Example\\ArticleCategory'),(49,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:09:50','2019-10-17 03:09:50',0,0,'explicitly',29,5,'SilverStripe\\Example\\ArticleCategory'),(50,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:10:11','2019-10-17 03:10:11',0,0,'explicitly',30,6,'SilverStripe\\Example\\ArticleCategory'),(51,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:10:29','2019-10-17 03:10:29',0,0,'explicitly',31,7,'SilverStripe\\Example\\ArticleCategory'),(52,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:21:47','2019-10-17 03:21:47',9,9,'explicitly',32,10,'SilverStripe\\CMS\\Model\\SiteTree'),(53,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:21:47','2019-10-17 03:21:47',3,3,'implicitly',32,3,'SilverStripe\\Assets\\File'),(54,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:21:47','2019-10-17 03:21:47',3,3,'implicitly',32,4,'SilverStripe\\Assets\\File'),(55,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:22:53','2019-10-17 03:22:53',7,7,'explicitly',33,11,'SilverStripe\\CMS\\Model\\SiteTree'),(56,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 03:24:24','2019-10-17 03:24:24',7,7,'explicitly',34,12,'SilverStripe\\CMS\\Model\\SiteTree'),(57,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 21:20:54','2019-10-17 21:20:54',0,0,'explicitly',35,1,'SilverStripe\\SiteConfig\\SiteConfig'),(58,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:04:30','2019-10-17 22:04:30',0,2,'explicitly',36,1,'SilverStripe\\Example\\Property'),(59,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:04:30','2019-10-17 22:04:30',0,2,'implicitly',36,15,'SilverStripe\\Assets\\File'),(60,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:05:17','2019-10-17 22:05:17',2,4,'explicitly',37,1,'SilverStripe\\Example\\Property'),(61,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:05:17','2019-10-17 22:05:17',2,2,'implicitly',37,15,'SilverStripe\\Assets\\File'),(62,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:06:26','2019-10-17 22:06:25',0,2,'explicitly',38,2,'SilverStripe\\Example\\Property'),(63,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:06:26','2019-10-17 22:06:26',0,2,'implicitly',38,16,'SilverStripe\\Assets\\File'),(64,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:08:41','2019-10-17 22:08:41',0,2,'explicitly',39,3,'SilverStripe\\Example\\Property'),(65,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:08:41','2019-10-17 22:08:41',0,2,'implicitly',39,17,'SilverStripe\\Assets\\File'),(66,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:10:18','2019-10-17 22:10:18',0,2,'explicitly',40,4,'SilverStripe\\Example\\Property'),(67,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:10:18','2019-10-17 22:10:18',0,2,'implicitly',40,18,'SilverStripe\\Assets\\File'),(68,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:11:40','2019-10-17 22:11:40',0,2,'explicitly',41,5,'SilverStripe\\Example\\Property'),(69,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:11:40','2019-10-17 22:11:40',0,2,'implicitly',41,19,'SilverStripe\\Assets\\File'),(70,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:12:42','2019-10-17 22:12:42',0,2,'explicitly',42,6,'SilverStripe\\Example\\Property'),(71,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-17 22:12:42','2019-10-17 22:12:42',0,2,'implicitly',42,20,'SilverStripe\\Assets\\File'),(72,'SilverStripe\\Versioned\\ChangeSetItem','2019-10-18 08:33:05','2019-10-18 08:33:05',5,7,'explicitly',43,6,'SilverStripe\\CMS\\Model\\SiteTree'); +/*!40000 ALTER TABLE `ChangeSetItem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ChangeSetItem_ReferencedBy` +-- + +DROP TABLE IF EXISTS `ChangeSetItem_ReferencedBy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ChangeSetItem_ReferencedBy` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ChangeSetItemID` int(11) NOT NULL DEFAULT '0', + `ChildID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ChangeSetItemID` (`ChangeSetItemID`), + KEY `ChildID` (`ChildID`) +) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ChangeSetItem_ReferencedBy` +-- + +LOCK TABLES `ChangeSetItem_ReferencedBy` WRITE; +/*!40000 ALTER TABLE `ChangeSetItem_ReferencedBy` DISABLE KEYS */; +INSERT INTO `ChangeSetItem_ReferencedBy` VALUES (1,22,21),(2,23,21),(3,25,24),(4,26,24),(5,29,27),(6,30,27),(7,31,27),(8,31,27),(9,32,27),(10,33,27),(11,54,36),(12,40,36),(13,41,36),(14,42,36),(15,43,36),(16,44,36),(17,53,52),(18,39,52),(19,59,58),(20,61,60),(21,63,62),(22,65,64),(23,67,66),(24,69,68),(25,71,70); +/*!40000 ALTER TABLE `ChangeSetItem_ReferencedBy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ErrorPage` +-- + +DROP TABLE IF EXISTS `ErrorPage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ErrorPage` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ErrorCode` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ErrorPage` +-- + +LOCK TABLES `ErrorPage` WRITE; +/*!40000 ALTER TABLE `ErrorPage` DISABLE KEYS */; +INSERT INTO `ErrorPage` VALUES (4,404),(5,500); +/*!40000 ALTER TABLE `ErrorPage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ErrorPage_Live` +-- + +DROP TABLE IF EXISTS `ErrorPage_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ErrorPage_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ErrorCode` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ErrorPage_Live` +-- + +LOCK TABLES `ErrorPage_Live` WRITE; +/*!40000 ALTER TABLE `ErrorPage_Live` DISABLE KEYS */; +INSERT INTO `ErrorPage_Live` VALUES (4,404),(5,500); +/*!40000 ALTER TABLE `ErrorPage_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ErrorPage_Versions` +-- + +DROP TABLE IF EXISTS `ErrorPage_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ErrorPage_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `ErrorCode` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ErrorPage_Versions` +-- + +LOCK TABLES `ErrorPage_Versions` WRITE; +/*!40000 ALTER TABLE `ErrorPage_Versions` DISABLE KEYS */; +INSERT INTO `ErrorPage_Versions` VALUES (1,4,1,404),(2,4,2,404),(3,5,1,500),(4,5,2,500); +/*!40000 ALTER TABLE `ErrorPage_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `File` +-- + +DROP TABLE IF EXISTS `File`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `File` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image') DEFAULT 'SilverStripe\\Assets\\File', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Version` int(11) NOT NULL DEFAULT '0', + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `Name` varchar(255) DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '1', + `ParentID` int(11) NOT NULL DEFAULT '0', + `OwnerID` int(11) NOT NULL DEFAULT '0', + `FileHash` varchar(255) DEFAULT NULL, + `FileFilename` varchar(255) DEFAULT NULL, + `FileVariant` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ID`), + KEY `Name` (`Name`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`), + KEY `OwnerID` (`OwnerID`), + KEY `FileHash` (`FileHash`) +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `File` +-- + +LOCK TABLES `File` WRITE; +/*!40000 ALTER TABLE `File` DISABLE KEYS */; +INSERT INTO `File` VALUES (1,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:58',2,'Inherit','Inherit','travel-photos','travel-photos',1,0,1,NULL,NULL,NULL),(2,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:59',2,'Inherit','Inherit','travel-brochures','travel-brochures',1,0,1,NULL,NULL,NULL),(3,'SilverStripe\\Assets\\Image','2019-10-16 10:04:20','2019-10-16 10:02:47',3,'Inherit','Inherit','Ireland.jpg','Ireland',1,1,1,'d1b80973b0613486dda80966ce537b0135180079','travel-photos/Ireland.jpg',NULL),(4,'SilverStripe\\Assets\\File','2019-10-16 10:14:27','2019-10-16 10:05:44',3,'Inherit','Inherit','Sample-Article-1.pdf','Sample Article 1',1,2,1,'fbcd8833756e5ea51292ebb283eb2cc3005db1c4','travel-brochures/Sample-Article-1.pdf',NULL),(5,'SilverStripe\\Assets\\Image','2019-10-16 10:27:21','2019-10-16 10:27:04',2,'Inherit','Inherit','Alaska.jpg','Alaska',1,1,1,'adb4885148a6bddc122a61bca497b5b4f088a8b8','travel-photos/Alaska.jpg',NULL),(6,'SilverStripe\\Assets\\File','2019-10-16 10:27:21','2019-10-16 10:27:13',2,'Inherit','Inherit','Sample-Article-2.pdf','Sample Article 2',1,2,1,'8592d6d2b13019c30af3273870d58d4429510f8c','travel-brochures/Sample-Article-2.pdf',NULL),(7,'SilverStripe\\Assets\\Image','2019-10-16 10:28:26','2019-10-16 10:28:03',2,'Inherit','Inherit','Utah.jpg','Utah',1,1,1,'e089caecfa905103936062f1da5e57b6dfe380b4','travel-photos/Utah.jpg',NULL),(8,'SilverStripe\\Assets\\File','2019-10-16 10:28:26','2019-10-16 10:28:13',2,'Inherit','Inherit','Sample-Article-3.pdf','Sample Article 3',1,2,1,'2e88422267b1cd2edf05c677500dc3c8628202dd','travel-brochures/Sample-Article-3.pdf',NULL),(9,'SilverStripe\\Assets\\Folder','2019-10-17 02:32:18','2019-10-17 02:32:17',2,'Inherit','Inherit','region-photos','region-photos',1,0,1,NULL,NULL,NULL),(10,'SilverStripe\\Assets\\Image','2019-10-17 02:37:16','2019-10-17 02:32:41',2,'Inherit','Inherit','Northeast.jpg','Northeast',1,9,1,'d97d9b79c1a9179924ae7dcfc3fd09047f81c7b6','region-photos/Northeast.jpg',NULL),(11,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:33:33',2,'Inherit','Inherit','Northwest.jpg','Northwest',1,9,1,'84484b7a7ea17d14e610d785fb2e571d9d562657','region-photos/Northwest.jpg',NULL),(12,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:34:24',2,'Inherit','Inherit','Southeast.jpg','Southeast',1,9,1,'c1e182a2850e97d688613c8251380d38ad7b23ff','region-photos/Southeast.jpg',NULL),(13,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:35:21',2,'Inherit','Inherit','Southwest.jpg','Southwest',1,9,1,'7bc4a53e4ac31b830e2a565734d29dfaff8ae0ed','region-photos/Southwest.jpg',NULL),(14,'SilverStripe\\Assets\\Folder','2019-10-17 22:03:31','2019-10-17 22:03:31',2,'Inherit','Inherit','property-photos','property-photos',1,0,1,NULL,NULL,NULL),(15,'SilverStripe\\Assets\\Image','2019-10-17 22:04:30','2019-10-17 22:04:15',2,'Inherit','Inherit','Luxury-Apartment.jpg','Luxury Apartment',1,14,1,'d1363a6675465577128b9d0c9b58820dd1f45a69','property-photos/Luxury-Apartment.jpg',NULL),(16,'SilverStripe\\Assets\\Image','2019-10-17 22:06:26','2019-10-17 22:06:15',2,'Inherit','Inherit','Stunning-Villa.jpg','Stunning Villa',1,14,1,'0b64cc3d5b70eba5da30565607a501a453846601','property-photos/Stunning-Villa.jpg',NULL),(17,'SilverStripe\\Assets\\Image','2019-10-17 22:08:41','2019-10-17 22:07:23',2,'Inherit','Inherit','Recent-Construction.jpg','Recent Construction',1,14,1,'9ce7cc7e8f2d36dd81b364705edbcb00606d0b02','property-photos/Recent-Construction.jpg',NULL),(18,'SilverStripe\\Assets\\Image','2019-10-17 22:10:18','2019-10-17 22:09:54',2,'Inherit','Inherit','Modern-Construction.jpg','Modern Construction',1,14,1,'5a3f12f4a015de680321f1ca0c33e76c1795e0cc','property-photos/Modern-Construction.jpg',NULL),(19,'SilverStripe\\Assets\\Image','2019-10-17 22:11:40','2019-10-17 22:11:16',2,'Inherit','Inherit','Single-Family-Townhouse.jpg','Single Family Townhouse',1,14,1,'48dc1b95f7770ae7ecf2c3971065aedea335ee17','property-photos/Single-Family-Townhouse.jpg',NULL),(20,'SilverStripe\\Assets\\Image','2019-10-17 22:12:42','2019-10-17 22:12:31',2,'Inherit','Inherit','Villa-with-Garage.jpg','Villa with Garage',1,14,1,'e0468fdc72ef159c3ea2b991d21c1f1afb2d0e0f','property-photos/Villa-with-Garage.jpg',NULL); +/*!40000 ALTER TABLE `File` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `FileLink` +-- + +DROP TABLE IF EXISTS `FileLink`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `FileLink` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Assets\\Shortcodes\\FileLink') DEFAULT 'SilverStripe\\Assets\\Shortcodes\\FileLink', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `LinkedID` int(11) NOT NULL DEFAULT '0', + `ParentID` int(11) NOT NULL DEFAULT '0', + `ParentClass` enum('SilverStripe\\Example\\ArticleCategory','SilverStripe\\Example\\ArticleComment','SilverStripe\\Example\\Property','SilverStripe\\Example\\Region','SilverStripe\\Assets\\File','SilverStripe\\SiteConfig\\SiteConfig','SilverStripe\\Versioned\\ChangeSet','SilverStripe\\Versioned\\ChangeSetItem','SilverStripe\\Assets\\Shortcodes\\FileLink','SilverStripe\\CMS\\Model\\SiteTree','SilverStripe\\CMS\\Model\\SiteTreeLink','SilverStripe\\Security\\Group','SilverStripe\\Security\\LoginAttempt','SilverStripe\\Security\\Member','SilverStripe\\Security\\MemberPassword','SilverStripe\\Security\\Permission','SilverStripe\\Security\\PermissionRole','SilverStripe\\Security\\PermissionRoleCode','SilverStripe\\Security\\RememberLoginHash','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image','Page','SilverStripe\\Example\\ArticleHolder','SilverStripe\\Example\\ArticlePage','SilverStripe\\Example\\HomePage','SilverStripe\\Example\\PropertySearchPage','SilverStripe\\Example\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'SilverStripe\\Example\\ArticleCategory', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `LinkedID` (`LinkedID`), + KEY `Parent` (`ParentID`,`ParentClass`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `FileLink` +-- + +LOCK TABLES `FileLink` WRITE; +/*!40000 ALTER TABLE `FileLink` DISABLE KEYS */; +/*!40000 ALTER TABLE `FileLink` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `File_EditorGroups` +-- + +DROP TABLE IF EXISTS `File_EditorGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `File_EditorGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `FileID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `FileID` (`FileID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `File_EditorGroups` +-- + +LOCK TABLES `File_EditorGroups` WRITE; +/*!40000 ALTER TABLE `File_EditorGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `File_EditorGroups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `File_Live` +-- + +DROP TABLE IF EXISTS `File_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `File_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image') DEFAULT 'SilverStripe\\Assets\\File', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Version` int(11) NOT NULL DEFAULT '0', + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `Name` varchar(255) DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '1', + `ParentID` int(11) NOT NULL DEFAULT '0', + `OwnerID` int(11) NOT NULL DEFAULT '0', + `FileHash` varchar(255) DEFAULT NULL, + `FileFilename` varchar(255) DEFAULT NULL, + `FileVariant` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ID`), + KEY `Name` (`Name`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`), + KEY `OwnerID` (`OwnerID`), + KEY `FileHash` (`FileHash`) +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `File_Live` +-- + +LOCK TABLES `File_Live` WRITE; +/*!40000 ALTER TABLE `File_Live` DISABLE KEYS */; +INSERT INTO `File_Live` VALUES (1,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:58',2,'Inherit','Inherit','travel-photos','travel-photos',1,0,1,NULL,NULL,NULL),(2,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:59',2,'Inherit','Inherit','travel-brochures','travel-brochures',1,0,1,NULL,NULL,NULL),(3,'SilverStripe\\Assets\\Image','2019-10-16 10:04:20','2019-10-16 10:02:47',3,'Inherit','Inherit','Ireland.jpg','Ireland',1,1,1,'d1b80973b0613486dda80966ce537b0135180079','travel-photos/Ireland.jpg',NULL),(4,'SilverStripe\\Assets\\File','2019-10-16 10:14:27','2019-10-16 10:05:44',3,'Inherit','Inherit','Sample-Article-1.pdf','Sample Article 1',1,2,1,'fbcd8833756e5ea51292ebb283eb2cc3005db1c4','travel-brochures/Sample-Article-1.pdf',NULL),(5,'SilverStripe\\Assets\\Image','2019-10-16 10:27:21','2019-10-16 10:27:04',2,'Inherit','Inherit','Alaska.jpg','Alaska',1,1,1,'adb4885148a6bddc122a61bca497b5b4f088a8b8','travel-photos/Alaska.jpg',NULL),(6,'SilverStripe\\Assets\\File','2019-10-16 10:27:21','2019-10-16 10:27:13',2,'Inherit','Inherit','Sample-Article-2.pdf','Sample Article 2',1,2,1,'8592d6d2b13019c30af3273870d58d4429510f8c','travel-brochures/Sample-Article-2.pdf',NULL),(7,'SilverStripe\\Assets\\Image','2019-10-16 10:28:26','2019-10-16 10:28:03',2,'Inherit','Inherit','Utah.jpg','Utah',1,1,1,'e089caecfa905103936062f1da5e57b6dfe380b4','travel-photos/Utah.jpg',NULL),(8,'SilverStripe\\Assets\\File','2019-10-16 10:28:26','2019-10-16 10:28:13',2,'Inherit','Inherit','Sample-Article-3.pdf','Sample Article 3',1,2,1,'2e88422267b1cd2edf05c677500dc3c8628202dd','travel-brochures/Sample-Article-3.pdf',NULL),(9,'SilverStripe\\Assets\\Folder','2019-10-17 02:32:18','2019-10-17 02:32:17',2,'Inherit','Inherit','region-photos','region-photos',1,0,1,NULL,NULL,NULL),(10,'SilverStripe\\Assets\\Image','2019-10-17 02:37:16','2019-10-17 02:32:41',2,'Inherit','Inherit','Northeast.jpg','Northeast',1,9,1,'d97d9b79c1a9179924ae7dcfc3fd09047f81c7b6','region-photos/Northeast.jpg',NULL),(11,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:33:33',2,'Inherit','Inherit','Northwest.jpg','Northwest',1,9,1,'84484b7a7ea17d14e610d785fb2e571d9d562657','region-photos/Northwest.jpg',NULL),(12,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:34:24',2,'Inherit','Inherit','Southeast.jpg','Southeast',1,9,1,'c1e182a2850e97d688613c8251380d38ad7b23ff','region-photos/Southeast.jpg',NULL),(13,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:35:21',2,'Inherit','Inherit','Southwest.jpg','Southwest',1,9,1,'7bc4a53e4ac31b830e2a565734d29dfaff8ae0ed','region-photos/Southwest.jpg',NULL),(14,'SilverStripe\\Assets\\Folder','2019-10-17 22:03:31','2019-10-17 22:03:31',2,'Inherit','Inherit','property-photos','property-photos',1,0,1,NULL,NULL,NULL),(15,'SilverStripe\\Assets\\Image','2019-10-17 22:04:30','2019-10-17 22:04:15',2,'Inherit','Inherit','Luxury-Apartment.jpg','Luxury Apartment',1,14,1,'d1363a6675465577128b9d0c9b58820dd1f45a69','property-photos/Luxury-Apartment.jpg',NULL),(16,'SilverStripe\\Assets\\Image','2019-10-17 22:06:26','2019-10-17 22:06:15',2,'Inherit','Inherit','Stunning-Villa.jpg','Stunning Villa',1,14,1,'0b64cc3d5b70eba5da30565607a501a453846601','property-photos/Stunning-Villa.jpg',NULL),(17,'SilverStripe\\Assets\\Image','2019-10-17 22:08:41','2019-10-17 22:07:23',2,'Inherit','Inherit','Recent-Construction.jpg','Recent Construction',1,14,1,'9ce7cc7e8f2d36dd81b364705edbcb00606d0b02','property-photos/Recent-Construction.jpg',NULL),(18,'SilverStripe\\Assets\\Image','2019-10-17 22:10:18','2019-10-17 22:09:54',2,'Inherit','Inherit','Modern-Construction.jpg','Modern Construction',1,14,1,'5a3f12f4a015de680321f1ca0c33e76c1795e0cc','property-photos/Modern-Construction.jpg',NULL),(19,'SilverStripe\\Assets\\Image','2019-10-17 22:11:40','2019-10-17 22:11:16',2,'Inherit','Inherit','Single-Family-Townhouse.jpg','Single Family Townhouse',1,14,1,'48dc1b95f7770ae7ecf2c3971065aedea335ee17','property-photos/Single-Family-Townhouse.jpg',NULL),(20,'SilverStripe\\Assets\\Image','2019-10-17 22:12:42','2019-10-17 22:12:31',2,'Inherit','Inherit','Villa-with-Garage.jpg','Villa with Garage',1,14,1,'e0468fdc72ef159c3ea2b991d21c1f1afb2d0e0f','property-photos/Villa-with-Garage.jpg',NULL); +/*!40000 ALTER TABLE `File_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `File_Versions` +-- + +DROP TABLE IF EXISTS `File_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `File_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDeleted` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDraft` tinyint(1) unsigned NOT NULL DEFAULT '0', + `AuthorID` int(11) NOT NULL DEFAULT '0', + `PublisherID` int(11) NOT NULL DEFAULT '0', + `ClassName` enum('SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image') DEFAULT 'SilverStripe\\Assets\\File', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `Name` varchar(255) DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '1', + `ParentID` int(11) NOT NULL DEFAULT '0', + `OwnerID` int(11) NOT NULL DEFAULT '0', + `FileHash` varchar(255) DEFAULT NULL, + `FileFilename` varchar(255) DEFAULT NULL, + `FileVariant` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ID`), + KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `AuthorID` (`AuthorID`), + KEY `PublisherID` (`PublisherID`), + KEY `Name` (`Name`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`), + KEY `OwnerID` (`OwnerID`), + KEY `FileHash` (`FileHash`) +) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `File_Versions` +-- + +LOCK TABLES `File_Versions` WRITE; +/*!40000 ALTER TABLE `File_Versions` DISABLE KEYS */; +INSERT INTO `File_Versions` VALUES (1,1,1,0,0,1,1,0,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:58','2019-10-16 10:01:58','Inherit','Inherit','travel-photos','travel-photos',1,0,1,NULL,NULL,NULL),(2,1,2,1,0,1,1,1,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:58','Inherit','Inherit','travel-photos','travel-photos',1,0,1,NULL,NULL,NULL),(3,2,1,0,0,1,1,0,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:59','Inherit','Inherit','travel-brochures','travel-brochures',1,0,1,NULL,NULL,NULL),(4,2,2,1,0,1,1,1,'SilverStripe\\Assets\\Folder','2019-10-16 10:01:59','2019-10-16 10:01:59','Inherit','Inherit','travel-brochures','travel-brochures',1,0,1,NULL,NULL,NULL),(5,3,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-16 10:02:47','2019-10-16 10:02:47','Inherit','Inherit','Ireland.jpg','Ireland',1,1,1,'d1b80973b0613486dda80966ce537b0135180079','travel-photos/Ireland.jpg',NULL),(6,3,2,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-16 10:04:19','2019-10-16 10:02:47','Inherit','Inherit','Ireland.jpg','Ireland',1,1,1,'d1b80973b0613486dda80966ce537b0135180079','travel-photos/Ireland.jpg',NULL),(7,3,3,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-16 10:04:20','2019-10-16 10:02:47','Inherit','Inherit','Ireland.jpg','Ireland',1,1,1,'d1b80973b0613486dda80966ce537b0135180079','travel-photos/Ireland.jpg',NULL),(8,4,1,0,0,1,1,0,'SilverStripe\\Assets\\File','2019-10-16 10:05:44','2019-10-16 10:05:44','Inherit','Inherit','Sample-Article-1.pdf','Sample Article 1',1,2,1,'fbcd8833756e5ea51292ebb283eb2cc3005db1c4','travel-brochures/Sample-Article-1.pdf',NULL),(9,4,2,0,0,1,1,0,'SilverStripe\\Assets\\File','2019-10-16 10:14:26','2019-10-16 10:05:44','Inherit','Inherit','Sample-Article-1.pdf','Sample Article 1',1,2,1,'fbcd8833756e5ea51292ebb283eb2cc3005db1c4','travel-brochures/Sample-Article-1.pdf',NULL),(10,4,3,1,0,1,1,1,'SilverStripe\\Assets\\File','2019-10-16 10:14:27','2019-10-16 10:05:44','Inherit','Inherit','Sample-Article-1.pdf','Sample Article 1',1,2,1,'fbcd8833756e5ea51292ebb283eb2cc3005db1c4','travel-brochures/Sample-Article-1.pdf',NULL),(11,5,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-16 10:27:04','2019-10-16 10:27:04','Inherit','Inherit','Alaska.jpg','Alaska',1,1,1,'adb4885148a6bddc122a61bca497b5b4f088a8b8','travel-photos/Alaska.jpg',NULL),(12,6,1,0,0,1,1,0,'SilverStripe\\Assets\\File','2019-10-16 10:27:13','2019-10-16 10:27:13','Inherit','Inherit','Sample-Article-2.pdf','Sample Article 2',1,2,1,'8592d6d2b13019c30af3273870d58d4429510f8c','travel-brochures/Sample-Article-2.pdf',NULL),(13,5,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-16 10:27:21','2019-10-16 10:27:04','Inherit','Inherit','Alaska.jpg','Alaska',1,1,1,'adb4885148a6bddc122a61bca497b5b4f088a8b8','travel-photos/Alaska.jpg',NULL),(14,6,2,1,0,1,1,1,'SilverStripe\\Assets\\File','2019-10-16 10:27:21','2019-10-16 10:27:13','Inherit','Inherit','Sample-Article-2.pdf','Sample Article 2',1,2,1,'8592d6d2b13019c30af3273870d58d4429510f8c','travel-brochures/Sample-Article-2.pdf',NULL),(15,7,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-16 10:28:03','2019-10-16 10:28:03','Inherit','Inherit','Utah.jpg','Utah',1,1,1,'e089caecfa905103936062f1da5e57b6dfe380b4','travel-photos/Utah.jpg',NULL),(16,8,1,0,0,1,1,0,'SilverStripe\\Assets\\File','2019-10-16 10:28:13','2019-10-16 10:28:13','Inherit','Inherit','Sample-Article-3.pdf','Sample Article 3',1,2,1,'2e88422267b1cd2edf05c677500dc3c8628202dd','travel-brochures/Sample-Article-3.pdf',NULL),(17,7,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-16 10:28:26','2019-10-16 10:28:03','Inherit','Inherit','Utah.jpg','Utah',1,1,1,'e089caecfa905103936062f1da5e57b6dfe380b4','travel-photos/Utah.jpg',NULL),(18,8,2,1,0,1,1,1,'SilverStripe\\Assets\\File','2019-10-16 10:28:26','2019-10-16 10:28:13','Inherit','Inherit','Sample-Article-3.pdf','Sample Article 3',1,2,1,'2e88422267b1cd2edf05c677500dc3c8628202dd','travel-brochures/Sample-Article-3.pdf',NULL),(19,9,1,0,0,1,1,0,'SilverStripe\\Assets\\Folder','2019-10-17 02:32:17','2019-10-17 02:32:17','Inherit','Inherit','region-photos','region-photos',1,0,1,NULL,NULL,NULL),(20,9,2,1,0,1,1,1,'SilverStripe\\Assets\\Folder','2019-10-17 02:32:18','2019-10-17 02:32:17','Inherit','Inherit','region-photos','region-photos',1,0,1,NULL,NULL,NULL),(21,10,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 02:32:41','2019-10-17 02:32:41','Inherit','Inherit','Northeast.jpg','Northeast',1,9,1,'d97d9b79c1a9179924ae7dcfc3fd09047f81c7b6','region-photos/Northeast.jpg',NULL),(22,11,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 02:33:33','2019-10-17 02:33:33','Inherit','Inherit','Northwest.jpg','Northwest',1,9,1,'84484b7a7ea17d14e610d785fb2e571d9d562657','region-photos/Northwest.jpg',NULL),(23,12,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 02:34:24','2019-10-17 02:34:24','Inherit','Inherit','Southeast.jpg','Southeast',1,9,1,'c1e182a2850e97d688613c8251380d38ad7b23ff','region-photos/Southeast.jpg',NULL),(24,13,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 02:35:21','2019-10-17 02:35:21','Inherit','Inherit','Southwest.jpg','Southwest',1,9,1,'7bc4a53e4ac31b830e2a565734d29dfaff8ae0ed','region-photos/Southwest.jpg',NULL),(25,10,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 02:37:16','2019-10-17 02:32:41','Inherit','Inherit','Northeast.jpg','Northeast',1,9,1,'d97d9b79c1a9179924ae7dcfc3fd09047f81c7b6','region-photos/Northeast.jpg',NULL),(26,11,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:33:33','Inherit','Inherit','Northwest.jpg','Northwest',1,9,1,'84484b7a7ea17d14e610d785fb2e571d9d562657','region-photos/Northwest.jpg',NULL),(27,12,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:34:24','Inherit','Inherit','Southeast.jpg','Southeast',1,9,1,'c1e182a2850e97d688613c8251380d38ad7b23ff','region-photos/Southeast.jpg',NULL),(28,13,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 02:37:17','2019-10-17 02:35:21','Inherit','Inherit','Southwest.jpg','Southwest',1,9,1,'7bc4a53e4ac31b830e2a565734d29dfaff8ae0ed','region-photos/Southwest.jpg',NULL),(29,14,1,0,0,1,1,0,'SilverStripe\\Assets\\Folder','2019-10-17 22:03:31','2019-10-17 22:03:31','Inherit','Inherit','property-photos','property-photos',1,0,1,NULL,NULL,NULL),(30,14,2,1,0,1,1,1,'SilverStripe\\Assets\\Folder','2019-10-17 22:03:31','2019-10-17 22:03:31','Inherit','Inherit','property-photos','property-photos',1,0,1,NULL,NULL,NULL),(31,15,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 22:04:15','2019-10-17 22:04:15','Inherit','Inherit','Luxury-Apartment.jpg','Luxury Apartment',1,14,1,'d1363a6675465577128b9d0c9b58820dd1f45a69','property-photos/Luxury-Apartment.jpg',NULL),(32,15,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 22:04:30','2019-10-17 22:04:15','Inherit','Inherit','Luxury-Apartment.jpg','Luxury Apartment',1,14,1,'d1363a6675465577128b9d0c9b58820dd1f45a69','property-photos/Luxury-Apartment.jpg',NULL),(33,16,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 22:06:15','2019-10-17 22:06:15','Inherit','Inherit','Stunning-Villa.jpg','Stunning Villa',1,14,1,'0b64cc3d5b70eba5da30565607a501a453846601','property-photos/Stunning-Villa.jpg',NULL),(34,16,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 22:06:26','2019-10-17 22:06:15','Inherit','Inherit','Stunning-Villa.jpg','Stunning Villa',1,14,1,'0b64cc3d5b70eba5da30565607a501a453846601','property-photos/Stunning-Villa.jpg',NULL),(35,17,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 22:07:23','2019-10-17 22:07:23','Inherit','Inherit','Recent-Construction.jpg','Recent Construction',1,14,1,'9ce7cc7e8f2d36dd81b364705edbcb00606d0b02','property-photos/Recent-Construction.jpg',NULL),(36,17,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 22:08:41','2019-10-17 22:07:23','Inherit','Inherit','Recent-Construction.jpg','Recent Construction',1,14,1,'9ce7cc7e8f2d36dd81b364705edbcb00606d0b02','property-photos/Recent-Construction.jpg',NULL),(37,18,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 22:09:54','2019-10-17 22:09:54','Inherit','Inherit','Modern-Construction.jpg','Modern Construction',1,14,1,'5a3f12f4a015de680321f1ca0c33e76c1795e0cc','property-photos/Modern-Construction.jpg',NULL),(38,18,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 22:10:18','2019-10-17 22:09:54','Inherit','Inherit','Modern-Construction.jpg','Modern Construction',1,14,1,'5a3f12f4a015de680321f1ca0c33e76c1795e0cc','property-photos/Modern-Construction.jpg',NULL),(39,19,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 22:11:16','2019-10-17 22:11:16','Inherit','Inherit','Single-Family-Townhouse.jpg','Single Family Townhouse',1,14,1,'48dc1b95f7770ae7ecf2c3971065aedea335ee17','property-photos/Single-Family-Townhouse.jpg',NULL),(40,19,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 22:11:40','2019-10-17 22:11:16','Inherit','Inherit','Single-Family-Townhouse.jpg','Single Family Townhouse',1,14,1,'48dc1b95f7770ae7ecf2c3971065aedea335ee17','property-photos/Single-Family-Townhouse.jpg',NULL),(41,20,1,0,0,1,1,0,'SilverStripe\\Assets\\Image','2019-10-17 22:12:31','2019-10-17 22:12:31','Inherit','Inherit','Villa-with-Garage.jpg','Villa with Garage',1,14,1,'e0468fdc72ef159c3ea2b991d21c1f1afb2d0e0f','property-photos/Villa-with-Garage.jpg',NULL),(42,20,2,1,0,1,1,1,'SilverStripe\\Assets\\Image','2019-10-17 22:12:42','2019-10-17 22:12:31','Inherit','Inherit','Villa-with-Garage.jpg','Villa with Garage',1,14,1,'e0468fdc72ef159c3ea2b991d21c1f1afb2d0e0f','property-photos/Villa-with-Garage.jpg',NULL); +/*!40000 ALTER TABLE `File_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `File_ViewerGroups` +-- + +DROP TABLE IF EXISTS `File_ViewerGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `File_ViewerGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `FileID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `FileID` (`FileID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `File_ViewerGroups` +-- + +LOCK TABLES `File_ViewerGroups` WRITE; +/*!40000 ALTER TABLE `File_ViewerGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `File_ViewerGroups` 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` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\Group') DEFAULT 'SilverStripe\\Security\\Group', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `Description` mediumtext, + `Code` varchar(255) DEFAULT NULL, + `Locked` tinyint(1) unsigned NOT NULL DEFAULT '0', + `Sort` int(11) NOT NULL DEFAULT '0', + `HtmlEditorConfig` mediumtext, + `ParentID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`) +) ENGINE=InnoDB AUTO_INCREMENT=3 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 (1,'SilverStripe\\Security\\Group','2019-10-15 05:07:37','2019-10-15 05:07:37','Content Authors',NULL,'content-authors',0,1,NULL,0),(2,'SilverStripe\\Security\\Group','2019-10-15 05:07:37','2019-10-15 05:07:37','Administrators',NULL,'administrators',0,0,NULL,0); +/*!40000 ALTER TABLE `Group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `Group_Members` +-- + +DROP TABLE IF EXISTS `Group_Members`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Group_Members` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `GroupID` int(11) NOT NULL DEFAULT '0', + `MemberID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `GroupID` (`GroupID`), + KEY `MemberID` (`MemberID`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Group_Members` +-- + +LOCK TABLES `Group_Members` WRITE; +/*!40000 ALTER TABLE `Group_Members` DISABLE KEYS */; +INSERT INTO `Group_Members` VALUES (1,2,1); +/*!40000 ALTER TABLE `Group_Members` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `Group_Roles` +-- + +DROP TABLE IF EXISTS `Group_Roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Group_Roles` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `GroupID` int(11) NOT NULL DEFAULT '0', + `PermissionRoleID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `GroupID` (`GroupID`), + KEY `PermissionRoleID` (`PermissionRoleID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Group_Roles` +-- + +LOCK TABLES `Group_Roles` WRITE; +/*!40000 ALTER TABLE `Group_Roles` DISABLE KEYS */; +/*!40000 ALTER TABLE `Group_Roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `LoginAttempt` +-- + +DROP TABLE IF EXISTS `LoginAttempt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `LoginAttempt` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\LoginAttempt') DEFAULT 'SilverStripe\\Security\\LoginAttempt', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Email` varchar(255) DEFAULT NULL, + `EmailHashed` varchar(255) DEFAULT NULL, + `Status` enum('Success','Failure') DEFAULT 'Success', + `IP` varchar(255) DEFAULT NULL, + `MemberID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `MemberID` (`MemberID`), + KEY `EmailHashed` (`EmailHashed`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `LoginAttempt` +-- + +LOCK TABLES `LoginAttempt` WRITE; +/*!40000 ALTER TABLE `LoginAttempt` DISABLE KEYS */; +INSERT INTO `LoginAttempt` VALUES (1,'SilverStripe\\Security\\LoginAttempt','2019-10-15 05:46:23','2019-10-15 05:46:23',NULL,'dc76e9f0c0006e8f919e0c515c66dbba3982f785','Success','192.168.96.1',1),(2,'SilverStripe\\Security\\LoginAttempt','2019-10-17 03:07:01','2019-10-17 03:07:01',NULL,'dc76e9f0c0006e8f919e0c515c66dbba3982f785','Success','172.28.0.1',1),(3,'SilverStripe\\Security\\LoginAttempt','2019-10-17 22:02:56','2019-10-17 22:02:56',NULL,'dc76e9f0c0006e8f919e0c515c66dbba3982f785','Success','172.31.0.1',1),(4,'SilverStripe\\Security\\LoginAttempt','2019-10-18 08:31:26','2019-10-18 08:31:26',NULL,'dc76e9f0c0006e8f919e0c515c66dbba3982f785','Success','192.168.16.1',1); +/*!40000 ALTER TABLE `LoginAttempt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `Member` +-- + +DROP TABLE IF EXISTS `Member`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Member` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\Member') DEFAULT 'SilverStripe\\Security\\Member', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `FirstName` varchar(255) DEFAULT NULL, + `Surname` varchar(255) DEFAULT NULL, + `Email` varchar(254) DEFAULT NULL, + `TempIDHash` varchar(160) DEFAULT NULL, + `TempIDExpired` datetime DEFAULT NULL, + `Password` varchar(160) DEFAULT NULL, + `AutoLoginHash` varchar(160) DEFAULT NULL, + `AutoLoginExpired` datetime DEFAULT NULL, + `PasswordEncryption` varchar(50) DEFAULT NULL, + `Salt` varchar(50) DEFAULT NULL, + `PasswordExpiry` date DEFAULT NULL, + `LockedOutUntil` datetime DEFAULT NULL, + `Locale` varchar(6) DEFAULT NULL, + `FailedLoginCount` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `Surname` (`Surname`), + KEY `FirstName` (`FirstName`), + KEY `ClassName` (`ClassName`), + KEY `Email` (`Email`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Member` +-- + +LOCK TABLES `Member` WRITE; +/*!40000 ALTER TABLE `Member` DISABLE KEYS */; +INSERT INTO `Member` VALUES (1,'SilverStripe\\Security\\Member','2019-10-18 08:31:26','2019-10-15 05:07:37','Default Admin',NULL,'root','dbb24a818211e04817e4869c93d84cb287e599d4','2019-10-21 08:31:26',NULL,NULL,NULL,'none',NULL,NULL,NULL,'en_US',0); +/*!40000 ALTER TABLE `Member` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `MemberPassword` +-- + +DROP TABLE IF EXISTS `MemberPassword`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MemberPassword` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\MemberPassword') DEFAULT 'SilverStripe\\Security\\MemberPassword', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Password` varchar(160) DEFAULT NULL, + `Salt` varchar(50) DEFAULT NULL, + `PasswordEncryption` varchar(50) DEFAULT NULL, + `MemberID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `MemberID` (`MemberID`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MemberPassword` +-- + +LOCK TABLES `MemberPassword` WRITE; +/*!40000 ALTER TABLE `MemberPassword` DISABLE KEYS */; +INSERT INTO `MemberPassword` VALUES (1,'SilverStripe\\Security\\MemberPassword','2019-10-15 05:07:37','2019-10-15 05:07:37',NULL,NULL,'none',1); +/*!40000 ALTER TABLE `MemberPassword` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `Permission` +-- + +DROP TABLE IF EXISTS `Permission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Permission` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\Permission') DEFAULT 'SilverStripe\\Security\\Permission', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Code` varchar(255) DEFAULT NULL, + `Arg` int(11) NOT NULL DEFAULT '0', + `Type` int(11) NOT NULL DEFAULT '1', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `GroupID` (`GroupID`), + KEY `Code` (`Code`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Permission` +-- + +LOCK TABLES `Permission` WRITE; +/*!40000 ALTER TABLE `Permission` DISABLE KEYS */; +INSERT INTO `Permission` VALUES (1,'SilverStripe\\Security\\Permission','2019-10-15 05:07:37','2019-10-15 05:07:37','CMS_ACCESS_CMSMain',0,1,1),(2,'SilverStripe\\Security\\Permission','2019-10-15 05:07:37','2019-10-15 05:07:37','CMS_ACCESS_AssetAdmin',0,1,1),(3,'SilverStripe\\Security\\Permission','2019-10-15 05:07:37','2019-10-15 05:07:37','CMS_ACCESS_ReportAdmin',0,1,1),(4,'SilverStripe\\Security\\Permission','2019-10-15 05:07:37','2019-10-15 05:07:37','SITETREE_REORGANISE',0,1,1),(5,'SilverStripe\\Security\\Permission','2019-10-15 05:07:37','2019-10-15 05:07:37','ADMIN',0,1,2); +/*!40000 ALTER TABLE `Permission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `PermissionRole` +-- + +DROP TABLE IF EXISTS `PermissionRole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `PermissionRole` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\PermissionRole') DEFAULT 'SilverStripe\\Security\\PermissionRole', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `OnlyAdminCanApply` tinyint(1) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `Title` (`Title`), + KEY `ClassName` (`ClassName`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `PermissionRole` +-- + +LOCK TABLES `PermissionRole` WRITE; +/*!40000 ALTER TABLE `PermissionRole` DISABLE KEYS */; +/*!40000 ALTER TABLE `PermissionRole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `PermissionRoleCode` +-- + +DROP TABLE IF EXISTS `PermissionRoleCode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `PermissionRoleCode` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\PermissionRoleCode') DEFAULT 'SilverStripe\\Security\\PermissionRoleCode', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Code` varchar(255) DEFAULT NULL, + `RoleID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `RoleID` (`RoleID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `PermissionRoleCode` +-- + +LOCK TABLES `PermissionRoleCode` WRITE; +/*!40000 ALTER TABLE `PermissionRoleCode` DISABLE KEYS */; +/*!40000 ALTER TABLE `PermissionRoleCode` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `RedirectorPage` +-- + +DROP TABLE IF EXISTS `RedirectorPage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RedirectorPage` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RedirectionType` enum('Internal','External') DEFAULT 'Internal', + `ExternalURL` varchar(2083) DEFAULT NULL, + `LinkToID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `LinkToID` (`LinkToID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RedirectorPage` +-- + +LOCK TABLES `RedirectorPage` WRITE; +/*!40000 ALTER TABLE `RedirectorPage` DISABLE KEYS */; +/*!40000 ALTER TABLE `RedirectorPage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `RedirectorPage_Live` +-- + +DROP TABLE IF EXISTS `RedirectorPage_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RedirectorPage_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RedirectionType` enum('Internal','External') DEFAULT 'Internal', + `ExternalURL` varchar(2083) DEFAULT NULL, + `LinkToID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `LinkToID` (`LinkToID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RedirectorPage_Live` +-- + +LOCK TABLES `RedirectorPage_Live` WRITE; +/*!40000 ALTER TABLE `RedirectorPage_Live` DISABLE KEYS */; +/*!40000 ALTER TABLE `RedirectorPage_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `RedirectorPage_Versions` +-- + +DROP TABLE IF EXISTS `RedirectorPage_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RedirectorPage_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `RedirectionType` enum('Internal','External') DEFAULT 'Internal', + `ExternalURL` varchar(2083) DEFAULT NULL, + `LinkToID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `LinkToID` (`LinkToID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RedirectorPage_Versions` +-- + +LOCK TABLES `RedirectorPage_Versions` WRITE; +/*!40000 ALTER TABLE `RedirectorPage_Versions` DISABLE KEYS */; +/*!40000 ALTER TABLE `RedirectorPage_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `RememberLoginHash` +-- + +DROP TABLE IF EXISTS `RememberLoginHash`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RememberLoginHash` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Security\\RememberLoginHash') DEFAULT 'SilverStripe\\Security\\RememberLoginHash', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `DeviceID` varchar(40) DEFAULT NULL, + `Hash` varchar(160) DEFAULT NULL, + `ExpiryDate` datetime DEFAULT NULL, + `MemberID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `MemberID` (`MemberID`), + KEY `DeviceID` (`DeviceID`), + KEY `Hash` (`Hash`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RememberLoginHash` +-- + +LOCK TABLES `RememberLoginHash` WRITE; +/*!40000 ALTER TABLE `RememberLoginHash` DISABLE KEYS */; +INSERT INTO `RememberLoginHash` VALUES (1,'SilverStripe\\Security\\RememberLoginHash','2019-10-15 11:06:17','2019-10-15 05:46:23','bc4f833cdb315a525c6a615e119e2df30651da37','d24f7ce1618619af5ec465cc9712ce7780b95816','2020-01-13 05:46:23',1),(2,'SilverStripe\\Security\\RememberLoginHash','2019-10-17 03:07:01','2019-10-17 03:07:01','bc4a1368c1b81c1598352dfdc0d0796e841c9bb5','5b494caefd2bb4667e068eeb556f2059c1a6b073','2020-01-15 03:07:01',1); +/*!40000 ALTER TABLE `RememberLoginHash` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_ArticleCategory` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_ArticleCategory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_ArticleCategory` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Example\\ArticleCategory') DEFAULT 'SilverStripe\\Example\\ArticleCategory', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `ArticleHolderID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `ArticleHolderID` (`ArticleHolderID`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_ArticleCategory` +-- + +LOCK TABLES `SilverStripe_Example_ArticleCategory` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_ArticleCategory` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_ArticleCategory` VALUES (1,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:08:27','2019-10-17 03:08:27','Business',9),(2,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:08:48','2019-10-17 03:08:48','Commercial',9),(3,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:09:12','2019-10-17 03:09:12','Land',9),(4,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:09:30','2019-10-17 03:09:30','Loans',9),(5,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:09:50','2019-10-17 03:09:50','News and Updates',9),(6,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:10:11','2019-10-17 03:10:11','Properties for Sale',9),(7,'SilverStripe\\Example\\ArticleCategory','2019-10-17 03:10:29','2019-10-17 03:10:29','Real Estate',9); +/*!40000 ALTER TABLE `SilverStripe_Example_ArticleCategory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_ArticleComment` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_ArticleComment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_ArticleComment` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Example\\ArticleComment') DEFAULT 'SilverStripe\\Example\\ArticleComment', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Name` varchar(255) DEFAULT NULL, + `Email` varchar(255) DEFAULT NULL, + `Comment` mediumtext, + `ArticlePageID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `ArticlePageID` (`ArticlePageID`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_ArticleComment` +-- + +LOCK TABLES `SilverStripe_Example_ArticleComment` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_ArticleComment` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_ArticleComment` VALUES (1,'SilverStripe\\Example\\ArticleComment','2019-10-17 12:58:37','2019-10-17 12:58:37','John Doe','john@example.com','Hello World',10); +/*!40000 ALTER TABLE `SilverStripe_Example_ArticleComment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_ArticlePage` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_ArticlePage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_ArticlePage` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `Date` date DEFAULT NULL, + `Teaser` mediumtext, + `ArticleAuthor` varchar(255) DEFAULT NULL, + `PhotoID` int(11) NOT NULL DEFAULT '0', + `BrochureID` int(11) NOT NULL DEFAULT '0', + `RegionID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `PhotoID` (`PhotoID`), + KEY `BrochureID` (`BrochureID`), + KEY `RegionID` (`RegionID`) +) ENGINE=InnoDB AUTO_INCREMENT=214 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_ArticlePage` +-- + +LOCK TABLES `SilverStripe_Example_ArticlePage` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_ArticlePage` VALUES (10,'1776-07-04','Teaser of sample article 1','Manuel Thalmann',3,4,2),(11,'1840-02-06',NULL,'John Doe',5,6,3),(12,'2000-08-01',NULL,'Jane Doe',7,8,1),(13,'2020-06-09','Teaser of sample article 4','Scrooge McDuck',5,6,2),(14,'2019-11-01','Teaser of sample article 5','John Doe',3,6,3),(15,'2020-06-25','Teaser of sample article 6','Scrooge McDuck',3,6,4),(16,'2020-01-19','Teaser of sample article 7','Jane Doe',5,6,4),(17,'2019-11-04','Teaser of sample article 8','Jane Doe',3,6,2),(18,'2020-08-25','Teaser of sample article 9','Scrooge McDuck',5,4,1),(19,'2020-06-25','Teaser of sample article 10','Jane Doe',5,4,4),(20,'2019-11-08','Teaser of sample article 11','Jane Doe',5,6,4),(21,'2019-12-18','Teaser of sample article 12','John Doe',5,6,4),(22,'2020-10-06','Teaser of sample article 13','Scrooge McDuck',5,6,1),(23,'2020-08-30','Teaser of sample article 14','Jane Doe',5,4,4),(24,'2020-03-09','Teaser of sample article 15','Scrooge McDuck',3,4,3),(25,'2020-08-12','Teaser of sample article 16','Jane Doe',3,6,4),(26,'2019-11-27','Teaser of sample article 17','Jane Doe',3,4,4),(27,'2020-08-26','Teaser of sample article 18','Jane Doe',3,6,3),(28,'2020-03-23','Teaser of sample article 19','Jane Doe',5,4,1),(29,'2020-02-21','Teaser of sample article 20','Jane Doe',5,4,2),(30,'2019-11-28','Teaser of sample article 21','Jane Doe',3,4,1),(31,'2020-09-26','Teaser of sample article 22','Scrooge McDuck',3,4,2),(32,'2019-11-25','Teaser of sample article 23','Jane Doe',5,6,1),(33,'2020-04-15','Teaser of sample article 24','Scrooge McDuck',5,4,1),(34,'2020-04-09','Teaser of sample article 25','Scrooge McDuck',5,6,3),(35,'2020-08-31','Teaser of sample article 26','Scrooge McDuck',5,6,1),(36,'2020-05-26','Teaser of sample article 27','John Doe',5,4,3),(37,'2019-12-01','Teaser of sample article 28','Scrooge McDuck',5,4,2),(38,'2019-11-23','Teaser of sample article 29','Scrooge McDuck',3,6,2),(39,'2019-11-02','Teaser of sample article 30','John Doe',5,6,1),(40,'2020-02-21','Teaser of sample article 31','John Doe',5,6,4),(41,'2020-09-15','Teaser of sample article 32','Jane Doe',3,4,4),(42,'2020-08-11','Teaser of sample article 33','Jane Doe',5,4,1),(43,'2020-08-25','Teaser of sample article 34','Scrooge McDuck',3,6,3),(44,'2019-10-27','Teaser of sample article 35','Jane Doe',5,4,1),(45,'2020-03-26','Teaser of sample article 36','Scrooge McDuck',5,4,1),(46,'2020-06-06','Teaser of sample article 37','Jane Doe',3,6,3),(47,'2020-05-02','Teaser of sample article 38','Scrooge McDuck',3,6,4),(48,'2020-03-17','Teaser of sample article 39','Jane Doe',3,6,1),(49,'2020-02-29','Teaser of sample article 40','John Doe',3,6,4),(50,'2019-10-28','Teaser of sample article 41','Scrooge McDuck',3,4,3),(51,'2020-06-15','Teaser of sample article 42','Jane Doe',5,4,3),(52,'2020-08-08','Teaser of sample article 43','John Doe',3,4,1),(53,'2020-02-24','Teaser of sample article 44','John Doe',5,6,1),(54,'2020-04-18','Teaser of sample article 45','Jane Doe',5,6,1),(55,'2020-09-15','Teaser of sample article 46','Scrooge McDuck',3,4,1),(56,'2020-04-28','Teaser of sample article 47','Scrooge McDuck',5,6,3),(57,'2020-09-14','Teaser of sample article 48','Scrooge McDuck',3,6,1),(58,'2020-03-08','Teaser of sample article 49','Scrooge McDuck',5,4,2),(59,'2020-10-15','Teaser of sample article 50','John Doe',5,4,4),(60,'2019-12-07','Teaser of sample article 51','Jane Doe',3,6,2),(61,'2020-09-23','Teaser of sample article 52','John Doe',3,6,2),(62,'2020-06-27','Teaser of sample article 53','Jane Doe',5,4,3),(63,'2020-03-11','Teaser of sample article 54','Scrooge McDuck',5,6,1),(64,'2020-03-30','Teaser of sample article 55','John Doe',5,4,4),(65,'2020-05-19','Teaser of sample article 56','Scrooge McDuck',5,4,2),(66,'2020-08-24','Teaser of sample article 57','Jane Doe',5,6,2),(67,'2020-02-26','Teaser of sample article 58','John Doe',5,4,3),(68,'2019-12-04','Teaser of sample article 59','John Doe',3,4,3),(69,'2020-07-20','Teaser of sample article 60','Scrooge McDuck',5,4,1),(70,'2020-05-06','Teaser of sample article 61','John Doe',5,4,2),(71,'2020-09-26','Teaser of sample article 62','Jane Doe',5,6,3),(72,'2020-01-06','Teaser of sample article 63','Jane Doe',3,4,1),(73,'2020-06-24','Teaser of sample article 64','Scrooge McDuck',5,6,4),(74,'2020-08-25','Teaser of sample article 65','John Doe',3,4,3),(75,'2020-06-17','Teaser of sample article 66','Jane Doe',3,6,3),(76,'2020-06-11','Teaser of sample article 67','Scrooge McDuck',5,6,4),(77,'2020-04-29','Teaser of sample article 68','John Doe',3,6,3),(78,'2019-10-18','Teaser of sample article 69','Scrooge McDuck',5,6,4),(79,'2020-06-17','Teaser of sample article 70','Scrooge McDuck',3,4,1),(80,'2019-10-25','Teaser of sample article 71','Scrooge McDuck',5,6,1),(81,'2020-10-15','Teaser of sample article 72','Scrooge McDuck',3,4,2),(82,'2020-07-19','Teaser of sample article 73','Jane Doe',3,6,4),(83,'2019-11-01','Teaser of sample article 74','Jane Doe',5,4,3),(84,'2020-09-02','Teaser of sample article 75','Scrooge McDuck',5,6,1),(85,'2019-11-09','Teaser of sample article 76','John Doe',3,6,1),(86,'2019-11-11','Teaser of sample article 77','Jane Doe',3,6,3),(87,'2020-06-20','Teaser of sample article 78','Jane Doe',5,6,2),(88,'2020-09-28','Teaser of sample article 79','John Doe',3,4,2),(89,'2020-05-27','Teaser of sample article 80','Scrooge McDuck',3,6,1),(90,'2020-05-03','Teaser of sample article 81','John Doe',5,4,3),(91,'2020-07-16','Teaser of sample article 82','Scrooge McDuck',5,6,1),(92,'2020-08-21','Teaser of sample article 83','Jane Doe',3,6,1),(93,'2020-06-05','Teaser of sample article 84','Scrooge McDuck',5,4,3),(94,'2020-03-14','Teaser of sample article 85','Jane Doe',3,4,4),(95,'2020-01-28','Teaser of sample article 86','Scrooge McDuck',3,4,3),(96,'2020-01-27','Teaser of sample article 87','Jane Doe',3,4,3),(97,'2020-01-25','Teaser of sample article 88','John Doe',5,6,3),(98,'2020-01-12','Teaser of sample article 89','Scrooge McDuck',3,4,3),(99,'2019-12-04','Teaser of sample article 90','John Doe',3,6,2),(100,'2020-05-08','Teaser of sample article 91','Jane Doe',5,4,1),(101,'2020-08-15','Teaser of sample article 92','Jane Doe',5,4,2),(102,'2020-08-10','Teaser of sample article 93','Scrooge McDuck',3,4,4),(103,'2019-12-15','Teaser of sample article 94','Jane Doe',5,6,2),(104,'2019-12-03','Teaser of sample article 95','Scrooge McDuck',5,6,4),(105,'2020-06-26','Teaser of sample article 96','John Doe',5,6,4),(106,'2020-09-09','Teaser of sample article 97','Jane Doe',3,6,3),(107,'2020-07-28','Teaser of sample article 98','John Doe',5,4,3),(108,'2020-06-27','Teaser of sample article 99','Scrooge McDuck',3,4,4),(109,'2020-02-24','Teaser of sample article 100','John Doe',5,4,3),(110,'2020-09-26','Teaser of sample article 101','John Doe',5,6,2),(111,'2020-04-07','Teaser of sample article 102','John Doe',5,6,2),(112,'2019-12-26','Teaser of sample article 103','John Doe',3,4,4),(113,'2020-07-18','Teaser of sample article 104','Scrooge McDuck',3,6,3),(114,'2019-10-27','Teaser of sample article 105','Jane Doe',5,6,2),(115,'2020-01-23','Teaser of sample article 106','Jane Doe',5,4,4),(116,'2020-07-23','Teaser of sample article 107','Jane Doe',5,6,4),(117,'2020-02-27','Teaser of sample article 108','John Doe',3,6,3),(118,'2020-08-25','Teaser of sample article 109','Scrooge McDuck',3,4,3),(119,'2020-07-11','Teaser of sample article 110','Scrooge McDuck',5,4,4),(120,'2020-06-23','Teaser of sample article 111','Jane Doe',5,6,3),(121,'2019-11-24','Teaser of sample article 112','John Doe',3,6,1),(122,'2020-07-02','Teaser of sample article 113','Jane Doe',3,6,1),(123,'2020-03-05','Teaser of sample article 114','Scrooge McDuck',5,6,1),(124,'2020-08-06','Teaser of sample article 115','Scrooge McDuck',5,4,1),(125,'2020-10-03','Teaser of sample article 116','Jane Doe',3,4,4),(126,'2020-08-19','Teaser of sample article 117','Scrooge McDuck',5,4,4),(127,'2020-07-11','Teaser of sample article 118','John Doe',5,6,1),(128,'2019-11-24','Teaser of sample article 119','Scrooge McDuck',3,4,4),(129,'2020-05-28','Teaser of sample article 120','John Doe',5,6,4),(130,'2020-01-10','Teaser of sample article 121','John Doe',3,6,4),(131,'2020-08-07','Teaser of sample article 122','Jane Doe',5,6,4),(132,'2020-06-17','Teaser of sample article 123','John Doe',5,4,2),(133,'2020-03-27','Teaser of sample article 124','Jane Doe',5,4,3),(134,'2020-04-16','Teaser of sample article 125','Scrooge McDuck',3,6,1),(135,'2019-12-03','Teaser of sample article 126','Scrooge McDuck',3,6,1),(136,'2020-05-23','Teaser of sample article 127','John Doe',3,4,2),(137,'2020-05-27','Teaser of sample article 128','John Doe',3,4,2),(138,'2020-07-30','Teaser of sample article 129','Scrooge McDuck',3,6,1),(139,'2020-07-03','Teaser of sample article 130','John Doe',3,6,4),(140,'2020-01-14','Teaser of sample article 131','Scrooge McDuck',3,6,2),(141,'2019-10-29','Teaser of sample article 132','John Doe',5,6,4),(142,'2020-04-15','Teaser of sample article 133','Jane Doe',5,4,4),(143,'2020-04-28','Teaser of sample article 134','Jane Doe',3,4,2),(144,'2020-06-01','Teaser of sample article 135','John Doe',5,6,4),(145,'2020-07-30','Teaser of sample article 136','Scrooge McDuck',5,6,1),(146,'2020-09-18','Teaser of sample article 137','Scrooge McDuck',5,4,2),(147,'2020-04-10','Teaser of sample article 138','Scrooge McDuck',5,4,4),(148,'2020-07-13','Teaser of sample article 139','Scrooge McDuck',5,4,3),(149,'2019-11-03','Teaser of sample article 140','John Doe',3,6,1),(150,'2019-10-27','Teaser of sample article 141','Jane Doe',5,4,2),(151,'2020-05-20','Teaser of sample article 142','Jane Doe',5,4,2),(152,'2020-08-25','Teaser of sample article 143','Scrooge McDuck',5,6,3),(153,'2020-04-12','Teaser of sample article 144','Scrooge McDuck',5,4,4),(154,'2020-09-28','Teaser of sample article 145','Scrooge McDuck',5,4,3),(155,'2020-04-27','Teaser of sample article 146','Scrooge McDuck',3,4,1),(156,'2020-04-23','Teaser of sample article 147','Scrooge McDuck',3,4,4),(157,'2020-02-03','Teaser of sample article 148','John Doe',3,4,4),(158,'2020-04-20','Teaser of sample article 149','John Doe',5,6,2),(159,'2019-12-02','Teaser of sample article 150','John Doe',3,4,4),(160,'2019-12-15','Teaser of sample article 151','Scrooge McDuck',3,6,4),(161,'2020-04-25','Teaser of sample article 152','John Doe',5,6,1),(162,'2019-11-16','Teaser of sample article 153','Scrooge McDuck',5,4,1),(163,'2020-08-30','Teaser of sample article 154','Scrooge McDuck',3,6,1),(164,'2020-01-25','Teaser of sample article 155','Jane Doe',3,4,3),(165,'2020-08-04','Teaser of sample article 156','Scrooge McDuck',5,6,2),(166,'2020-07-20','Teaser of sample article 157','John Doe',3,4,1),(167,'2019-12-13','Teaser of sample article 158','John Doe',5,4,2),(168,'2020-06-22','Teaser of sample article 159','John Doe',3,6,4),(169,'2020-05-27','Teaser of sample article 160','Scrooge McDuck',5,6,2),(170,'2019-12-29','Teaser of sample article 161','Scrooge McDuck',5,4,4),(171,'2020-09-18','Teaser of sample article 162','Jane Doe',5,6,4),(172,'2020-09-13','Teaser of sample article 163','Jane Doe',3,6,2),(173,'2020-04-08','Teaser of sample article 164','John Doe',3,4,2),(174,'2020-05-04','Teaser of sample article 165','Jane Doe',3,4,4),(175,'2020-09-12','Teaser of sample article 166','Jane Doe',5,6,3),(176,'2020-06-16','Teaser of sample article 167','Jane Doe',5,6,4),(177,'2020-08-09','Teaser of sample article 168','Jane Doe',3,6,3),(178,'2020-09-18','Teaser of sample article 169','Jane Doe',3,4,3),(179,'2020-06-14','Teaser of sample article 170','Jane Doe',5,6,3),(180,'2020-05-04','Teaser of sample article 171','John Doe',3,4,4),(181,'2020-09-15','Teaser of sample article 172','Jane Doe',3,4,4),(182,'2019-12-09','Teaser of sample article 173','Scrooge McDuck',3,6,3),(183,'2020-01-10','Teaser of sample article 174','Jane Doe',5,4,2),(184,'2020-07-27','Teaser of sample article 175','Scrooge McDuck',3,4,2),(185,'2020-03-07','Teaser of sample article 176','Jane Doe',3,4,1),(186,'2019-12-25','Teaser of sample article 177','John Doe',3,6,1),(187,'2020-06-28','Teaser of sample article 178','Scrooge McDuck',5,4,2),(188,'2020-05-28','Teaser of sample article 179','Jane Doe',5,4,1),(189,'2020-07-15','Teaser of sample article 180','Scrooge McDuck',3,4,1),(190,'2020-08-26','Teaser of sample article 181','Jane Doe',5,4,3),(191,'2020-04-28','Teaser of sample article 182','Jane Doe',5,6,3),(192,'2020-08-06','Teaser of sample article 183','Jane Doe',3,4,3),(193,'2019-12-22','Teaser of sample article 184','Jane Doe',3,4,4),(194,'2020-02-20','Teaser of sample article 185','John Doe',5,6,1),(195,'2020-09-28','Teaser of sample article 186','Scrooge McDuck',3,6,1),(196,'2020-03-29','Teaser of sample article 187','Scrooge McDuck',3,4,2),(197,'2019-11-28','Teaser of sample article 188','Jane Doe',5,4,2),(198,'2019-11-10','Teaser of sample article 189','Jane Doe',3,4,3),(199,'2020-09-19','Teaser of sample article 190','John Doe',3,4,4),(200,'2020-03-01','Teaser of sample article 191','John Doe',3,4,2),(201,'2020-02-19','Teaser of sample article 192','John Doe',5,6,1),(202,'2020-09-03','Teaser of sample article 193','Scrooge McDuck',5,6,1),(203,'2020-01-17','Teaser of sample article 194','John Doe',5,4,3),(204,'2019-11-21','Teaser of sample article 195','John Doe',3,4,4),(205,'2019-12-07','Teaser of sample article 196','Jane Doe',3,6,2),(206,'2020-10-04','Teaser of sample article 197','John Doe',3,6,2),(207,'2020-09-26','Teaser of sample article 198','Scrooge McDuck',3,6,4),(208,'2020-05-25','Teaser of sample article 199','Jane Doe',5,6,1),(209,'2019-11-05','Teaser of sample article 200','John Doe',3,6,2),(210,'2020-04-20','Teaser of sample article 201','Jane Doe',5,4,4),(211,'2020-01-08','Teaser of sample article 202','John Doe',5,6,1),(212,'2020-05-08','Teaser of sample article 203','Jane Doe',5,6,1),(213,'2020-03-18','Teaser of sample article 204','Scrooge McDuck',3,4,3); +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_ArticlePage_Categories` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_ArticlePage_Categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_ArticlePage_Categories` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `SilverStripe_Example_ArticlePageID` int(11) NOT NULL DEFAULT '0', + `SilverStripe_Example_ArticleCategoryID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `SilverStripe_Example_ArticlePageID` (`SilverStripe_Example_ArticlePageID`), + KEY `SilverStripe_Example_ArticleCategoryID` (`SilverStripe_Example_ArticleCategoryID`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_ArticlePage_Categories` +-- + +LOCK TABLES `SilverStripe_Example_ArticlePage_Categories` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage_Categories` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_ArticlePage_Categories` VALUES (1,10,1),(2,10,3),(3,10,5),(4,10,6),(5,11,1),(6,11,3),(7,11,5),(8,11,7),(9,12,1),(10,12,2),(11,12,3),(12,12,4),(13,12,5),(14,12,6),(15,12,7); +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage_Categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_ArticlePage_Live` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_ArticlePage_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_ArticlePage_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `Date` date DEFAULT NULL, + `Teaser` mediumtext, + `ArticleAuthor` varchar(255) DEFAULT NULL, + `PhotoID` int(11) NOT NULL DEFAULT '0', + `BrochureID` int(11) NOT NULL DEFAULT '0', + `RegionID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `PhotoID` (`PhotoID`), + KEY `BrochureID` (`BrochureID`), + KEY `RegionID` (`RegionID`) +) ENGINE=InnoDB AUTO_INCREMENT=214 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_ArticlePage_Live` +-- + +LOCK TABLES `SilverStripe_Example_ArticlePage_Live` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage_Live` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_ArticlePage_Live` VALUES (10,'1776-07-04','Teaser of sample article 1','Manuel Thalmann',3,4,2),(11,'1840-02-06',NULL,'John Doe',5,6,3),(12,'2000-08-01',NULL,'Jane Doe',7,8,1),(13,'2020-06-09','Teaser of sample article 4','Scrooge McDuck',5,6,2),(14,'2019-11-01','Teaser of sample article 5','John Doe',3,6,3),(15,'2020-06-25','Teaser of sample article 6','Scrooge McDuck',3,6,4),(16,'2020-01-19','Teaser of sample article 7','Jane Doe',5,6,4),(17,'2019-11-04','Teaser of sample article 8','Jane Doe',3,6,2),(18,'2020-08-25','Teaser of sample article 9','Scrooge McDuck',5,4,1),(19,'2020-06-25','Teaser of sample article 10','Jane Doe',5,4,4),(20,'2019-11-08','Teaser of sample article 11','Jane Doe',5,6,4),(21,'2019-12-18','Teaser of sample article 12','John Doe',5,6,4),(22,'2020-10-06','Teaser of sample article 13','Scrooge McDuck',5,6,1),(23,'2020-08-30','Teaser of sample article 14','Jane Doe',5,4,4),(24,'2020-03-09','Teaser of sample article 15','Scrooge McDuck',3,4,3),(25,'2020-08-12','Teaser of sample article 16','Jane Doe',3,6,4),(26,'2019-11-27','Teaser of sample article 17','Jane Doe',3,4,4),(27,'2020-08-26','Teaser of sample article 18','Jane Doe',3,6,3),(28,'2020-03-23','Teaser of sample article 19','Jane Doe',5,4,1),(29,'2020-02-21','Teaser of sample article 20','Jane Doe',5,4,2),(30,'2019-11-28','Teaser of sample article 21','Jane Doe',3,4,1),(31,'2020-09-26','Teaser of sample article 22','Scrooge McDuck',3,4,2),(32,'2019-11-25','Teaser of sample article 23','Jane Doe',5,6,1),(33,'2020-04-15','Teaser of sample article 24','Scrooge McDuck',5,4,1),(34,'2020-04-09','Teaser of sample article 25','Scrooge McDuck',5,6,3),(35,'2020-08-31','Teaser of sample article 26','Scrooge McDuck',5,6,1),(36,'2020-05-26','Teaser of sample article 27','John Doe',5,4,3),(37,'2019-12-01','Teaser of sample article 28','Scrooge McDuck',5,4,2),(38,'2019-11-23','Teaser of sample article 29','Scrooge McDuck',3,6,2),(39,'2019-11-02','Teaser of sample article 30','John Doe',5,6,1),(40,'2020-02-21','Teaser of sample article 31','John Doe',5,6,4),(41,'2020-09-15','Teaser of sample article 32','Jane Doe',3,4,4),(42,'2020-08-11','Teaser of sample article 33','Jane Doe',5,4,1),(43,'2020-08-25','Teaser of sample article 34','Scrooge McDuck',3,6,3),(44,'2019-10-27','Teaser of sample article 35','Jane Doe',5,4,1),(45,'2020-03-26','Teaser of sample article 36','Scrooge McDuck',5,4,1),(46,'2020-06-06','Teaser of sample article 37','Jane Doe',3,6,3),(47,'2020-05-02','Teaser of sample article 38','Scrooge McDuck',3,6,4),(48,'2020-03-17','Teaser of sample article 39','Jane Doe',3,6,1),(49,'2020-02-29','Teaser of sample article 40','John Doe',3,6,4),(50,'2019-10-28','Teaser of sample article 41','Scrooge McDuck',3,4,3),(51,'2020-06-15','Teaser of sample article 42','Jane Doe',5,4,3),(52,'2020-08-08','Teaser of sample article 43','John Doe',3,4,1),(53,'2020-02-24','Teaser of sample article 44','John Doe',5,6,1),(54,'2020-04-18','Teaser of sample article 45','Jane Doe',5,6,1),(55,'2020-09-15','Teaser of sample article 46','Scrooge McDuck',3,4,1),(56,'2020-04-28','Teaser of sample article 47','Scrooge McDuck',5,6,3),(57,'2020-09-14','Teaser of sample article 48','Scrooge McDuck',3,6,1),(58,'2020-03-08','Teaser of sample article 49','Scrooge McDuck',5,4,2),(59,'2020-10-15','Teaser of sample article 50','John Doe',5,4,4),(60,'2019-12-07','Teaser of sample article 51','Jane Doe',3,6,2),(61,'2020-09-23','Teaser of sample article 52','John Doe',3,6,2),(62,'2020-06-27','Teaser of sample article 53','Jane Doe',5,4,3),(63,'2020-03-11','Teaser of sample article 54','Scrooge McDuck',5,6,1),(64,'2020-03-30','Teaser of sample article 55','John Doe',5,4,4),(65,'2020-05-19','Teaser of sample article 56','Scrooge McDuck',5,4,2),(66,'2020-08-24','Teaser of sample article 57','Jane Doe',5,6,2),(67,'2020-02-26','Teaser of sample article 58','John Doe',5,4,3),(68,'2019-12-04','Teaser of sample article 59','John Doe',3,4,3),(69,'2020-07-20','Teaser of sample article 60','Scrooge McDuck',5,4,1),(70,'2020-05-06','Teaser of sample article 61','John Doe',5,4,2),(71,'2020-09-26','Teaser of sample article 62','Jane Doe',5,6,3),(72,'2020-01-06','Teaser of sample article 63','Jane Doe',3,4,1),(73,'2020-06-24','Teaser of sample article 64','Scrooge McDuck',5,6,4),(74,'2020-08-25','Teaser of sample article 65','John Doe',3,4,3),(75,'2020-06-17','Teaser of sample article 66','Jane Doe',3,6,3),(76,'2020-06-11','Teaser of sample article 67','Scrooge McDuck',5,6,4),(77,'2020-04-29','Teaser of sample article 68','John Doe',3,6,3),(78,'2019-10-18','Teaser of sample article 69','Scrooge McDuck',5,6,4),(79,'2020-06-17','Teaser of sample article 70','Scrooge McDuck',3,4,1),(80,'2019-10-25','Teaser of sample article 71','Scrooge McDuck',5,6,1),(81,'2020-10-15','Teaser of sample article 72','Scrooge McDuck',3,4,2),(82,'2020-07-19','Teaser of sample article 73','Jane Doe',3,6,4),(83,'2019-11-01','Teaser of sample article 74','Jane Doe',5,4,3),(84,'2020-09-02','Teaser of sample article 75','Scrooge McDuck',5,6,1),(85,'2019-11-09','Teaser of sample article 76','John Doe',3,6,1),(86,'2019-11-11','Teaser of sample article 77','Jane Doe',3,6,3),(87,'2020-06-20','Teaser of sample article 78','Jane Doe',5,6,2),(88,'2020-09-28','Teaser of sample article 79','John Doe',3,4,2),(89,'2020-05-27','Teaser of sample article 80','Scrooge McDuck',3,6,1),(90,'2020-05-03','Teaser of sample article 81','John Doe',5,4,3),(91,'2020-07-16','Teaser of sample article 82','Scrooge McDuck',5,6,1),(92,'2020-08-21','Teaser of sample article 83','Jane Doe',3,6,1),(93,'2020-06-05','Teaser of sample article 84','Scrooge McDuck',5,4,3),(94,'2020-03-14','Teaser of sample article 85','Jane Doe',3,4,4),(95,'2020-01-28','Teaser of sample article 86','Scrooge McDuck',3,4,3),(96,'2020-01-27','Teaser of sample article 87','Jane Doe',3,4,3),(97,'2020-01-25','Teaser of sample article 88','John Doe',5,6,3),(98,'2020-01-12','Teaser of sample article 89','Scrooge McDuck',3,4,3),(99,'2019-12-04','Teaser of sample article 90','John Doe',3,6,2),(100,'2020-05-08','Teaser of sample article 91','Jane Doe',5,4,1),(101,'2020-08-15','Teaser of sample article 92','Jane Doe',5,4,2),(102,'2020-08-10','Teaser of sample article 93','Scrooge McDuck',3,4,4),(103,'2019-12-15','Teaser of sample article 94','Jane Doe',5,6,2),(104,'2019-12-03','Teaser of sample article 95','Scrooge McDuck',5,6,4),(105,'2020-06-26','Teaser of sample article 96','John Doe',5,6,4),(106,'2020-09-09','Teaser of sample article 97','Jane Doe',3,6,3),(107,'2020-07-28','Teaser of sample article 98','John Doe',5,4,3),(108,'2020-06-27','Teaser of sample article 99','Scrooge McDuck',3,4,4),(109,'2020-02-24','Teaser of sample article 100','John Doe',5,4,3),(110,'2020-09-26','Teaser of sample article 101','John Doe',5,6,2),(111,'2020-04-07','Teaser of sample article 102','John Doe',5,6,2),(112,'2019-12-26','Teaser of sample article 103','John Doe',3,4,4),(113,'2020-07-18','Teaser of sample article 104','Scrooge McDuck',3,6,3),(114,'2019-10-27','Teaser of sample article 105','Jane Doe',5,6,2),(115,'2020-01-23','Teaser of sample article 106','Jane Doe',5,4,4),(116,'2020-07-23','Teaser of sample article 107','Jane Doe',5,6,4),(117,'2020-02-27','Teaser of sample article 108','John Doe',3,6,3),(118,'2020-08-25','Teaser of sample article 109','Scrooge McDuck',3,4,3),(119,'2020-07-11','Teaser of sample article 110','Scrooge McDuck',5,4,4),(120,'2020-06-23','Teaser of sample article 111','Jane Doe',5,6,3),(121,'2019-11-24','Teaser of sample article 112','John Doe',3,6,1),(122,'2020-07-02','Teaser of sample article 113','Jane Doe',3,6,1),(123,'2020-03-05','Teaser of sample article 114','Scrooge McDuck',5,6,1),(124,'2020-08-06','Teaser of sample article 115','Scrooge McDuck',5,4,1),(125,'2020-10-03','Teaser of sample article 116','Jane Doe',3,4,4),(126,'2020-08-19','Teaser of sample article 117','Scrooge McDuck',5,4,4),(127,'2020-07-11','Teaser of sample article 118','John Doe',5,6,1),(128,'2019-11-24','Teaser of sample article 119','Scrooge McDuck',3,4,4),(129,'2020-05-28','Teaser of sample article 120','John Doe',5,6,4),(130,'2020-01-10','Teaser of sample article 121','John Doe',3,6,4),(131,'2020-08-07','Teaser of sample article 122','Jane Doe',5,6,4),(132,'2020-06-17','Teaser of sample article 123','John Doe',5,4,2),(133,'2020-03-27','Teaser of sample article 124','Jane Doe',5,4,3),(134,'2020-04-16','Teaser of sample article 125','Scrooge McDuck',3,6,1),(135,'2019-12-03','Teaser of sample article 126','Scrooge McDuck',3,6,1),(136,'2020-05-23','Teaser of sample article 127','John Doe',3,4,2),(137,'2020-05-27','Teaser of sample article 128','John Doe',3,4,2),(138,'2020-07-30','Teaser of sample article 129','Scrooge McDuck',3,6,1),(139,'2020-07-03','Teaser of sample article 130','John Doe',3,6,4),(140,'2020-01-14','Teaser of sample article 131','Scrooge McDuck',3,6,2),(141,'2019-10-29','Teaser of sample article 132','John Doe',5,6,4),(142,'2020-04-15','Teaser of sample article 133','Jane Doe',5,4,4),(143,'2020-04-28','Teaser of sample article 134','Jane Doe',3,4,2),(144,'2020-06-01','Teaser of sample article 135','John Doe',5,6,4),(145,'2020-07-30','Teaser of sample article 136','Scrooge McDuck',5,6,1),(146,'2020-09-18','Teaser of sample article 137','Scrooge McDuck',5,4,2),(147,'2020-04-10','Teaser of sample article 138','Scrooge McDuck',5,4,4),(148,'2020-07-13','Teaser of sample article 139','Scrooge McDuck',5,4,3),(149,'2019-11-03','Teaser of sample article 140','John Doe',3,6,1),(150,'2019-10-27','Teaser of sample article 141','Jane Doe',5,4,2),(151,'2020-05-20','Teaser of sample article 142','Jane Doe',5,4,2),(152,'2020-08-25','Teaser of sample article 143','Scrooge McDuck',5,6,3),(153,'2020-04-12','Teaser of sample article 144','Scrooge McDuck',5,4,4),(154,'2020-09-28','Teaser of sample article 145','Scrooge McDuck',5,4,3),(155,'2020-04-27','Teaser of sample article 146','Scrooge McDuck',3,4,1),(156,'2020-04-23','Teaser of sample article 147','Scrooge McDuck',3,4,4),(157,'2020-02-03','Teaser of sample article 148','John Doe',3,4,4),(158,'2020-04-20','Teaser of sample article 149','John Doe',5,6,2),(159,'2019-12-02','Teaser of sample article 150','John Doe',3,4,4),(160,'2019-12-15','Teaser of sample article 151','Scrooge McDuck',3,6,4),(161,'2020-04-25','Teaser of sample article 152','John Doe',5,6,1),(162,'2019-11-16','Teaser of sample article 153','Scrooge McDuck',5,4,1),(163,'2020-08-30','Teaser of sample article 154','Scrooge McDuck',3,6,1),(164,'2020-01-25','Teaser of sample article 155','Jane Doe',3,4,3),(165,'2020-08-04','Teaser of sample article 156','Scrooge McDuck',5,6,2),(166,'2020-07-20','Teaser of sample article 157','John Doe',3,4,1),(167,'2019-12-13','Teaser of sample article 158','John Doe',5,4,2),(168,'2020-06-22','Teaser of sample article 159','John Doe',3,6,4),(169,'2020-05-27','Teaser of sample article 160','Scrooge McDuck',5,6,2),(170,'2019-12-29','Teaser of sample article 161','Scrooge McDuck',5,4,4),(171,'2020-09-18','Teaser of sample article 162','Jane Doe',5,6,4),(172,'2020-09-13','Teaser of sample article 163','Jane Doe',3,6,2),(173,'2020-04-08','Teaser of sample article 164','John Doe',3,4,2),(174,'2020-05-04','Teaser of sample article 165','Jane Doe',3,4,4),(175,'2020-09-12','Teaser of sample article 166','Jane Doe',5,6,3),(176,'2020-06-16','Teaser of sample article 167','Jane Doe',5,6,4),(177,'2020-08-09','Teaser of sample article 168','Jane Doe',3,6,3),(178,'2020-09-18','Teaser of sample article 169','Jane Doe',3,4,3),(179,'2020-06-14','Teaser of sample article 170','Jane Doe',5,6,3),(180,'2020-05-04','Teaser of sample article 171','John Doe',3,4,4),(181,'2020-09-15','Teaser of sample article 172','Jane Doe',3,4,4),(182,'2019-12-09','Teaser of sample article 173','Scrooge McDuck',3,6,3),(183,'2020-01-10','Teaser of sample article 174','Jane Doe',5,4,2),(184,'2020-07-27','Teaser of sample article 175','Scrooge McDuck',3,4,2),(185,'2020-03-07','Teaser of sample article 176','Jane Doe',3,4,1),(186,'2019-12-25','Teaser of sample article 177','John Doe',3,6,1),(187,'2020-06-28','Teaser of sample article 178','Scrooge McDuck',5,4,2),(188,'2020-05-28','Teaser of sample article 179','Jane Doe',5,4,1),(189,'2020-07-15','Teaser of sample article 180','Scrooge McDuck',3,4,1),(190,'2020-08-26','Teaser of sample article 181','Jane Doe',5,4,3),(191,'2020-04-28','Teaser of sample article 182','Jane Doe',5,6,3),(192,'2020-08-06','Teaser of sample article 183','Jane Doe',3,4,3),(193,'2019-12-22','Teaser of sample article 184','Jane Doe',3,4,4),(194,'2020-02-20','Teaser of sample article 185','John Doe',5,6,1),(195,'2020-09-28','Teaser of sample article 186','Scrooge McDuck',3,6,1),(196,'2020-03-29','Teaser of sample article 187','Scrooge McDuck',3,4,2),(197,'2019-11-28','Teaser of sample article 188','Jane Doe',5,4,2),(198,'2019-11-10','Teaser of sample article 189','Jane Doe',3,4,3),(199,'2020-09-19','Teaser of sample article 190','John Doe',3,4,4),(200,'2020-03-01','Teaser of sample article 191','John Doe',3,4,2),(201,'2020-02-19','Teaser of sample article 192','John Doe',5,6,1),(202,'2020-09-03','Teaser of sample article 193','Scrooge McDuck',5,6,1),(203,'2020-01-17','Teaser of sample article 194','John Doe',5,4,3),(204,'2019-11-21','Teaser of sample article 195','John Doe',3,4,4),(205,'2019-12-07','Teaser of sample article 196','Jane Doe',3,6,2),(206,'2020-10-04','Teaser of sample article 197','John Doe',3,6,2),(207,'2020-09-26','Teaser of sample article 198','Scrooge McDuck',3,6,4),(208,'2020-05-25','Teaser of sample article 199','Jane Doe',5,6,1),(209,'2019-11-05','Teaser of sample article 200','John Doe',3,6,2),(210,'2020-04-20','Teaser of sample article 201','Jane Doe',5,4,4),(211,'2020-01-08','Teaser of sample article 202','John Doe',5,6,1),(212,'2020-05-08','Teaser of sample article 203','Jane Doe',5,6,1),(213,'2020-03-18','Teaser of sample article 204','Scrooge McDuck',3,4,3); +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_ArticlePage_Versions` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_ArticlePage_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_ArticlePage_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `Date` date DEFAULT NULL, + `Teaser` mediumtext, + `ArticleAuthor` varchar(255) DEFAULT NULL, + `PhotoID` int(11) NOT NULL DEFAULT '0', + `BrochureID` int(11) NOT NULL DEFAULT '0', + `RegionID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `PhotoID` (`PhotoID`), + KEY `BrochureID` (`BrochureID`), + KEY `RegionID` (`RegionID`) +) ENGINE=InnoDB AUTO_INCREMENT=211 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_ArticlePage_Versions` +-- + +LOCK TABLES `SilverStripe_Example_ArticlePage_Versions` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage_Versions` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_ArticlePage_Versions` VALUES (1,10,7,'1776-07-04','Teaser of sample article 1','Manuel Thalmann',0,0,0),(2,11,7,'1840-02-06',NULL,'John Doe',0,0,0),(3,12,7,'2000-08-01',NULL,'Jane Doe',0,0,0),(4,10,8,'1776-07-04','Teaser of sample article 1','Manuel Thalmann',3,4,0),(5,10,9,'1776-07-04','Teaser of sample article 1','Manuel Thalmann',3,4,2),(6,11,8,'1840-02-06',NULL,'John Doe',5,6,0),(7,11,9,'1840-02-06',NULL,'John Doe',5,6,3),(8,12,8,'2000-08-01',NULL,'Jane Doe',7,8,0),(9,12,9,'2000-08-01',NULL,'Jane Doe',7,8,1),(10,13,1,'2019-10-18','Teaser of sample article 4','Scrooge McDuck',5,6,2),(11,14,1,'2019-10-18','Teaser of sample article 5','John Doe',3,6,3),(12,15,1,'2019-10-18','Teaser of sample article 6','Scrooge McDuck',3,6,4),(13,16,1,'2019-10-18','Teaser of sample article 7','Jane Doe',5,6,4),(14,17,1,'2019-10-18','Teaser of sample article 8','Jane Doe',3,6,2),(15,18,1,'2019-10-18','Teaser of sample article 9','Scrooge McDuck',5,4,1),(16,19,1,'2019-10-18','Teaser of sample article 10','Jane Doe',5,4,4),(17,20,1,'2019-10-18','Teaser of sample article 11','Jane Doe',5,6,4),(18,21,1,'2019-10-18','Teaser of sample article 12','John Doe',5,6,4),(19,22,1,'2019-10-18','Teaser of sample article 13','Scrooge McDuck',5,6,1),(20,23,1,'2019-10-18','Teaser of sample article 14','Jane Doe',5,4,4),(21,24,1,'2019-10-18','Teaser of sample article 15','Scrooge McDuck',3,4,3),(22,25,1,'2019-10-18','Teaser of sample article 16','Jane Doe',3,6,4),(23,26,1,'2019-10-18','Teaser of sample article 17','Jane Doe',3,4,4),(24,27,1,'2019-10-18','Teaser of sample article 18','Jane Doe',3,6,3),(25,28,1,'2019-10-18','Teaser of sample article 19','Jane Doe',5,4,1),(26,29,1,'2019-10-18','Teaser of sample article 20','Jane Doe',5,4,2),(27,30,1,'2019-10-18','Teaser of sample article 21','Jane Doe',3,4,1),(28,31,1,'2019-10-18','Teaser of sample article 22','Scrooge McDuck',3,4,2),(29,32,1,'2019-10-18','Teaser of sample article 23','Jane Doe',5,6,1),(30,33,1,'2019-10-18','Teaser of sample article 24','Scrooge McDuck',5,4,1),(31,34,1,'2019-10-18','Teaser of sample article 25','Scrooge McDuck',5,6,3),(32,35,1,'2019-10-18','Teaser of sample article 26','Scrooge McDuck',5,6,1),(33,36,1,'2019-10-18','Teaser of sample article 27','John Doe',5,4,3),(34,37,1,'2019-10-18','Teaser of sample article 28','Scrooge McDuck',5,4,2),(35,38,1,'2019-10-18','Teaser of sample article 29','Scrooge McDuck',3,6,2),(36,39,1,'2019-10-18','Teaser of sample article 30','John Doe',5,6,1),(37,40,1,'2019-10-18','Teaser of sample article 31','John Doe',5,6,4),(38,41,1,'2019-10-18','Teaser of sample article 32','Jane Doe',3,4,4),(39,42,1,'2019-10-18','Teaser of sample article 33','Jane Doe',5,4,1),(40,43,1,'2019-10-18','Teaser of sample article 34','Scrooge McDuck',3,6,3),(41,44,1,'2019-10-18','Teaser of sample article 35','Jane Doe',5,4,1),(42,45,1,'2019-10-18','Teaser of sample article 36','Scrooge McDuck',5,4,1),(43,46,1,'2019-10-18','Teaser of sample article 37','Jane Doe',3,6,3),(44,47,1,'2019-10-18','Teaser of sample article 38','Scrooge McDuck',3,6,4),(45,48,1,'2019-10-18','Teaser of sample article 39','Jane Doe',3,6,1),(46,49,1,'2019-10-18','Teaser of sample article 40','John Doe',3,6,4),(47,50,1,'2019-10-18','Teaser of sample article 41','Scrooge McDuck',3,4,3),(48,51,1,'2019-10-18','Teaser of sample article 42','Jane Doe',5,4,3),(49,52,1,'2019-10-18','Teaser of sample article 43','John Doe',3,4,1),(50,53,1,'2019-10-18','Teaser of sample article 44','John Doe',5,6,1),(51,54,1,'2019-10-18','Teaser of sample article 45','Jane Doe',5,6,1),(52,55,1,'2019-10-18','Teaser of sample article 46','Scrooge McDuck',3,4,1),(53,56,1,'2019-10-18','Teaser of sample article 47','Scrooge McDuck',5,6,3),(54,57,1,'2019-10-18','Teaser of sample article 48','Scrooge McDuck',3,6,1),(55,58,1,'2019-10-18','Teaser of sample article 49','Scrooge McDuck',5,4,2),(56,59,1,'2019-10-18','Teaser of sample article 50','John Doe',5,4,4),(57,60,1,'2019-10-18','Teaser of sample article 51','Jane Doe',3,6,2),(58,61,1,'2019-10-18','Teaser of sample article 52','John Doe',3,6,2),(59,62,1,'2019-10-18','Teaser of sample article 53','Jane Doe',5,4,3),(60,63,1,'2019-10-18','Teaser of sample article 54','Scrooge McDuck',5,6,1),(61,64,1,'2019-10-18','Teaser of sample article 55','John Doe',5,4,4),(62,65,1,'2019-10-18','Teaser of sample article 56','Scrooge McDuck',5,4,2),(63,66,1,'2019-10-18','Teaser of sample article 57','Jane Doe',5,6,2),(64,67,1,'2019-10-18','Teaser of sample article 58','John Doe',5,4,3),(65,68,1,'2019-10-18','Teaser of sample article 59','John Doe',3,4,3),(66,69,1,'2019-10-18','Teaser of sample article 60','Scrooge McDuck',5,4,1),(67,70,1,'2019-10-18','Teaser of sample article 61','John Doe',5,4,2),(68,71,1,'2019-10-18','Teaser of sample article 62','Jane Doe',5,6,3),(69,72,1,'2019-10-18','Teaser of sample article 63','Jane Doe',3,4,1),(70,73,1,'2019-10-18','Teaser of sample article 64','Scrooge McDuck',5,6,4),(71,74,1,'2019-10-18','Teaser of sample article 65','John Doe',3,4,3),(72,75,1,'2019-10-18','Teaser of sample article 66','Jane Doe',3,6,3),(73,76,1,'2019-10-18','Teaser of sample article 67','Scrooge McDuck',5,6,4),(74,77,1,'2019-10-18','Teaser of sample article 68','John Doe',3,6,3),(75,78,1,'2019-10-18','Teaser of sample article 69','Scrooge McDuck',5,6,4),(76,79,1,'2019-10-18','Teaser of sample article 70','Scrooge McDuck',3,4,1),(77,80,1,'2019-10-18','Teaser of sample article 71','Scrooge McDuck',5,6,1),(78,81,1,'2019-10-18','Teaser of sample article 72','Scrooge McDuck',3,4,2),(79,82,1,'2019-10-18','Teaser of sample article 73','Jane Doe',3,6,4),(80,83,1,'2019-10-18','Teaser of sample article 74','Jane Doe',5,4,3),(81,84,1,'2019-10-18','Teaser of sample article 75','Scrooge McDuck',5,6,1),(82,85,1,'2019-10-18','Teaser of sample article 76','John Doe',3,6,1),(83,86,1,'2019-10-18','Teaser of sample article 77','Jane Doe',3,6,3),(84,87,1,'2019-10-18','Teaser of sample article 78','Jane Doe',5,6,2),(85,88,1,'2019-10-18','Teaser of sample article 79','John Doe',3,4,2),(86,89,1,'2019-10-18','Teaser of sample article 80','Scrooge McDuck',3,6,1),(87,90,1,'2019-10-18','Teaser of sample article 81','John Doe',5,4,3),(88,91,1,'2019-10-18','Teaser of sample article 82','Scrooge McDuck',5,6,1),(89,92,1,'2019-10-18','Teaser of sample article 83','Jane Doe',3,6,1),(90,93,1,'2019-10-18','Teaser of sample article 84','Scrooge McDuck',5,4,3),(91,94,1,'2019-10-18','Teaser of sample article 85','Jane Doe',3,4,4),(92,95,1,'2019-10-18','Teaser of sample article 86','Scrooge McDuck',3,4,3),(93,96,1,'2019-10-18','Teaser of sample article 87','Jane Doe',3,4,3),(94,97,1,'2019-10-18','Teaser of sample article 88','John Doe',5,6,3),(95,98,1,'2019-10-18','Teaser of sample article 89','Scrooge McDuck',3,4,3),(96,99,1,'2019-10-18','Teaser of sample article 90','John Doe',3,6,2),(97,100,1,'2019-10-18','Teaser of sample article 91','Jane Doe',5,4,1),(98,101,1,'2019-10-18','Teaser of sample article 92','Jane Doe',5,4,2),(99,102,1,'2019-10-18','Teaser of sample article 93','Scrooge McDuck',3,4,4),(100,103,1,'2019-10-18','Teaser of sample article 94','Jane Doe',5,6,2),(101,104,1,'2019-10-18','Teaser of sample article 95','Scrooge McDuck',5,6,4),(102,105,1,'2019-10-18','Teaser of sample article 96','John Doe',5,6,4),(103,106,1,'2019-10-18','Teaser of sample article 97','Jane Doe',3,6,3),(104,107,1,'2019-10-18','Teaser of sample article 98','John Doe',5,4,3),(105,108,1,'2019-10-18','Teaser of sample article 99','Scrooge McDuck',3,4,4),(106,109,1,'2019-10-18','Teaser of sample article 100','John Doe',5,4,3),(107,110,1,'2019-10-18','Teaser of sample article 101','John Doe',5,6,2),(108,111,1,'2019-10-18','Teaser of sample article 102','John Doe',5,6,2),(109,112,1,'2019-10-18','Teaser of sample article 103','John Doe',3,4,4),(110,113,1,'2019-10-18','Teaser of sample article 104','Scrooge McDuck',3,6,3),(111,114,1,'2019-10-18','Teaser of sample article 105','Jane Doe',5,6,2),(112,115,1,'2019-10-18','Teaser of sample article 106','Jane Doe',5,4,4),(113,116,1,'2019-10-18','Teaser of sample article 107','Jane Doe',5,6,4),(114,117,1,'2019-10-18','Teaser of sample article 108','John Doe',3,6,3),(115,118,1,'2019-10-18','Teaser of sample article 109','Scrooge McDuck',3,4,3),(116,119,1,'2019-10-18','Teaser of sample article 110','Scrooge McDuck',5,4,4),(117,120,1,'2019-10-18','Teaser of sample article 111','Jane Doe',5,6,3),(118,121,1,'2019-10-18','Teaser of sample article 112','John Doe',3,6,1),(119,122,1,'2019-10-18','Teaser of sample article 113','Jane Doe',3,6,1),(120,123,1,'2019-10-18','Teaser of sample article 114','Scrooge McDuck',5,6,1),(121,124,1,'2019-10-18','Teaser of sample article 115','Scrooge McDuck',5,4,1),(122,125,1,'2019-10-18','Teaser of sample article 116','Jane Doe',3,4,4),(123,126,1,'2019-10-18','Teaser of sample article 117','Scrooge McDuck',5,4,4),(124,127,1,'2019-10-18','Teaser of sample article 118','John Doe',5,6,1),(125,128,1,'2019-10-18','Teaser of sample article 119','Scrooge McDuck',3,4,4),(126,129,1,'2019-10-18','Teaser of sample article 120','John Doe',5,6,4),(127,130,1,'2019-10-18','Teaser of sample article 121','John Doe',3,6,4),(128,131,1,'2019-10-18','Teaser of sample article 122','Jane Doe',5,6,4),(129,132,1,'2019-10-18','Teaser of sample article 123','John Doe',5,4,2),(130,133,1,'2019-10-18','Teaser of sample article 124','Jane Doe',5,4,3),(131,134,1,'2019-10-18','Teaser of sample article 125','Scrooge McDuck',3,6,1),(132,135,1,'2019-10-18','Teaser of sample article 126','Scrooge McDuck',3,6,1),(133,136,1,'2019-10-18','Teaser of sample article 127','John Doe',3,4,2),(134,137,1,'2019-10-18','Teaser of sample article 128','John Doe',3,4,2),(135,138,1,'2019-10-18','Teaser of sample article 129','Scrooge McDuck',3,6,1),(136,139,1,'2019-10-18','Teaser of sample article 130','John Doe',3,6,4),(137,140,1,'2019-10-18','Teaser of sample article 131','Scrooge McDuck',3,6,2),(138,141,1,'2019-10-18','Teaser of sample article 132','John Doe',5,6,4),(139,142,1,'2019-10-18','Teaser of sample article 133','Jane Doe',5,4,4),(140,143,1,'2019-10-18','Teaser of sample article 134','Jane Doe',3,4,2),(141,144,1,'2019-10-18','Teaser of sample article 135','John Doe',5,6,4),(142,145,1,'2019-10-18','Teaser of sample article 136','Scrooge McDuck',5,6,1),(143,146,1,'2019-10-18','Teaser of sample article 137','Scrooge McDuck',5,4,2),(144,147,1,'2019-10-18','Teaser of sample article 138','Scrooge McDuck',5,4,4),(145,148,1,'2019-10-18','Teaser of sample article 139','Scrooge McDuck',5,4,3),(146,149,1,'2019-10-18','Teaser of sample article 140','John Doe',3,6,1),(147,150,1,'2019-10-18','Teaser of sample article 141','Jane Doe',5,4,2),(148,151,1,'2019-10-18','Teaser of sample article 142','Jane Doe',5,4,2),(149,152,1,'2019-10-18','Teaser of sample article 143','Scrooge McDuck',5,6,3),(150,153,1,'2019-10-18','Teaser of sample article 144','Scrooge McDuck',5,4,4),(151,154,1,'2019-10-18','Teaser of sample article 145','Scrooge McDuck',5,4,3),(152,155,1,'2019-10-18','Teaser of sample article 146','Scrooge McDuck',3,4,1),(153,156,1,'2019-10-18','Teaser of sample article 147','Scrooge McDuck',3,4,4),(154,157,1,'2019-10-18','Teaser of sample article 148','John Doe',3,4,4),(155,158,1,'2019-10-18','Teaser of sample article 149','John Doe',5,6,2),(156,159,1,'2019-10-18','Teaser of sample article 150','John Doe',3,4,4),(157,160,1,'2019-10-18','Teaser of sample article 151','Scrooge McDuck',3,6,4),(158,161,1,'2019-10-18','Teaser of sample article 152','John Doe',5,6,1),(159,162,1,'2019-10-18','Teaser of sample article 153','Scrooge McDuck',5,4,1),(160,163,1,'2019-10-18','Teaser of sample article 154','Scrooge McDuck',3,6,1),(161,164,1,'2019-10-18','Teaser of sample article 155','Jane Doe',3,4,3),(162,165,1,'2019-10-18','Teaser of sample article 156','Scrooge McDuck',5,6,2),(163,166,1,'2019-10-18','Teaser of sample article 157','John Doe',3,4,1),(164,167,1,'2019-10-18','Teaser of sample article 158','John Doe',5,4,2),(165,168,1,'2019-10-18','Teaser of sample article 159','John Doe',3,6,4),(166,169,1,'2019-10-18','Teaser of sample article 160','Scrooge McDuck',5,6,2),(167,170,1,'2019-10-18','Teaser of sample article 161','Scrooge McDuck',5,4,4),(168,171,1,'2019-10-18','Teaser of sample article 162','Jane Doe',5,6,4),(169,172,1,'2019-10-18','Teaser of sample article 163','Jane Doe',3,6,2),(170,173,1,'2019-10-18','Teaser of sample article 164','John Doe',3,4,2),(171,174,1,'2019-10-18','Teaser of sample article 165','Jane Doe',3,4,4),(172,175,1,'2019-10-18','Teaser of sample article 166','Jane Doe',5,6,3),(173,176,1,'2019-10-18','Teaser of sample article 167','Jane Doe',5,6,4),(174,177,1,'2019-10-18','Teaser of sample article 168','Jane Doe',3,6,3),(175,178,1,'2019-10-18','Teaser of sample article 169','Jane Doe',3,4,3),(176,179,1,'2019-10-18','Teaser of sample article 170','Jane Doe',5,6,3),(177,180,1,'2019-10-18','Teaser of sample article 171','John Doe',3,4,4),(178,181,1,'2019-10-18','Teaser of sample article 172','Jane Doe',3,4,4),(179,182,1,'2019-10-18','Teaser of sample article 173','Scrooge McDuck',3,6,3),(180,183,1,'2019-10-18','Teaser of sample article 174','Jane Doe',5,4,2),(181,184,1,'2019-10-18','Teaser of sample article 175','Scrooge McDuck',3,4,2),(182,185,1,'2019-10-18','Teaser of sample article 176','Jane Doe',3,4,1),(183,186,1,'2019-10-18','Teaser of sample article 177','John Doe',3,6,1),(184,187,1,'2019-10-18','Teaser of sample article 178','Scrooge McDuck',5,4,2),(185,188,1,'2019-10-18','Teaser of sample article 179','Jane Doe',5,4,1),(186,189,1,'2019-10-18','Teaser of sample article 180','Scrooge McDuck',3,4,1),(187,190,1,'2019-10-18','Teaser of sample article 181','Jane Doe',5,4,3),(188,191,1,'2019-10-18','Teaser of sample article 182','Jane Doe',5,6,3),(189,192,1,'2019-10-18','Teaser of sample article 183','Jane Doe',3,4,3),(190,193,1,'2019-10-18','Teaser of sample article 184','Jane Doe',3,4,4),(191,194,1,'2019-10-18','Teaser of sample article 185','John Doe',5,6,1),(192,195,1,'2019-10-18','Teaser of sample article 186','Scrooge McDuck',3,6,1),(193,196,1,'2019-10-18','Teaser of sample article 187','Scrooge McDuck',3,4,2),(194,197,1,'2019-10-18','Teaser of sample article 188','Jane Doe',5,4,2),(195,198,1,'2019-10-18','Teaser of sample article 189','Jane Doe',3,4,3),(196,199,1,'2019-10-18','Teaser of sample article 190','John Doe',3,4,4),(197,200,1,'2019-10-18','Teaser of sample article 191','John Doe',3,4,2),(198,201,1,'2019-10-18','Teaser of sample article 192','John Doe',5,6,1),(199,202,1,'2019-10-18','Teaser of sample article 193','Scrooge McDuck',5,6,1),(200,203,1,'2019-10-18','Teaser of sample article 194','John Doe',5,4,3),(201,204,1,'2019-10-18','Teaser of sample article 195','John Doe',3,4,4),(202,205,1,'2019-10-18','Teaser of sample article 196','Jane Doe',3,6,2),(203,206,1,'2019-10-18','Teaser of sample article 197','John Doe',3,6,2),(204,207,1,'2019-10-18','Teaser of sample article 198','Scrooge McDuck',3,6,4),(205,208,1,'2019-10-18','Teaser of sample article 199','Jane Doe',5,6,1),(206,209,1,'2019-10-18','Teaser of sample article 200','John Doe',3,6,2),(207,210,1,'2019-10-18','Teaser of sample article 201','Jane Doe',5,4,4),(208,211,1,'2019-10-18','Teaser of sample article 202','John Doe',5,6,1),(209,212,1,'2019-10-18','Teaser of sample article 203','Jane Doe',5,6,1),(210,213,1,'2019-10-18','Teaser of sample article 204','Scrooge McDuck',3,4,3); +/*!40000 ALTER TABLE `SilverStripe_Example_ArticlePage_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_Property` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_Property`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_Property` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Example\\Property') DEFAULT 'SilverStripe\\Example\\Property', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Version` int(11) NOT NULL DEFAULT '0', + `Title` varchar(255) DEFAULT NULL, + `PricePerNight` decimal(9,2) NOT NULL DEFAULT '0.00', + `Bedrooms` int(11) NOT NULL DEFAULT '0', + `Bathrooms` int(11) NOT NULL DEFAULT '0', + `FeaturedOnHomepage` tinyint(1) unsigned NOT NULL DEFAULT '0', + `RegionID` int(11) NOT NULL DEFAULT '0', + `PrimaryPhotoID` int(11) NOT NULL DEFAULT '0', + `AvailableStart` date DEFAULT NULL, + `AvailableEnd` date DEFAULT NULL, + `Description` mediumtext, + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `RegionID` (`RegionID`), + KEY `PrimaryPhotoID` (`PrimaryPhotoID`) +) ENGINE=InnoDB AUTO_INCREMENT=208 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_Property` +-- + +LOCK TABLES `SilverStripe_Example_Property` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_Property` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_Property` VALUES (1,'SilverStripe\\Example\\Property','2019-10-17 22:05:17','2019-10-17 22:04:30',4,'Luxury Apartment with great views',950.00,4,3,1,4,15,'2019-10-31','2019-11-05',NULL),(2,'SilverStripe\\Example\\Property','2019-10-17 22:06:26','2019-10-17 22:06:25',2,'Stunning Villa with 5 bedrooms',1300.00,5,2,1,1,16,'2020-04-20','2020-05-02',NULL),(3,'SilverStripe\\Example\\Property','2019-10-17 22:08:41','2019-10-17 22:08:41',2,'Recent construction with 3 bedrooms',560.00,3,2,1,2,17,'2020-03-19','2020-03-24',NULL),(4,'SilverStripe\\Example\\Property','2019-10-17 22:10:18','2019-10-17 22:10:18',2,'Modern construction with parking space',85.00,1,2,1,1,18,'2020-05-19','2020-05-21',NULL),(5,'SilverStripe\\Example\\Property','2019-10-17 22:11:40','2019-10-17 22:11:40',2,'Single Family Townhouse',840.00,2,2,1,4,19,'2020-06-19','2020-06-29',NULL),(6,'SilverStripe\\Example\\Property','2019-10-17 22:12:42','2019-10-17 22:12:41',2,'3 bedroom villa with garage for rent',150.00,3,2,1,2,20,'2020-05-23','2020-05-27',NULL),(7,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 1',667.00,3,5,0,3,16,'2020-10-06','2020-10-08','Description of Property 1'),(8,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 2',1546.21,7,8,0,1,15,'2019-11-12','2019-11-13','Description of Property 2'),(9,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 3',878.08,1,3,0,1,15,'2020-03-22','2020-04-04','Description of Property 3'),(10,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 4',2395.03,8,7,0,1,16,'2020-09-25','2020-10-01','Description of Property 4'),(11,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 5',946.38,6,9,0,1,19,'2020-03-16','2020-03-21','Description of Property 5'),(12,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 6',117.81,4,9,0,2,15,'2020-01-15','2020-01-22','Description of Property 6'),(13,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 7',253.87,3,2,0,1,18,'2020-10-12','2020-10-19','Description of Property 7'),(14,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 8',1081.98,6,3,0,1,18,'2019-12-29','2019-12-30','Description of Property 8'),(15,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 9',636.44,2,4,0,1,18,'2019-10-31','2019-11-13','Description of Property 9'),(16,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 10',673.15,8,6,0,2,16,'2020-05-20','2020-05-24','Description of Property 10'),(17,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 11',836.15,6,4,0,1,15,'2020-08-19','2020-08-31','Description of Property 11'),(18,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 12',2252.69,2,5,0,3,16,'2020-03-23','2020-03-27','Description of Property 12'),(19,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 13',1776.53,1,6,0,1,15,'2020-06-06','2020-06-18','Description of Property 13'),(20,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 14',2476.61,6,4,0,1,17,'2020-09-06','2020-09-16','Description of Property 14'),(21,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 15',310.61,9,6,0,1,17,'2020-04-30','2020-05-11','Description of Property 15'),(22,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 16',1281.25,7,4,0,3,18,'2019-10-20','2019-11-02','Description of Property 16'),(23,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 17',515.03,9,1,0,3,16,'2020-03-21','2020-03-24','Description of Property 17'),(24,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 18',320.58,7,4,0,3,17,'2019-11-26','2019-12-02','Description of Property 18'),(25,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 19',2955.35,2,8,0,3,17,'2020-01-24','2020-01-30','Description of Property 19'),(26,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 20',1193.11,2,8,0,2,18,'2019-10-24','2019-11-06','Description of Property 20'),(27,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 21',737.39,3,7,0,3,17,'2020-01-31','2020-02-07','Description of Property 21'),(28,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 22',1622.97,1,5,0,1,19,'2020-03-07','2020-03-15','Description of Property 22'),(29,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 23',2598.97,5,1,0,3,17,'2019-11-12','2019-11-17','Description of Property 23'),(30,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 24',2744.15,3,8,0,2,16,'2019-12-27','2019-12-31','Description of Property 24'),(31,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 25',375.14,8,7,0,2,18,'2020-07-17','2020-07-21','Description of Property 25'),(32,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 26',1950.27,8,4,0,2,16,'2019-12-19','2019-12-28','Description of Property 26'),(33,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 27',1092.07,6,8,0,2,17,'2020-05-26','2020-05-30','Description of Property 27'),(34,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 28',1531.26,1,9,0,2,18,'2020-04-27','2020-05-06','Description of Property 28'),(35,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 29',2393.47,9,5,0,3,19,'2020-08-09','2020-08-13','Description of Property 29'),(36,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 30',2173.80,7,3,0,1,16,'2020-04-08','2020-04-15','Description of Property 30'),(37,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 31',2586.52,4,4,0,3,18,'2020-09-27','2020-10-06','Description of Property 31'),(38,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 32',983.70,6,1,0,2,19,'2020-02-05','2020-02-16','Description of Property 32'),(39,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 33',2727.60,1,8,0,3,19,'2020-06-20','2020-07-03','Description of Property 33'),(40,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 34',2676.68,5,8,0,3,19,'2020-04-07','2020-04-14','Description of Property 34'),(41,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 35',2341.94,9,5,0,2,18,'2020-02-17','2020-02-28','Description of Property 35'),(42,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 36',1834.75,7,6,0,3,19,'2020-01-21','2020-01-24','Description of Property 36'),(43,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 37',1760.48,3,6,0,1,18,'2020-02-03','2020-02-03','Description of Property 37'),(44,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 38',713.86,3,6,0,1,15,'2020-06-30','2020-07-06','Description of Property 38'),(45,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 39',149.80,8,1,0,3,15,'2020-06-02','2020-06-03','Description of Property 39'),(46,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 40',689.87,6,2,0,1,18,'2019-10-27','2019-10-28','Description of Property 40'),(47,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 41',2163.68,5,3,0,1,18,'2020-01-15','2020-01-18','Description of Property 41'),(48,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 42',439.52,5,3,0,3,16,'2019-12-10','2019-12-22','Description of Property 42'),(49,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 43',1962.85,6,9,0,1,19,'2020-10-14','2020-10-22','Description of Property 43'),(50,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 44',1044.64,7,7,0,1,15,'2020-04-30','2020-05-07','Description of Property 44'),(51,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 45',2274.86,5,3,0,3,18,'2020-06-29','2020-07-11','Description of Property 45'),(52,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 46',1527.69,4,4,0,3,16,'2020-09-07','2020-09-16','Description of Property 46'),(53,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 47',1754.13,9,8,0,2,19,'2020-02-25','2020-03-05','Description of Property 47'),(54,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 48',1060.28,8,9,0,2,16,'2019-11-27','2019-11-30','Description of Property 48'),(55,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 49',2308.00,2,8,0,1,19,'2020-04-09','2020-04-15','Description of Property 49'),(56,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 50',2351.90,2,6,0,2,16,'2019-11-11','2019-11-19','Description of Property 50'),(57,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 51',2858.93,1,5,0,1,17,'2020-09-08','2020-09-14','Description of Property 51'),(58,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 52',2560.13,8,5,0,1,17,'2020-01-24','2020-01-31','Description of Property 52'),(59,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 53',2066.30,1,1,0,1,16,'2020-06-18','2020-06-24','Description of Property 53'),(60,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 54',1176.22,2,6,0,2,19,'2020-04-29','2020-05-05','Description of Property 54'),(61,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 55',120.63,3,5,0,3,15,'2020-06-15','2020-06-15','Description of Property 55'),(62,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 56',1653.06,2,5,0,3,15,'2020-07-04','2020-07-15','Description of Property 56'),(63,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 57',2143.82,1,9,0,3,17,'2020-05-15','2020-05-28','Description of Property 57'),(64,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 58',2590.59,7,3,0,1,16,'2020-07-16','2020-07-22','Description of Property 58'),(65,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 59',2475.92,9,3,0,2,18,'2019-10-20','2019-10-25','Description of Property 59'),(66,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 60',2060.85,5,6,0,2,15,'2020-08-01','2020-08-09','Description of Property 60'),(67,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 61',1800.54,5,8,0,2,18,'2020-09-24','2020-10-07','Description of Property 61'),(68,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 62',1906.72,8,1,0,3,15,'2020-02-08','2020-02-20','Description of Property 62'),(69,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 63',535.75,4,4,0,1,18,'2020-07-16','2020-07-22','Description of Property 63'),(70,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 64',2805.08,3,5,0,3,15,'2020-08-03','2020-08-12','Description of Property 64'),(71,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 65',1608.92,4,5,0,2,16,'2020-07-13','2020-07-26','Description of Property 65'),(72,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 66',1577.04,6,4,0,1,16,'2020-02-06','2020-02-17','Description of Property 66'),(73,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 67',364.00,7,4,0,3,16,'2020-02-11','2020-02-13','Description of Property 67'),(74,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 68',675.22,3,9,0,3,18,'2020-06-19','2020-06-26','Description of Property 68'),(75,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 69',2252.53,4,7,0,2,18,'2020-03-15','2020-03-17','Description of Property 69'),(76,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 70',2298.35,7,1,0,2,15,'2019-10-28','2019-11-01','Description of Property 70'),(77,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 71',2256.38,6,1,0,1,18,'2020-09-15','2020-09-16','Description of Property 71'),(78,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 72',2963.54,8,4,0,2,19,'2020-04-13','2020-04-20','Description of Property 72'),(79,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 73',123.85,6,7,0,3,18,'2020-06-30','2020-07-06','Description of Property 73'),(80,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 74',2792.89,3,7,0,2,16,'2019-11-05','2019-11-13','Description of Property 74'),(81,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 75',1112.38,7,6,0,3,19,'2019-12-07','2019-12-16','Description of Property 75'),(82,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 76',793.31,6,3,0,2,15,'2020-05-03','2020-05-11','Description of Property 76'),(83,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 77',472.04,6,6,0,1,18,'2020-02-04','2020-02-17','Description of Property 77'),(84,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 78',2382.91,7,1,0,1,18,'2020-08-30','2020-08-31','Description of Property 78'),(85,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 79',2085.97,6,7,0,1,17,'2020-04-01','2020-04-09','Description of Property 79'),(86,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 80',2463.43,7,2,0,2,17,'2020-06-17','2020-06-28','Description of Property 80'),(87,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 81',62.65,3,6,0,1,15,'2020-10-06','2020-10-09','Description of Property 81'),(88,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 82',1603.42,6,4,0,3,19,'2020-08-24','2020-09-04','Description of Property 82'),(89,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 83',2018.65,5,7,0,3,17,'2020-02-22','2020-02-24','Description of Property 83'),(90,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 84',1124.42,6,7,0,1,15,'2019-12-25','2019-12-31','Description of Property 84'),(91,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 85',194.31,1,4,0,2,18,'2020-09-08','2020-09-21','Description of Property 85'),(92,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 86',1977.84,3,4,0,1,18,'2020-09-15','2020-09-17','Description of Property 86'),(93,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 87',146.59,1,9,0,3,15,'2020-09-03','2020-09-04','Description of Property 87'),(94,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 88',1505.42,9,9,0,1,15,'2020-06-16','2020-06-17','Description of Property 88'),(95,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 89',2276.26,6,5,0,1,18,'2020-06-23','2020-06-23','Description of Property 89'),(96,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 90',762.21,2,9,0,2,15,'2020-03-20','2020-04-01','Description of Property 90'),(97,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 91',2178.51,1,9,0,2,16,'2019-11-11','2019-11-15','Description of Property 91'),(98,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 92',1790.53,1,6,0,3,18,'2019-11-09','2019-11-10','Description of Property 92'),(99,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 93',2809.85,4,4,0,3,16,'2019-11-25','2019-12-01','Description of Property 93'),(100,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 94',1681.36,7,1,0,1,18,'2020-02-21','2020-03-05','Description of Property 94'),(101,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 95',1065.05,3,6,0,1,16,'2020-03-17','2020-03-24','Description of Property 95'),(102,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 96',473.87,1,7,0,2,19,'2019-10-29','2019-11-07','Description of Property 96'),(103,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 97',1001.78,9,5,0,1,18,'2020-09-17','2020-09-30','Description of Property 97'),(104,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 98',2925.24,9,9,0,1,15,'2020-04-17','2020-04-25','Description of Property 98'),(105,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 99',699.71,9,2,0,3,19,'2020-07-16','2020-07-18','Description of Property 99'),(106,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 100',83.79,3,3,0,3,19,'2020-01-11','2020-01-11','Description of Property 100'),(107,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 101',1157.07,1,2,0,2,19,'2020-09-19','2020-09-26','Description of Property 101'),(108,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 102',2269.39,4,4,0,1,15,'2020-09-17','2020-09-27','Description of Property 102'),(109,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 103',1526.34,1,8,0,3,17,'2020-08-14','2020-08-16','Description of Property 103'),(110,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 104',1093.33,2,7,0,3,17,'2020-03-02','2020-03-08','Description of Property 104'),(111,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 105',205.36,6,7,0,1,16,'2020-03-08','2020-03-18','Description of Property 105'),(112,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 106',2228.55,1,1,0,1,19,'2020-08-18','2020-08-24','Description of Property 106'),(113,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 107',1459.84,9,2,0,1,15,'2019-10-20','2019-11-01','Description of Property 107'),(114,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 108',1420.86,8,5,0,1,17,'2020-04-26','2020-04-30','Description of Property 108'),(115,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 109',922.84,7,6,0,3,15,'2020-05-23','2020-06-01','Description of Property 109'),(116,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 110',1522.80,1,5,0,2,16,'2020-03-19','2020-03-27','Description of Property 110'),(117,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 111',1531.11,8,6,0,2,15,'2020-02-09','2020-02-09','Description of Property 111'),(118,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 112',751.21,1,4,0,3,18,'2020-02-06','2020-02-09','Description of Property 112'),(119,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 113',1820.12,8,5,0,3,18,'2020-05-18','2020-05-20','Description of Property 113'),(120,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 114',935.14,2,2,0,3,17,'2019-10-21','2019-10-23','Description of Property 114'),(121,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 115',2294.24,2,6,0,3,17,'2020-02-03','2020-02-07','Description of Property 115'),(122,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 116',667.32,7,8,0,1,18,'2020-04-01','2020-04-02','Description of Property 116'),(123,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 117',2390.08,8,6,0,3,16,'2020-03-08','2020-03-16','Description of Property 117'),(124,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 118',607.23,8,8,0,2,16,'2020-05-17','2020-05-26','Description of Property 118'),(125,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 119',2582.13,2,2,0,1,18,'2020-07-14','2020-07-20','Description of Property 119'),(126,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 120',537.25,5,1,0,2,16,'2020-10-01','2020-10-06','Description of Property 120'),(127,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 121',191.27,6,9,0,3,17,'2020-05-11','2020-05-19','Description of Property 121'),(128,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 122',1520.93,3,8,0,2,15,'2020-09-29','2020-10-09','Description of Property 122'),(129,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 123',2489.08,8,8,0,2,17,'2019-11-12','2019-11-25','Description of Property 123'),(130,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 124',1159.35,6,8,0,2,15,'2020-04-13','2020-04-19','Description of Property 124'),(131,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 125',2296.15,6,6,0,2,18,'2020-01-12','2020-01-18','Description of Property 125'),(132,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 126',2095.65,5,4,0,3,15,'2020-07-04','2020-07-04','Description of Property 126'),(133,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 127',2424.20,5,9,0,2,15,'2020-08-25','2020-09-05','Description of Property 127'),(134,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 128',1804.49,5,6,0,2,16,'2019-12-08','2019-12-08','Description of Property 128'),(135,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 129',2036.93,2,1,0,2,19,'2019-12-08','2019-12-17','Description of Property 129'),(136,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 130',2826.49,8,3,0,3,17,'2020-01-27','2020-01-28','Description of Property 130'),(137,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 131',1752.25,6,4,0,1,19,'2020-10-05','2020-10-13','Description of Property 131'),(138,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 132',1279.80,6,9,0,3,19,'2019-10-21','2019-11-01','Description of Property 132'),(139,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 133',2061.00,6,2,0,1,17,'2019-12-07','2019-12-09','Description of Property 133'),(140,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 134',631.80,6,7,0,3,16,'2020-06-18','2020-06-26','Description of Property 134'),(141,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 135',776.36,4,4,0,3,17,'2020-09-22','2020-09-26','Description of Property 135'),(142,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 136',798.37,8,2,0,2,16,'2020-06-12','2020-06-23','Description of Property 136'),(143,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 137',1090.77,9,7,0,2,19,'2020-04-05','2020-04-05','Description of Property 137'),(144,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 138',2239.12,9,7,0,3,18,'2020-03-02','2020-03-13','Description of Property 138'),(145,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 139',2491.13,3,7,0,3,15,'2020-04-07','2020-04-20','Description of Property 139'),(146,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 140',767.49,7,8,0,1,19,'2020-01-15','2020-01-21','Description of Property 140'),(147,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 141',1998.40,3,5,0,3,17,'2020-08-06','2020-08-10','Description of Property 141'),(148,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 142',334.85,9,3,0,3,16,'2020-01-30','2020-01-31','Description of Property 142'),(149,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 143',2789.37,7,9,0,2,18,'2019-10-23','2019-11-03','Description of Property 143'),(150,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 144',700.76,8,5,0,3,15,'2020-01-06','2020-01-14','Description of Property 144'),(151,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 145',2204.23,4,7,0,2,17,'2019-11-07','2019-11-17','Description of Property 145'),(152,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 146',1550.04,3,9,0,3,15,'2020-05-31','2020-06-11','Description of Property 146'),(153,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 147',1738.33,3,7,0,2,18,'2020-09-22','2020-09-22','Description of Property 147'),(154,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 148',1826.36,1,6,0,3,15,'2020-08-08','2020-08-14','Description of Property 148'),(155,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 149',360.36,5,1,0,3,18,'2020-01-15','2020-01-19','Description of Property 149'),(156,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 150',2578.70,4,6,0,3,15,'2020-08-03','2020-08-04','Description of Property 150'),(157,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 151',2367.26,8,9,0,1,19,'2020-01-15','2020-01-23','Description of Property 151'),(158,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 152',1041.06,8,9,0,1,17,'2020-08-17','2020-08-25','Description of Property 152'),(159,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 153',1972.54,8,2,0,1,19,'2020-03-28','2020-03-31','Description of Property 153'),(160,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 154',1923.36,5,7,0,3,16,'2020-07-04','2020-07-10','Description of Property 154'),(161,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 155',979.51,4,9,0,2,15,'2020-01-13','2020-01-21','Description of Property 155'),(162,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 156',1353.29,2,3,0,3,19,'2019-11-09','2019-11-16','Description of Property 156'),(163,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 157',285.47,4,9,0,1,19,'2020-05-16','2020-05-16','Description of Property 157'),(164,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 158',1170.17,3,3,0,2,15,'2020-07-07','2020-07-14','Description of Property 158'),(165,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 159',2084.89,9,7,0,3,16,'2020-08-29','2020-09-04','Description of Property 159'),(166,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 160',555.38,2,2,0,2,16,'2019-12-19','2019-12-29','Description of Property 160'),(167,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 161',255.76,3,9,0,1,16,'2020-01-17','2020-01-21','Description of Property 161'),(168,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 162',783.58,5,6,0,2,18,'2020-07-16','2020-07-20','Description of Property 162'),(169,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 163',2536.56,3,7,0,3,17,'2020-10-10','2020-10-18','Description of Property 163'),(170,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 164',2569.93,6,6,0,1,16,'2020-06-19','2020-06-20','Description of Property 164'),(171,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 165',459.78,5,3,0,3,19,'2020-03-16','2020-03-27','Description of Property 165'),(172,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 166',977.08,1,3,0,2,17,'2019-11-04','2019-11-15','Description of Property 166'),(173,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 167',2371.09,6,5,0,1,17,'2019-10-18','2019-10-27','Description of Property 167'),(174,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 168',572.60,5,2,0,1,17,'2020-08-26','2020-09-07','Description of Property 168'),(175,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 169',367.42,9,2,0,1,16,'2020-02-02','2020-02-06','Description of Property 169'),(176,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 170',2001.36,6,3,0,2,15,'2020-09-09','2020-09-09','Description of Property 170'),(177,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 171',1620.67,3,6,0,2,19,'2020-05-24','2020-05-28','Description of Property 171'),(178,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 172',1809.36,2,2,0,1,19,'2020-02-10','2020-02-15','Description of Property 172'),(179,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 173',937.70,8,3,0,3,17,'2020-07-27','2020-08-08','Description of Property 173'),(180,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 174',2789.17,2,8,0,3,19,'2020-09-21','2020-09-24','Description of Property 174'),(181,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 175',1413.95,8,9,0,1,16,'2020-02-14','2020-02-23','Description of Property 175'),(182,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 176',1059.94,9,5,0,2,18,'2020-08-21','2020-08-28','Description of Property 176'),(183,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 177',1871.04,1,2,0,3,15,'2020-01-17','2020-01-28','Description of Property 177'),(184,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 178',1020.46,6,1,0,1,15,'2020-07-02','2020-07-06','Description of Property 178'),(185,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 179',713.72,5,1,0,3,18,'2020-08-02','2020-08-06','Description of Property 179'),(186,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 180',2766.74,6,4,0,1,15,'2020-08-18','2020-08-26','Description of Property 180'),(187,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 181',2110.76,2,7,0,3,18,'2020-08-08','2020-08-09','Description of Property 181'),(188,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 182',1803.61,9,7,0,1,16,'2020-04-29','2020-05-08','Description of Property 182'),(189,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 183',215.79,4,1,0,3,17,'2020-01-11','2020-01-11','Description of Property 183'),(190,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 184',1355.45,7,1,0,2,18,'2020-05-15','2020-05-16','Description of Property 184'),(191,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 185',250.04,4,8,0,1,19,'2019-12-22','2019-12-27','Description of Property 185'),(192,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 186',1482.85,5,2,0,1,19,'2019-12-19','2019-12-28','Description of Property 186'),(193,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 187',2839.60,8,3,0,3,18,'2020-02-08','2020-02-11','Description of Property 187'),(194,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 188',2332.38,7,6,0,2,18,'2019-11-02','2019-11-04','Description of Property 188'),(195,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 189',1239.24,7,2,0,3,16,'2020-01-27','2020-01-28','Description of Property 189'),(196,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 190',1863.32,2,8,0,2,17,'2020-01-24','2020-01-26','Description of Property 190'),(197,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 191',2106.41,1,1,0,2,19,'2020-04-20','2020-04-25','Description of Property 191'),(198,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 192',2525.16,7,1,0,1,17,'2020-07-11','2020-07-17','Description of Property 192'),(199,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 193',608.31,4,4,0,2,15,'2019-12-07','2019-12-08','Description of Property 193'),(200,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 194',847.92,3,6,0,1,18,'2020-04-15','2020-04-16','Description of Property 194'),(201,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 195',2905.09,9,7,0,3,16,'2019-11-08','2019-11-11','Description of Property 195'),(202,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 196',2466.27,9,4,0,3,17,'2020-08-10','2020-08-21','Description of Property 196'),(203,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 197',2862.72,2,7,0,2,19,'2020-09-09','2020-09-14','Description of Property 197'),(204,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 198',1008.28,8,2,0,2,16,'2019-11-03','2019-11-10','Description of Property 198'),(205,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 199',1378.48,3,3,0,2,16,'2020-04-28','2020-05-06','Description of Property 199'),(206,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 200',952.14,6,9,0,3,17,'2020-04-22','2020-04-28','Description of Property 200'),(207,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 201',1927.61,9,6,0,2,18,'2020-10-10','2020-10-14','Description of Property 201'); +/*!40000 ALTER TABLE `SilverStripe_Example_Property` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_Property_Live` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_Property_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_Property_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Example\\Property') DEFAULT 'SilverStripe\\Example\\Property', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Version` int(11) NOT NULL DEFAULT '0', + `Title` varchar(255) DEFAULT NULL, + `PricePerNight` decimal(9,2) NOT NULL DEFAULT '0.00', + `Bedrooms` int(11) NOT NULL DEFAULT '0', + `Bathrooms` int(11) NOT NULL DEFAULT '0', + `FeaturedOnHomepage` tinyint(1) unsigned NOT NULL DEFAULT '0', + `RegionID` int(11) NOT NULL DEFAULT '0', + `PrimaryPhotoID` int(11) NOT NULL DEFAULT '0', + `AvailableStart` date DEFAULT NULL, + `AvailableEnd` date DEFAULT NULL, + `Description` mediumtext, + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `RegionID` (`RegionID`), + KEY `PrimaryPhotoID` (`PrimaryPhotoID`) +) ENGINE=InnoDB AUTO_INCREMENT=208 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_Property_Live` +-- + +LOCK TABLES `SilverStripe_Example_Property_Live` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_Property_Live` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_Property_Live` VALUES (1,'SilverStripe\\Example\\Property','2019-10-17 22:05:17','2019-10-17 22:04:30',4,'Luxury Apartment with great views',950.00,4,3,1,4,15,'2019-10-31','2019-11-05',NULL),(2,'SilverStripe\\Example\\Property','2019-10-17 22:06:26','2019-10-17 22:06:25',2,'Stunning Villa with 5 bedrooms',1300.00,5,2,1,1,16,'2020-04-20','2020-05-02',NULL),(3,'SilverStripe\\Example\\Property','2019-10-17 22:08:41','2019-10-17 22:08:41',2,'Recent construction with 3 bedrooms',560.00,3,2,1,2,17,'2020-03-19','2020-03-24',NULL),(4,'SilverStripe\\Example\\Property','2019-10-17 22:10:18','2019-10-17 22:10:18',2,'Modern construction with parking space',85.00,1,2,1,1,18,'2020-05-19','2020-05-21',NULL),(5,'SilverStripe\\Example\\Property','2019-10-17 22:11:40','2019-10-17 22:11:40',2,'Single Family Townhouse',840.00,2,2,1,4,19,'2020-06-19','2020-06-29',NULL),(6,'SilverStripe\\Example\\Property','2019-10-17 22:12:42','2019-10-17 22:12:41',2,'3 bedroom villa with garage for rent',150.00,3,2,1,2,20,'2020-05-23','2020-05-27',NULL),(7,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 1',667.00,3,5,0,3,16,'2020-10-06','2020-10-08','Description of Property 1'),(8,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 2',1546.21,7,8,0,1,15,'2019-11-12','2019-11-13','Description of Property 2'),(9,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 3',878.08,1,3,0,1,15,'2020-03-22','2020-04-04','Description of Property 3'),(10,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 4',2395.03,8,7,0,1,16,'2020-09-25','2020-10-01','Description of Property 4'),(11,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 5',946.38,6,9,0,1,19,'2020-03-16','2020-03-21','Description of Property 5'),(12,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 6',117.81,4,9,0,2,15,'2020-01-15','2020-01-22','Description of Property 6'),(13,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 7',253.87,3,2,0,1,18,'2020-10-12','2020-10-19','Description of Property 7'),(14,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 8',1081.98,6,3,0,1,18,'2019-12-29','2019-12-30','Description of Property 8'),(15,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 9',636.44,2,4,0,1,18,'2019-10-31','2019-11-13','Description of Property 9'),(16,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 10',673.15,8,6,0,2,16,'2020-05-20','2020-05-24','Description of Property 10'),(17,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 11',836.15,6,4,0,1,15,'2020-08-19','2020-08-31','Description of Property 11'),(18,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 12',2252.69,2,5,0,3,16,'2020-03-23','2020-03-27','Description of Property 12'),(19,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 13',1776.53,1,6,0,1,15,'2020-06-06','2020-06-18','Description of Property 13'),(20,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 14',2476.61,6,4,0,1,17,'2020-09-06','2020-09-16','Description of Property 14'),(21,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 15',310.61,9,6,0,1,17,'2020-04-30','2020-05-11','Description of Property 15'),(22,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 16',1281.25,7,4,0,3,18,'2019-10-20','2019-11-02','Description of Property 16'),(23,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 17',515.03,9,1,0,3,16,'2020-03-21','2020-03-24','Description of Property 17'),(24,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 18',320.58,7,4,0,3,17,'2019-11-26','2019-12-02','Description of Property 18'),(25,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 19',2955.35,2,8,0,3,17,'2020-01-24','2020-01-30','Description of Property 19'),(26,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 20',1193.11,2,8,0,2,18,'2019-10-24','2019-11-06','Description of Property 20'),(27,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 21',737.39,3,7,0,3,17,'2020-01-31','2020-02-07','Description of Property 21'),(28,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 22',1622.97,1,5,0,1,19,'2020-03-07','2020-03-15','Description of Property 22'),(29,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 23',2598.97,5,1,0,3,17,'2019-11-12','2019-11-17','Description of Property 23'),(30,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 24',2744.15,3,8,0,2,16,'2019-12-27','2019-12-31','Description of Property 24'),(31,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 25',375.14,8,7,0,2,18,'2020-07-17','2020-07-21','Description of Property 25'),(32,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 26',1950.27,8,4,0,2,16,'2019-12-19','2019-12-28','Description of Property 26'),(33,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 27',1092.07,6,8,0,2,17,'2020-05-26','2020-05-30','Description of Property 27'),(34,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 28',1531.26,1,9,0,2,18,'2020-04-27','2020-05-06','Description of Property 28'),(35,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 29',2393.47,9,5,0,3,19,'2020-08-09','2020-08-13','Description of Property 29'),(36,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 30',2173.80,7,3,0,1,16,'2020-04-08','2020-04-15','Description of Property 30'),(37,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 31',2586.52,4,4,0,3,18,'2020-09-27','2020-10-06','Description of Property 31'),(38,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 32',983.70,6,1,0,2,19,'2020-02-05','2020-02-16','Description of Property 32'),(39,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 33',2727.60,1,8,0,3,19,'2020-06-20','2020-07-03','Description of Property 33'),(40,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 34',2676.68,5,8,0,3,19,'2020-04-07','2020-04-14','Description of Property 34'),(41,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 35',2341.94,9,5,0,2,18,'2020-02-17','2020-02-28','Description of Property 35'),(42,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 36',1834.75,7,6,0,3,19,'2020-01-21','2020-01-24','Description of Property 36'),(43,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 37',1760.48,3,6,0,1,18,'2020-02-03','2020-02-03','Description of Property 37'),(44,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 38',713.86,3,6,0,1,15,'2020-06-30','2020-07-06','Description of Property 38'),(45,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 39',149.80,8,1,0,3,15,'2020-06-02','2020-06-03','Description of Property 39'),(46,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 40',689.87,6,2,0,1,18,'2019-10-27','2019-10-28','Description of Property 40'),(47,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 41',2163.68,5,3,0,1,18,'2020-01-15','2020-01-18','Description of Property 41'),(48,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 42',439.52,5,3,0,3,16,'2019-12-10','2019-12-22','Description of Property 42'),(49,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 43',1962.85,6,9,0,1,19,'2020-10-14','2020-10-22','Description of Property 43'),(50,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 44',1044.64,7,7,0,1,15,'2020-04-30','2020-05-07','Description of Property 44'),(51,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 45',2274.86,5,3,0,3,18,'2020-06-29','2020-07-11','Description of Property 45'),(52,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 46',1527.69,4,4,0,3,16,'2020-09-07','2020-09-16','Description of Property 46'),(53,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 47',1754.13,9,8,0,2,19,'2020-02-25','2020-03-05','Description of Property 47'),(54,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 48',1060.28,8,9,0,2,16,'2019-11-27','2019-11-30','Description of Property 48'),(55,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 49',2308.00,2,8,0,1,19,'2020-04-09','2020-04-15','Description of Property 49'),(56,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 50',2351.90,2,6,0,2,16,'2019-11-11','2019-11-19','Description of Property 50'),(57,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 51',2858.93,1,5,0,1,17,'2020-09-08','2020-09-14','Description of Property 51'),(58,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 52',2560.13,8,5,0,1,17,'2020-01-24','2020-01-31','Description of Property 52'),(59,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 53',2066.30,1,1,0,1,16,'2020-06-18','2020-06-24','Description of Property 53'),(60,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 54',1176.22,2,6,0,2,19,'2020-04-29','2020-05-05','Description of Property 54'),(61,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 55',120.63,3,5,0,3,15,'2020-06-15','2020-06-15','Description of Property 55'),(62,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 56',1653.06,2,5,0,3,15,'2020-07-04','2020-07-15','Description of Property 56'),(63,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 57',2143.82,1,9,0,3,17,'2020-05-15','2020-05-28','Description of Property 57'),(64,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 58',2590.59,7,3,0,1,16,'2020-07-16','2020-07-22','Description of Property 58'),(65,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 59',2475.92,9,3,0,2,18,'2019-10-20','2019-10-25','Description of Property 59'),(66,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 60',2060.85,5,6,0,2,15,'2020-08-01','2020-08-09','Description of Property 60'),(67,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 61',1800.54,5,8,0,2,18,'2020-09-24','2020-10-07','Description of Property 61'),(68,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59',1,'Property 62',1906.72,8,1,0,3,15,'2020-02-08','2020-02-20','Description of Property 62'),(69,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 63',535.75,4,4,0,1,18,'2020-07-16','2020-07-22','Description of Property 63'),(70,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 64',2805.08,3,5,0,3,15,'2020-08-03','2020-08-12','Description of Property 64'),(71,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 65',1608.92,4,5,0,2,16,'2020-07-13','2020-07-26','Description of Property 65'),(72,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 66',1577.04,6,4,0,1,16,'2020-02-06','2020-02-17','Description of Property 66'),(73,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 67',364.00,7,4,0,3,16,'2020-02-11','2020-02-13','Description of Property 67'),(74,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 68',675.22,3,9,0,3,18,'2020-06-19','2020-06-26','Description of Property 68'),(75,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 69',2252.53,4,7,0,2,18,'2020-03-15','2020-03-17','Description of Property 69'),(76,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 70',2298.35,7,1,0,2,15,'2019-10-28','2019-11-01','Description of Property 70'),(77,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 71',2256.38,6,1,0,1,18,'2020-09-15','2020-09-16','Description of Property 71'),(78,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 72',2963.54,8,4,0,2,19,'2020-04-13','2020-04-20','Description of Property 72'),(79,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 73',123.85,6,7,0,3,18,'2020-06-30','2020-07-06','Description of Property 73'),(80,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 74',2792.89,3,7,0,2,16,'2019-11-05','2019-11-13','Description of Property 74'),(81,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 75',1112.38,7,6,0,3,19,'2019-12-07','2019-12-16','Description of Property 75'),(82,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 76',793.31,6,3,0,2,15,'2020-05-03','2020-05-11','Description of Property 76'),(83,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 77',472.04,6,6,0,1,18,'2020-02-04','2020-02-17','Description of Property 77'),(84,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 78',2382.91,7,1,0,1,18,'2020-08-30','2020-08-31','Description of Property 78'),(85,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 79',2085.97,6,7,0,1,17,'2020-04-01','2020-04-09','Description of Property 79'),(86,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 80',2463.43,7,2,0,2,17,'2020-06-17','2020-06-28','Description of Property 80'),(87,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 81',62.65,3,6,0,1,15,'2020-10-06','2020-10-09','Description of Property 81'),(88,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 82',1603.42,6,4,0,3,19,'2020-08-24','2020-09-04','Description of Property 82'),(89,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 83',2018.65,5,7,0,3,17,'2020-02-22','2020-02-24','Description of Property 83'),(90,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 84',1124.42,6,7,0,1,15,'2019-12-25','2019-12-31','Description of Property 84'),(91,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 85',194.31,1,4,0,2,18,'2020-09-08','2020-09-21','Description of Property 85'),(92,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 86',1977.84,3,4,0,1,18,'2020-09-15','2020-09-17','Description of Property 86'),(93,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 87',146.59,1,9,0,3,15,'2020-09-03','2020-09-04','Description of Property 87'),(94,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 88',1505.42,9,9,0,1,15,'2020-06-16','2020-06-17','Description of Property 88'),(95,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 89',2276.26,6,5,0,1,18,'2020-06-23','2020-06-23','Description of Property 89'),(96,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 90',762.21,2,9,0,2,15,'2020-03-20','2020-04-01','Description of Property 90'),(97,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 91',2178.51,1,9,0,2,16,'2019-11-11','2019-11-15','Description of Property 91'),(98,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 92',1790.53,1,6,0,3,18,'2019-11-09','2019-11-10','Description of Property 92'),(99,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 93',2809.85,4,4,0,3,16,'2019-11-25','2019-12-01','Description of Property 93'),(100,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 94',1681.36,7,1,0,1,18,'2020-02-21','2020-03-05','Description of Property 94'),(101,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 95',1065.05,3,6,0,1,16,'2020-03-17','2020-03-24','Description of Property 95'),(102,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 96',473.87,1,7,0,2,19,'2019-10-29','2019-11-07','Description of Property 96'),(103,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 97',1001.78,9,5,0,1,18,'2020-09-17','2020-09-30','Description of Property 97'),(104,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 98',2925.24,9,9,0,1,15,'2020-04-17','2020-04-25','Description of Property 98'),(105,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 99',699.71,9,2,0,3,19,'2020-07-16','2020-07-18','Description of Property 99'),(106,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 100',83.79,3,3,0,3,19,'2020-01-11','2020-01-11','Description of Property 100'),(107,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 101',1157.07,1,2,0,2,19,'2020-09-19','2020-09-26','Description of Property 101'),(108,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 102',2269.39,4,4,0,1,15,'2020-09-17','2020-09-27','Description of Property 102'),(109,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 103',1526.34,1,8,0,3,17,'2020-08-14','2020-08-16','Description of Property 103'),(110,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 104',1093.33,2,7,0,3,17,'2020-03-02','2020-03-08','Description of Property 104'),(111,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 105',205.36,6,7,0,1,16,'2020-03-08','2020-03-18','Description of Property 105'),(112,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 106',2228.55,1,1,0,1,19,'2020-08-18','2020-08-24','Description of Property 106'),(113,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 107',1459.84,9,2,0,1,15,'2019-10-20','2019-11-01','Description of Property 107'),(114,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 108',1420.86,8,5,0,1,17,'2020-04-26','2020-04-30','Description of Property 108'),(115,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 109',922.84,7,6,0,3,15,'2020-05-23','2020-06-01','Description of Property 109'),(116,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 110',1522.80,1,5,0,2,16,'2020-03-19','2020-03-27','Description of Property 110'),(117,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 111',1531.11,8,6,0,2,15,'2020-02-09','2020-02-09','Description of Property 111'),(118,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 112',751.21,1,4,0,3,18,'2020-02-06','2020-02-09','Description of Property 112'),(119,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 113',1820.12,8,5,0,3,18,'2020-05-18','2020-05-20','Description of Property 113'),(120,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 114',935.14,2,2,0,3,17,'2019-10-21','2019-10-23','Description of Property 114'),(121,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 115',2294.24,2,6,0,3,17,'2020-02-03','2020-02-07','Description of Property 115'),(122,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 116',667.32,7,8,0,1,18,'2020-04-01','2020-04-02','Description of Property 116'),(123,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 117',2390.08,8,6,0,3,16,'2020-03-08','2020-03-16','Description of Property 117'),(124,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 118',607.23,8,8,0,2,16,'2020-05-17','2020-05-26','Description of Property 118'),(125,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 119',2582.13,2,2,0,1,18,'2020-07-14','2020-07-20','Description of Property 119'),(126,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 120',537.25,5,1,0,2,16,'2020-10-01','2020-10-06','Description of Property 120'),(127,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 121',191.27,6,9,0,3,17,'2020-05-11','2020-05-19','Description of Property 121'),(128,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 122',1520.93,3,8,0,2,15,'2020-09-29','2020-10-09','Description of Property 122'),(129,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 123',2489.08,8,8,0,2,17,'2019-11-12','2019-11-25','Description of Property 123'),(130,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 124',1159.35,6,8,0,2,15,'2020-04-13','2020-04-19','Description of Property 124'),(131,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 125',2296.15,6,6,0,2,18,'2020-01-12','2020-01-18','Description of Property 125'),(132,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 126',2095.65,5,4,0,3,15,'2020-07-04','2020-07-04','Description of Property 126'),(133,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 127',2424.20,5,9,0,2,15,'2020-08-25','2020-09-05','Description of Property 127'),(134,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 128',1804.49,5,6,0,2,16,'2019-12-08','2019-12-08','Description of Property 128'),(135,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 129',2036.93,2,1,0,2,19,'2019-12-08','2019-12-17','Description of Property 129'),(136,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 130',2826.49,8,3,0,3,17,'2020-01-27','2020-01-28','Description of Property 130'),(137,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 131',1752.25,6,4,0,1,19,'2020-10-05','2020-10-13','Description of Property 131'),(138,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 132',1279.80,6,9,0,3,19,'2019-10-21','2019-11-01','Description of Property 132'),(139,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 133',2061.00,6,2,0,1,17,'2019-12-07','2019-12-09','Description of Property 133'),(140,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 134',631.80,6,7,0,3,16,'2020-06-18','2020-06-26','Description of Property 134'),(141,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 135',776.36,4,4,0,3,17,'2020-09-22','2020-09-26','Description of Property 135'),(142,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 136',798.37,8,2,0,2,16,'2020-06-12','2020-06-23','Description of Property 136'),(143,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 137',1090.77,9,7,0,2,19,'2020-04-05','2020-04-05','Description of Property 137'),(144,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 138',2239.12,9,7,0,3,18,'2020-03-02','2020-03-13','Description of Property 138'),(145,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 139',2491.13,3,7,0,3,15,'2020-04-07','2020-04-20','Description of Property 139'),(146,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 140',767.49,7,8,0,1,19,'2020-01-15','2020-01-21','Description of Property 140'),(147,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 141',1998.40,3,5,0,3,17,'2020-08-06','2020-08-10','Description of Property 141'),(148,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 142',334.85,9,3,0,3,16,'2020-01-30','2020-01-31','Description of Property 142'),(149,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 143',2789.37,7,9,0,2,18,'2019-10-23','2019-11-03','Description of Property 143'),(150,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 144',700.76,8,5,0,3,15,'2020-01-06','2020-01-14','Description of Property 144'),(151,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 145',2204.23,4,7,0,2,17,'2019-11-07','2019-11-17','Description of Property 145'),(152,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 146',1550.04,3,9,0,3,15,'2020-05-31','2020-06-11','Description of Property 146'),(153,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 147',1738.33,3,7,0,2,18,'2020-09-22','2020-09-22','Description of Property 147'),(154,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 148',1826.36,1,6,0,3,15,'2020-08-08','2020-08-14','Description of Property 148'),(155,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 149',360.36,5,1,0,3,18,'2020-01-15','2020-01-19','Description of Property 149'),(156,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 150',2578.70,4,6,0,3,15,'2020-08-03','2020-08-04','Description of Property 150'),(157,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 151',2367.26,8,9,0,1,19,'2020-01-15','2020-01-23','Description of Property 151'),(158,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 152',1041.06,8,9,0,1,17,'2020-08-17','2020-08-25','Description of Property 152'),(159,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 153',1972.54,8,2,0,1,19,'2020-03-28','2020-03-31','Description of Property 153'),(160,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 154',1923.36,5,7,0,3,16,'2020-07-04','2020-07-10','Description of Property 154'),(161,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 155',979.51,4,9,0,2,15,'2020-01-13','2020-01-21','Description of Property 155'),(162,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 156',1353.29,2,3,0,3,19,'2019-11-09','2019-11-16','Description of Property 156'),(163,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 157',285.47,4,9,0,1,19,'2020-05-16','2020-05-16','Description of Property 157'),(164,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 158',1170.17,3,3,0,2,15,'2020-07-07','2020-07-14','Description of Property 158'),(165,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 159',2084.89,9,7,0,3,16,'2020-08-29','2020-09-04','Description of Property 159'),(166,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 160',555.38,2,2,0,2,16,'2019-12-19','2019-12-29','Description of Property 160'),(167,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 161',255.76,3,9,0,1,16,'2020-01-17','2020-01-21','Description of Property 161'),(168,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 162',783.58,5,6,0,2,18,'2020-07-16','2020-07-20','Description of Property 162'),(169,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 163',2536.56,3,7,0,3,17,'2020-10-10','2020-10-18','Description of Property 163'),(170,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 164',2569.93,6,6,0,1,16,'2020-06-19','2020-06-20','Description of Property 164'),(171,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 165',459.78,5,3,0,3,19,'2020-03-16','2020-03-27','Description of Property 165'),(172,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 166',977.08,1,3,0,2,17,'2019-11-04','2019-11-15','Description of Property 166'),(173,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 167',2371.09,6,5,0,1,17,'2019-10-18','2019-10-27','Description of Property 167'),(174,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 168',572.60,5,2,0,1,17,'2020-08-26','2020-09-07','Description of Property 168'),(175,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 169',367.42,9,2,0,1,16,'2020-02-02','2020-02-06','Description of Property 169'),(176,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 170',2001.36,6,3,0,2,15,'2020-09-09','2020-09-09','Description of Property 170'),(177,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 171',1620.67,3,6,0,2,19,'2020-05-24','2020-05-28','Description of Property 171'),(178,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 172',1809.36,2,2,0,1,19,'2020-02-10','2020-02-15','Description of Property 172'),(179,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 173',937.70,8,3,0,3,17,'2020-07-27','2020-08-08','Description of Property 173'),(180,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 174',2789.17,2,8,0,3,19,'2020-09-21','2020-09-24','Description of Property 174'),(181,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 175',1413.95,8,9,0,1,16,'2020-02-14','2020-02-23','Description of Property 175'),(182,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 176',1059.94,9,5,0,2,18,'2020-08-21','2020-08-28','Description of Property 176'),(183,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 177',1871.04,1,2,0,3,15,'2020-01-17','2020-01-28','Description of Property 177'),(184,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 178',1020.46,6,1,0,1,15,'2020-07-02','2020-07-06','Description of Property 178'),(185,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 179',713.72,5,1,0,3,18,'2020-08-02','2020-08-06','Description of Property 179'),(186,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 180',2766.74,6,4,0,1,15,'2020-08-18','2020-08-26','Description of Property 180'),(187,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 181',2110.76,2,7,0,3,18,'2020-08-08','2020-08-09','Description of Property 181'),(188,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 182',1803.61,9,7,0,1,16,'2020-04-29','2020-05-08','Description of Property 182'),(189,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 183',215.79,4,1,0,3,17,'2020-01-11','2020-01-11','Description of Property 183'),(190,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 184',1355.45,7,1,0,2,18,'2020-05-15','2020-05-16','Description of Property 184'),(191,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 185',250.04,4,8,0,1,19,'2019-12-22','2019-12-27','Description of Property 185'),(192,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 186',1482.85,5,2,0,1,19,'2019-12-19','2019-12-28','Description of Property 186'),(193,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 187',2839.60,8,3,0,3,18,'2020-02-08','2020-02-11','Description of Property 187'),(194,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 188',2332.38,7,6,0,2,18,'2019-11-02','2019-11-04','Description of Property 188'),(195,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 189',1239.24,7,2,0,3,16,'2020-01-27','2020-01-28','Description of Property 189'),(196,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 190',1863.32,2,8,0,2,17,'2020-01-24','2020-01-26','Description of Property 190'),(197,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 191',2106.41,1,1,0,2,19,'2020-04-20','2020-04-25','Description of Property 191'),(198,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 192',2525.16,7,1,0,1,17,'2020-07-11','2020-07-17','Description of Property 192'),(199,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 193',608.31,4,4,0,2,15,'2019-12-07','2019-12-08','Description of Property 193'),(200,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 194',847.92,3,6,0,1,18,'2020-04-15','2020-04-16','Description of Property 194'),(201,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 195',2905.09,9,7,0,3,16,'2019-11-08','2019-11-11','Description of Property 195'),(202,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 196',2466.27,9,4,0,3,17,'2020-08-10','2020-08-21','Description of Property 196'),(203,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 197',2862.72,2,7,0,2,19,'2020-09-09','2020-09-14','Description of Property 197'),(204,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 198',1008.28,8,2,0,2,16,'2019-11-03','2019-11-10','Description of Property 198'),(205,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 199',1378.48,3,3,0,2,16,'2020-04-28','2020-05-06','Description of Property 199'),(206,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 200',952.14,6,9,0,3,17,'2020-04-22','2020-04-28','Description of Property 200'),(207,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00',1,'Property 201',1927.61,9,6,0,2,18,'2020-10-10','2020-10-14','Description of Property 201'); +/*!40000 ALTER TABLE `SilverStripe_Example_Property_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_Property_Versions` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_Property_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_Property_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDeleted` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDraft` tinyint(1) unsigned NOT NULL DEFAULT '0', + `AuthorID` int(11) NOT NULL DEFAULT '0', + `PublisherID` int(11) NOT NULL DEFAULT '0', + `ClassName` enum('SilverStripe\\Example\\Property') DEFAULT 'SilverStripe\\Example\\Property', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `PricePerNight` decimal(9,2) NOT NULL DEFAULT '0.00', + `Bedrooms` int(11) NOT NULL DEFAULT '0', + `Bathrooms` int(11) NOT NULL DEFAULT '0', + `FeaturedOnHomepage` tinyint(1) unsigned NOT NULL DEFAULT '0', + `RegionID` int(11) NOT NULL DEFAULT '0', + `PrimaryPhotoID` int(11) NOT NULL DEFAULT '0', + `AvailableStart` date DEFAULT NULL, + `AvailableEnd` date DEFAULT NULL, + `Description` mediumtext, + PRIMARY KEY (`ID`), + KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `AuthorID` (`AuthorID`), + KEY `PublisherID` (`PublisherID`), + KEY `ClassName` (`ClassName`), + KEY `RegionID` (`RegionID`), + KEY `PrimaryPhotoID` (`PrimaryPhotoID`) +) ENGINE=InnoDB AUTO_INCREMENT=216 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_Property_Versions` +-- + +LOCK TABLES `SilverStripe_Example_Property_Versions` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_Property_Versions` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_Property_Versions` VALUES (1,1,1,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:04:30','2019-10-17 22:04:30','Luxury Apartment with great views',0.00,4,3,1,4,15,'2020-02-02','2020-02-14',NULL),(2,1,2,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:04:30','2019-10-17 22:04:30','Luxury Apartment with great views',0.00,4,3,1,4,15,'2020-02-02','2020-02-14',NULL),(3,1,3,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:05:17','2019-10-17 22:04:30','Luxury Apartment with great views',950.00,4,3,1,4,15,'2020-02-02','2020-02-14',NULL),(4,1,4,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:05:17','2019-10-17 22:04:30','Luxury Apartment with great views',950.00,4,3,1,4,15,'2019-10-31','2019-11-05',NULL),(5,2,1,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:06:25','2019-10-17 22:06:25','Stunning Villa with 5 bedrooms',1300.00,5,2,1,1,16,'2020-01-27','2020-01-28',NULL),(6,2,2,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:06:26','2019-10-17 22:06:25','Stunning Villa with 5 bedrooms',1300.00,5,2,1,1,16,'2020-04-20','2020-05-02',NULL),(7,3,1,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:08:41','2019-10-17 22:08:41','Recent construction with 3 bedrooms',560.00,3,2,1,2,17,'2020-04-19','2020-05-01',NULL),(8,3,2,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:08:41','2019-10-17 22:08:41','Recent construction with 3 bedrooms',560.00,3,2,1,2,17,'2020-03-19','2020-03-24',NULL),(9,4,1,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:10:18','2019-10-17 22:10:18','Modern construction with parking space',85.00,1,2,1,1,18,'2020-06-28','2020-06-28',NULL),(10,4,2,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:10:18','2019-10-17 22:10:18','Modern construction with parking space',85.00,1,2,1,1,18,'2020-05-19','2020-05-21',NULL),(11,5,1,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:11:40','2019-10-17 22:11:40','Single Family Townhouse',840.00,2,2,1,4,19,'2020-10-05','2020-10-12',NULL),(12,5,2,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:11:40','2019-10-17 22:11:40','Single Family Townhouse',840.00,2,2,1,4,19,'2020-06-19','2020-06-29',NULL),(13,6,1,0,0,1,1,0,'SilverStripe\\Example\\Property','2019-10-17 22:12:41','2019-10-17 22:12:41','3 bedroom villa with garage for rent',150.00,3,2,1,2,20,'2020-07-20','2020-07-29',NULL),(14,6,2,1,0,1,1,1,'SilverStripe\\Example\\Property','2019-10-17 22:12:42','2019-10-17 22:12:41','3 bedroom villa with garage for rent',150.00,3,2,1,2,20,'2020-05-23','2020-05-27',NULL),(15,7,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 1',667.00,3,5,0,3,16,'2020-10-06','2020-10-08','Description of Property 1'),(16,8,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 2',1546.21,7,8,0,1,15,'2019-11-12','2019-11-13','Description of Property 2'),(17,9,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 3',878.08,1,3,0,1,15,'2020-03-22','2020-04-04','Description of Property 3'),(18,10,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 4',2395.03,8,7,0,1,16,'2020-09-25','2020-10-01','Description of Property 4'),(19,11,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 5',946.38,6,9,0,1,19,'2020-03-16','2020-03-21','Description of Property 5'),(20,12,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 6',117.81,4,9,0,2,15,'2020-01-15','2020-01-22','Description of Property 6'),(21,13,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 7',253.87,3,2,0,1,18,'2020-10-12','2020-10-19','Description of Property 7'),(22,14,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 8',1081.98,6,3,0,1,18,'2019-12-29','2019-12-30','Description of Property 8'),(23,15,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 9',636.44,2,4,0,1,18,'2019-10-31','2019-11-13','Description of Property 9'),(24,16,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 10',673.15,8,6,0,2,16,'2020-05-20','2020-05-24','Description of Property 10'),(25,17,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 11',836.15,6,4,0,1,15,'2020-08-19','2020-08-31','Description of Property 11'),(26,18,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 12',2252.69,2,5,0,3,16,'2020-03-23','2020-03-27','Description of Property 12'),(27,19,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 13',1776.53,1,6,0,1,15,'2020-06-06','2020-06-18','Description of Property 13'),(28,20,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 14',2476.61,6,4,0,1,17,'2020-09-06','2020-09-16','Description of Property 14'),(29,21,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 15',310.61,9,6,0,1,17,'2020-04-30','2020-05-11','Description of Property 15'),(30,22,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 16',1281.25,7,4,0,3,18,'2019-10-20','2019-11-02','Description of Property 16'),(31,23,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 17',515.03,9,1,0,3,16,'2020-03-21','2020-03-24','Description of Property 17'),(32,24,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 18',320.58,7,4,0,3,17,'2019-11-26','2019-12-02','Description of Property 18'),(33,25,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 19',2955.35,2,8,0,3,17,'2020-01-24','2020-01-30','Description of Property 19'),(34,26,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 20',1193.11,2,8,0,2,18,'2019-10-24','2019-11-06','Description of Property 20'),(35,27,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 21',737.39,3,7,0,3,17,'2020-01-31','2020-02-07','Description of Property 21'),(36,28,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 22',1622.97,1,5,0,1,19,'2020-03-07','2020-03-15','Description of Property 22'),(37,29,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 23',2598.97,5,1,0,3,17,'2019-11-12','2019-11-17','Description of Property 23'),(38,30,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 24',2744.15,3,8,0,2,16,'2019-12-27','2019-12-31','Description of Property 24'),(39,31,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 25',375.14,8,7,0,2,18,'2020-07-17','2020-07-21','Description of Property 25'),(40,32,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 26',1950.27,8,4,0,2,16,'2019-12-19','2019-12-28','Description of Property 26'),(41,33,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 27',1092.07,6,8,0,2,17,'2020-05-26','2020-05-30','Description of Property 27'),(42,34,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 28',1531.26,1,9,0,2,18,'2020-04-27','2020-05-06','Description of Property 28'),(43,35,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 29',2393.47,9,5,0,3,19,'2020-08-09','2020-08-13','Description of Property 29'),(44,36,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 30',2173.80,7,3,0,1,16,'2020-04-08','2020-04-15','Description of Property 30'),(45,37,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 31',2586.52,4,4,0,3,18,'2020-09-27','2020-10-06','Description of Property 31'),(46,38,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 32',983.70,6,1,0,2,19,'2020-02-05','2020-02-16','Description of Property 32'),(47,39,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 33',2727.60,1,8,0,3,19,'2020-06-20','2020-07-03','Description of Property 33'),(48,40,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 34',2676.68,5,8,0,3,19,'2020-04-07','2020-04-14','Description of Property 34'),(49,41,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 35',2341.94,9,5,0,2,18,'2020-02-17','2020-02-28','Description of Property 35'),(50,42,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 36',1834.75,7,6,0,3,19,'2020-01-21','2020-01-24','Description of Property 36'),(51,43,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 37',1760.48,3,6,0,1,18,'2020-02-03','2020-02-03','Description of Property 37'),(52,44,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 38',713.86,3,6,0,1,15,'2020-06-30','2020-07-06','Description of Property 38'),(53,45,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 39',149.80,8,1,0,3,15,'2020-06-02','2020-06-03','Description of Property 39'),(54,46,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 40',689.87,6,2,0,1,18,'2019-10-27','2019-10-28','Description of Property 40'),(55,47,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 41',2163.68,5,3,0,1,18,'2020-01-15','2020-01-18','Description of Property 41'),(56,48,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 42',439.52,5,3,0,3,16,'2019-12-10','2019-12-22','Description of Property 42'),(57,49,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 43',1962.85,6,9,0,1,19,'2020-10-14','2020-10-22','Description of Property 43'),(58,50,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 44',1044.64,7,7,0,1,15,'2020-04-30','2020-05-07','Description of Property 44'),(59,51,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 45',2274.86,5,3,0,3,18,'2020-06-29','2020-07-11','Description of Property 45'),(60,52,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 46',1527.69,4,4,0,3,16,'2020-09-07','2020-09-16','Description of Property 46'),(61,53,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 47',1754.13,9,8,0,2,19,'2020-02-25','2020-03-05','Description of Property 47'),(62,54,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 48',1060.28,8,9,0,2,16,'2019-11-27','2019-11-30','Description of Property 48'),(63,55,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 49',2308.00,2,8,0,1,19,'2020-04-09','2020-04-15','Description of Property 49'),(64,56,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 50',2351.90,2,6,0,2,16,'2019-11-11','2019-11-19','Description of Property 50'),(65,57,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 51',2858.93,1,5,0,1,17,'2020-09-08','2020-09-14','Description of Property 51'),(66,58,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 52',2560.13,8,5,0,1,17,'2020-01-24','2020-01-31','Description of Property 52'),(67,59,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 53',2066.30,1,1,0,1,16,'2020-06-18','2020-06-24','Description of Property 53'),(68,60,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 54',1176.22,2,6,0,2,19,'2020-04-29','2020-05-05','Description of Property 54'),(69,61,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 55',120.63,3,5,0,3,15,'2020-06-15','2020-06-15','Description of Property 55'),(70,62,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 56',1653.06,2,5,0,3,15,'2020-07-04','2020-07-15','Description of Property 56'),(71,63,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 57',2143.82,1,9,0,3,17,'2020-05-15','2020-05-28','Description of Property 57'),(72,64,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 58',2590.59,7,3,0,1,16,'2020-07-16','2020-07-22','Description of Property 58'),(73,65,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 59',2475.92,9,3,0,2,18,'2019-10-20','2019-10-25','Description of Property 59'),(74,66,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 60',2060.85,5,6,0,2,15,'2020-08-01','2020-08-09','Description of Property 60'),(75,67,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 61',1800.54,5,8,0,2,18,'2020-09-24','2020-10-07','Description of Property 61'),(76,68,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:13:59','2019-10-17 21:13:59','Property 62',1906.72,8,1,0,3,15,'2020-02-08','2020-02-20','Description of Property 62'),(77,69,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 63',535.75,4,4,0,1,18,'2020-07-16','2020-07-22','Description of Property 63'),(78,70,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 64',2805.08,3,5,0,3,15,'2020-08-03','2020-08-12','Description of Property 64'),(79,71,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 65',1608.92,4,5,0,2,16,'2020-07-13','2020-07-26','Description of Property 65'),(80,72,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 66',1577.04,6,4,0,1,16,'2020-02-06','2020-02-17','Description of Property 66'),(81,73,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 67',364.00,7,4,0,3,16,'2020-02-11','2020-02-13','Description of Property 67'),(82,74,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 68',675.22,3,9,0,3,18,'2020-06-19','2020-06-26','Description of Property 68'),(83,75,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 69',2252.53,4,7,0,2,18,'2020-03-15','2020-03-17','Description of Property 69'),(84,76,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 70',2298.35,7,1,0,2,15,'2019-10-28','2019-11-01','Description of Property 70'),(85,77,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 71',2256.38,6,1,0,1,18,'2020-09-15','2020-09-16','Description of Property 71'),(86,78,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 72',2963.54,8,4,0,2,19,'2020-04-13','2020-04-20','Description of Property 72'),(87,79,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 73',123.85,6,7,0,3,18,'2020-06-30','2020-07-06','Description of Property 73'),(88,80,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 74',2792.89,3,7,0,2,16,'2019-11-05','2019-11-13','Description of Property 74'),(89,81,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 75',1112.38,7,6,0,3,19,'2019-12-07','2019-12-16','Description of Property 75'),(90,82,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 76',793.31,6,3,0,2,15,'2020-05-03','2020-05-11','Description of Property 76'),(91,83,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 77',472.04,6,6,0,1,18,'2020-02-04','2020-02-17','Description of Property 77'),(92,84,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 78',2382.91,7,1,0,1,18,'2020-08-30','2020-08-31','Description of Property 78'),(93,85,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 79',2085.97,6,7,0,1,17,'2020-04-01','2020-04-09','Description of Property 79'),(94,86,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 80',2463.43,7,2,0,2,17,'2020-06-17','2020-06-28','Description of Property 80'),(95,87,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 81',62.65,3,6,0,1,15,'2020-10-06','2020-10-09','Description of Property 81'),(96,88,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 82',1603.42,6,4,0,3,19,'2020-08-24','2020-09-04','Description of Property 82'),(97,89,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 83',2018.65,5,7,0,3,17,'2020-02-22','2020-02-24','Description of Property 83'),(98,90,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 84',1124.42,6,7,0,1,15,'2019-12-25','2019-12-31','Description of Property 84'),(99,91,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 85',194.31,1,4,0,2,18,'2020-09-08','2020-09-21','Description of Property 85'),(100,92,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 86',1977.84,3,4,0,1,18,'2020-09-15','2020-09-17','Description of Property 86'),(101,93,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 87',146.59,1,9,0,3,15,'2020-09-03','2020-09-04','Description of Property 87'),(102,94,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 88',1505.42,9,9,0,1,15,'2020-06-16','2020-06-17','Description of Property 88'),(103,95,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 89',2276.26,6,5,0,1,18,'2020-06-23','2020-06-23','Description of Property 89'),(104,96,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 90',762.21,2,9,0,2,15,'2020-03-20','2020-04-01','Description of Property 90'),(105,97,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 91',2178.51,1,9,0,2,16,'2019-11-11','2019-11-15','Description of Property 91'),(106,98,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 92',1790.53,1,6,0,3,18,'2019-11-09','2019-11-10','Description of Property 92'),(107,99,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 93',2809.85,4,4,0,3,16,'2019-11-25','2019-12-01','Description of Property 93'),(108,100,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 94',1681.36,7,1,0,1,18,'2020-02-21','2020-03-05','Description of Property 94'),(109,101,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 95',1065.05,3,6,0,1,16,'2020-03-17','2020-03-24','Description of Property 95'),(110,102,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 96',473.87,1,7,0,2,19,'2019-10-29','2019-11-07','Description of Property 96'),(111,103,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 97',1001.78,9,5,0,1,18,'2020-09-17','2020-09-30','Description of Property 97'),(112,104,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 98',2925.24,9,9,0,1,15,'2020-04-17','2020-04-25','Description of Property 98'),(113,105,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 99',699.71,9,2,0,3,19,'2020-07-16','2020-07-18','Description of Property 99'),(114,106,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 100',83.79,3,3,0,3,19,'2020-01-11','2020-01-11','Description of Property 100'),(115,107,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 101',1157.07,1,2,0,2,19,'2020-09-19','2020-09-26','Description of Property 101'),(116,108,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 102',2269.39,4,4,0,1,15,'2020-09-17','2020-09-27','Description of Property 102'),(117,109,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 103',1526.34,1,8,0,3,17,'2020-08-14','2020-08-16','Description of Property 103'),(118,110,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 104',1093.33,2,7,0,3,17,'2020-03-02','2020-03-08','Description of Property 104'),(119,111,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 105',205.36,6,7,0,1,16,'2020-03-08','2020-03-18','Description of Property 105'),(120,112,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 106',2228.55,1,1,0,1,19,'2020-08-18','2020-08-24','Description of Property 106'),(121,113,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 107',1459.84,9,2,0,1,15,'2019-10-20','2019-11-01','Description of Property 107'),(122,114,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 108',1420.86,8,5,0,1,17,'2020-04-26','2020-04-30','Description of Property 108'),(123,115,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 109',922.84,7,6,0,3,15,'2020-05-23','2020-06-01','Description of Property 109'),(124,116,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 110',1522.80,1,5,0,2,16,'2020-03-19','2020-03-27','Description of Property 110'),(125,117,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 111',1531.11,8,6,0,2,15,'2020-02-09','2020-02-09','Description of Property 111'),(126,118,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 112',751.21,1,4,0,3,18,'2020-02-06','2020-02-09','Description of Property 112'),(127,119,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 113',1820.12,8,5,0,3,18,'2020-05-18','2020-05-20','Description of Property 113'),(128,120,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 114',935.14,2,2,0,3,17,'2019-10-21','2019-10-23','Description of Property 114'),(129,121,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 115',2294.24,2,6,0,3,17,'2020-02-03','2020-02-07','Description of Property 115'),(130,122,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 116',667.32,7,8,0,1,18,'2020-04-01','2020-04-02','Description of Property 116'),(131,123,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 117',2390.08,8,6,0,3,16,'2020-03-08','2020-03-16','Description of Property 117'),(132,124,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 118',607.23,8,8,0,2,16,'2020-05-17','2020-05-26','Description of Property 118'),(133,125,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 119',2582.13,2,2,0,1,18,'2020-07-14','2020-07-20','Description of Property 119'),(134,126,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 120',537.25,5,1,0,2,16,'2020-10-01','2020-10-06','Description of Property 120'),(135,127,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 121',191.27,6,9,0,3,17,'2020-05-11','2020-05-19','Description of Property 121'),(136,128,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 122',1520.93,3,8,0,2,15,'2020-09-29','2020-10-09','Description of Property 122'),(137,129,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 123',2489.08,8,8,0,2,17,'2019-11-12','2019-11-25','Description of Property 123'),(138,130,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 124',1159.35,6,8,0,2,15,'2020-04-13','2020-04-19','Description of Property 124'),(139,131,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 125',2296.15,6,6,0,2,18,'2020-01-12','2020-01-18','Description of Property 125'),(140,132,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 126',2095.65,5,4,0,3,15,'2020-07-04','2020-07-04','Description of Property 126'),(141,133,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 127',2424.20,5,9,0,2,15,'2020-08-25','2020-09-05','Description of Property 127'),(142,134,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 128',1804.49,5,6,0,2,16,'2019-12-08','2019-12-08','Description of Property 128'),(143,135,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 129',2036.93,2,1,0,2,19,'2019-12-08','2019-12-17','Description of Property 129'),(144,136,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 130',2826.49,8,3,0,3,17,'2020-01-27','2020-01-28','Description of Property 130'),(145,137,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 131',1752.25,6,4,0,1,19,'2020-10-05','2020-10-13','Description of Property 131'),(146,138,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 132',1279.80,6,9,0,3,19,'2019-10-21','2019-11-01','Description of Property 132'),(147,139,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 133',2061.00,6,2,0,1,17,'2019-12-07','2019-12-09','Description of Property 133'),(148,140,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 134',631.80,6,7,0,3,16,'2020-06-18','2020-06-26','Description of Property 134'),(149,141,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 135',776.36,4,4,0,3,17,'2020-09-22','2020-09-26','Description of Property 135'),(150,142,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 136',798.37,8,2,0,2,16,'2020-06-12','2020-06-23','Description of Property 136'),(151,143,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 137',1090.77,9,7,0,2,19,'2020-04-05','2020-04-05','Description of Property 137'),(152,144,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 138',2239.12,9,7,0,3,18,'2020-03-02','2020-03-13','Description of Property 138'),(153,145,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 139',2491.13,3,7,0,3,15,'2020-04-07','2020-04-20','Description of Property 139'),(154,146,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 140',767.49,7,8,0,1,19,'2020-01-15','2020-01-21','Description of Property 140'),(155,147,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 141',1998.40,3,5,0,3,17,'2020-08-06','2020-08-10','Description of Property 141'),(156,148,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 142',334.85,9,3,0,3,16,'2020-01-30','2020-01-31','Description of Property 142'),(157,149,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 143',2789.37,7,9,0,2,18,'2019-10-23','2019-11-03','Description of Property 143'),(158,150,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 144',700.76,8,5,0,3,15,'2020-01-06','2020-01-14','Description of Property 144'),(159,151,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 145',2204.23,4,7,0,2,17,'2019-11-07','2019-11-17','Description of Property 145'),(160,152,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 146',1550.04,3,9,0,3,15,'2020-05-31','2020-06-11','Description of Property 146'),(161,153,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 147',1738.33,3,7,0,2,18,'2020-09-22','2020-09-22','Description of Property 147'),(162,154,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 148',1826.36,1,6,0,3,15,'2020-08-08','2020-08-14','Description of Property 148'),(163,155,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 149',360.36,5,1,0,3,18,'2020-01-15','2020-01-19','Description of Property 149'),(164,156,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 150',2578.70,4,6,0,3,15,'2020-08-03','2020-08-04','Description of Property 150'),(165,157,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 151',2367.26,8,9,0,1,19,'2020-01-15','2020-01-23','Description of Property 151'),(166,158,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 152',1041.06,8,9,0,1,17,'2020-08-17','2020-08-25','Description of Property 152'),(167,159,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 153',1972.54,8,2,0,1,19,'2020-03-28','2020-03-31','Description of Property 153'),(168,160,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 154',1923.36,5,7,0,3,16,'2020-07-04','2020-07-10','Description of Property 154'),(169,161,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 155',979.51,4,9,0,2,15,'2020-01-13','2020-01-21','Description of Property 155'),(170,162,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 156',1353.29,2,3,0,3,19,'2019-11-09','2019-11-16','Description of Property 156'),(171,163,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 157',285.47,4,9,0,1,19,'2020-05-16','2020-05-16','Description of Property 157'),(172,164,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 158',1170.17,3,3,0,2,15,'2020-07-07','2020-07-14','Description of Property 158'),(173,165,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 159',2084.89,9,7,0,3,16,'2020-08-29','2020-09-04','Description of Property 159'),(174,166,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 160',555.38,2,2,0,2,16,'2019-12-19','2019-12-29','Description of Property 160'),(175,167,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 161',255.76,3,9,0,1,16,'2020-01-17','2020-01-21','Description of Property 161'),(176,168,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 162',783.58,5,6,0,2,18,'2020-07-16','2020-07-20','Description of Property 162'),(177,169,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 163',2536.56,3,7,0,3,17,'2020-10-10','2020-10-18','Description of Property 163'),(178,170,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 164',2569.93,6,6,0,1,16,'2020-06-19','2020-06-20','Description of Property 164'),(179,171,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 165',459.78,5,3,0,3,19,'2020-03-16','2020-03-27','Description of Property 165'),(180,172,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 166',977.08,1,3,0,2,17,'2019-11-04','2019-11-15','Description of Property 166'),(181,173,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 167',2371.09,6,5,0,1,17,'2019-10-18','2019-10-27','Description of Property 167'),(182,174,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 168',572.60,5,2,0,1,17,'2020-08-26','2020-09-07','Description of Property 168'),(183,175,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 169',367.42,9,2,0,1,16,'2020-02-02','2020-02-06','Description of Property 169'),(184,176,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 170',2001.36,6,3,0,2,15,'2020-09-09','2020-09-09','Description of Property 170'),(185,177,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 171',1620.67,3,6,0,2,19,'2020-05-24','2020-05-28','Description of Property 171'),(186,178,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 172',1809.36,2,2,0,1,19,'2020-02-10','2020-02-15','Description of Property 172'),(187,179,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 173',937.70,8,3,0,3,17,'2020-07-27','2020-08-08','Description of Property 173'),(188,180,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 174',2789.17,2,8,0,3,19,'2020-09-21','2020-09-24','Description of Property 174'),(189,181,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 175',1413.95,8,9,0,1,16,'2020-02-14','2020-02-23','Description of Property 175'),(190,182,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 176',1059.94,9,5,0,2,18,'2020-08-21','2020-08-28','Description of Property 176'),(191,183,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 177',1871.04,1,2,0,3,15,'2020-01-17','2020-01-28','Description of Property 177'),(192,184,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 178',1020.46,6,1,0,1,15,'2020-07-02','2020-07-06','Description of Property 178'),(193,185,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 179',713.72,5,1,0,3,18,'2020-08-02','2020-08-06','Description of Property 179'),(194,186,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 180',2766.74,6,4,0,1,15,'2020-08-18','2020-08-26','Description of Property 180'),(195,187,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 181',2110.76,2,7,0,3,18,'2020-08-08','2020-08-09','Description of Property 181'),(196,188,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 182',1803.61,9,7,0,1,16,'2020-04-29','2020-05-08','Description of Property 182'),(197,189,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 183',215.79,4,1,0,3,17,'2020-01-11','2020-01-11','Description of Property 183'),(198,190,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 184',1355.45,7,1,0,2,18,'2020-05-15','2020-05-16','Description of Property 184'),(199,191,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 185',250.04,4,8,0,1,19,'2019-12-22','2019-12-27','Description of Property 185'),(200,192,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 186',1482.85,5,2,0,1,19,'2019-12-19','2019-12-28','Description of Property 186'),(201,193,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 187',2839.60,8,3,0,3,18,'2020-02-08','2020-02-11','Description of Property 187'),(202,194,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 188',2332.38,7,6,0,2,18,'2019-11-02','2019-11-04','Description of Property 188'),(203,195,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 189',1239.24,7,2,0,3,16,'2020-01-27','2020-01-28','Description of Property 189'),(204,196,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 190',1863.32,2,8,0,2,17,'2020-01-24','2020-01-26','Description of Property 190'),(205,197,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 191',2106.41,1,1,0,2,19,'2020-04-20','2020-04-25','Description of Property 191'),(206,198,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 192',2525.16,7,1,0,1,17,'2020-07-11','2020-07-17','Description of Property 192'),(207,199,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 193',608.31,4,4,0,2,15,'2019-12-07','2019-12-08','Description of Property 193'),(208,200,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 194',847.92,3,6,0,1,18,'2020-04-15','2020-04-16','Description of Property 194'),(209,201,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 195',2905.09,9,7,0,3,16,'2019-11-08','2019-11-11','Description of Property 195'),(210,202,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 196',2466.27,9,4,0,3,17,'2020-08-10','2020-08-21','Description of Property 196'),(211,203,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 197',2862.72,2,7,0,2,19,'2020-09-09','2020-09-14','Description of Property 197'),(212,204,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 198',1008.28,8,2,0,2,16,'2019-11-03','2019-11-10','Description of Property 198'),(213,205,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 199',1378.48,3,3,0,2,16,'2020-04-28','2020-05-06','Description of Property 199'),(214,206,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 200',952.14,6,9,0,3,17,'2020-04-22','2020-04-28','Description of Property 200'),(215,207,1,1,0,0,1,1,'SilverStripe\\Example\\Property','2019-10-17 21:14:00','2019-10-17 21:14:00','Property 201',1927.61,9,6,0,2,18,'2020-10-10','2020-10-14','Description of Property 201'); +/*!40000 ALTER TABLE `SilverStripe_Example_Property_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_Region` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_Region`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_Region` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Example\\Region') DEFAULT 'SilverStripe\\Example\\Region', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Version` int(11) NOT NULL DEFAULT '0', + `Title` varchar(255) DEFAULT NULL, + `Description` mediumtext, + `PhotoID` int(11) NOT NULL DEFAULT '0', + `RegionsPageID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `PhotoID` (`PhotoID`), + KEY `RegionsPageID` (`RegionsPageID`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_Region` +-- + +LOCK TABLES `SilverStripe_Example_Region` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_Region` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_Region` VALUES (1,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:32:51',2,'The Northeast','Description about the Northeast',10,8),(2,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:33:43',2,'The Northwest','Description about the Northwest',11,8),(3,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:34:33',2,'The Southeast','Description about the Southeast',12,8),(4,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:35:40',2,'The Southwest','Description about the Southwest',13,8); +/*!40000 ALTER TABLE `SilverStripe_Example_Region` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_Region_Live` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_Region_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_Region_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\Example\\Region') DEFAULT 'SilverStripe\\Example\\Region', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Version` int(11) NOT NULL DEFAULT '0', + `Title` varchar(255) DEFAULT NULL, + `Description` mediumtext, + `PhotoID` int(11) NOT NULL DEFAULT '0', + `RegionsPageID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `PhotoID` (`PhotoID`), + KEY `RegionsPageID` (`RegionsPageID`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_Region_Live` +-- + +LOCK TABLES `SilverStripe_Example_Region_Live` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_Region_Live` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_Region_Live` VALUES (1,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:32:51',2,'The Northeast','Description about the Northeast',10,8),(2,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:33:43',2,'The Northwest','Description about the Northwest',11,8),(3,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:34:33',2,'The Southeast','Description about the Southeast',12,8),(4,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:35:40',2,'The Southwest','Description about the Southwest',13,8); +/*!40000 ALTER TABLE `SilverStripe_Example_Region_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SilverStripe_Example_Region_Versions` +-- + +DROP TABLE IF EXISTS `SilverStripe_Example_Region_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SilverStripe_Example_Region_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDeleted` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDraft` tinyint(1) unsigned NOT NULL DEFAULT '0', + `AuthorID` int(11) NOT NULL DEFAULT '0', + `PublisherID` int(11) NOT NULL DEFAULT '0', + `ClassName` enum('SilverStripe\\Example\\Region') DEFAULT 'SilverStripe\\Example\\Region', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `Description` mediumtext, + `PhotoID` int(11) NOT NULL DEFAULT '0', + `RegionsPageID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `AuthorID` (`AuthorID`), + KEY `PublisherID` (`PublisherID`), + KEY `ClassName` (`ClassName`), + KEY `PhotoID` (`PhotoID`), + KEY `RegionsPageID` (`RegionsPageID`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SilverStripe_Example_Region_Versions` +-- + +LOCK TABLES `SilverStripe_Example_Region_Versions` WRITE; +/*!40000 ALTER TABLE `SilverStripe_Example_Region_Versions` DISABLE KEYS */; +INSERT INTO `SilverStripe_Example_Region_Versions` VALUES (1,1,1,0,0,1,1,0,'SilverStripe\\Example\\Region','2019-10-17 02:32:51','2019-10-17 02:32:51','The Northeast','Description about the Northeast',10,8),(2,2,1,0,0,1,1,0,'SilverStripe\\Example\\Region','2019-10-17 02:33:43','2019-10-17 02:33:43','The Northwest','Description about the Northwest',11,8),(3,3,1,0,0,1,1,0,'SilverStripe\\Example\\Region','2019-10-17 02:34:33','2019-10-17 02:34:33','The Southeast','Description about the Southeast',12,8),(4,4,1,0,0,1,1,0,'SilverStripe\\Example\\Region','2019-10-17 02:35:40','2019-10-17 02:35:40','The Southwest','Description about the Southwest',13,8),(5,1,2,1,0,1,1,1,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:32:51','The Northeast','Description about the Northeast',10,8),(6,2,2,1,0,1,1,1,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:33:43','The Northwest','Description about the Northwest',11,8),(7,3,2,1,0,1,1,1,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:34:33','The Southeast','Description about the Southeast',12,8),(8,4,2,1,0,1,1,1,'SilverStripe\\Example\\Region','2019-10-17 02:37:16','2019-10-17 02:35:40','The Southwest','Description about the Southwest',13,8); +/*!40000 ALTER TABLE `SilverStripe_Example_Region_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteConfig` +-- + +DROP TABLE IF EXISTS `SiteConfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteConfig` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\SiteConfig\\SiteConfig') DEFAULT 'SilverStripe\\SiteConfig\\SiteConfig', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `Tagline` varchar(255) DEFAULT NULL, + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers') DEFAULT 'Anyone', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers') DEFAULT 'LoggedInUsers', + `CanCreateTopLevelType` enum('LoggedInUsers','OnlyTheseUsers') DEFAULT 'LoggedInUsers', + `FacebookLink` varchar(255) DEFAULT NULL, + `TwitterLink` varchar(255) DEFAULT NULL, + `YouTubeLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteConfig` +-- + +LOCK TABLES `SiteConfig` WRITE; +/*!40000 ALTER TABLE `SiteConfig` DISABLE KEYS */; +INSERT INTO `SiteConfig` VALUES (1,'SilverStripe\\SiteConfig\\SiteConfig','2019-10-17 21:20:54','2019-10-15 05:07:36','Your Site Name','your tagline here','Anyone','LoggedInUsers','LoggedInUsers','https://www.facebook.com/silverstripe/','https://twitter.com/silverstripe','https://www.youtube.com/user/SilverStripeSoftware'); +/*!40000 ALTER TABLE `SiteConfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteConfig_CreateTopLevelGroups` +-- + +DROP TABLE IF EXISTS `SiteConfig_CreateTopLevelGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteConfig_CreateTopLevelGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `SiteConfigID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `SiteConfigID` (`SiteConfigID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteConfig_CreateTopLevelGroups` +-- + +LOCK TABLES `SiteConfig_CreateTopLevelGroups` WRITE; +/*!40000 ALTER TABLE `SiteConfig_CreateTopLevelGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `SiteConfig_CreateTopLevelGroups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteConfig_EditorGroups` +-- + +DROP TABLE IF EXISTS `SiteConfig_EditorGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteConfig_EditorGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `SiteConfigID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `SiteConfigID` (`SiteConfigID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteConfig_EditorGroups` +-- + +LOCK TABLES `SiteConfig_EditorGroups` WRITE; +/*!40000 ALTER TABLE `SiteConfig_EditorGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `SiteConfig_EditorGroups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteConfig_ViewerGroups` +-- + +DROP TABLE IF EXISTS `SiteConfig_ViewerGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteConfig_ViewerGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `SiteConfigID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `SiteConfigID` (`SiteConfigID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteConfig_ViewerGroups` +-- + +LOCK TABLES `SiteConfig_ViewerGroups` WRITE; +/*!40000 ALTER TABLE `SiteConfig_ViewerGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `SiteConfig_ViewerGroups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteTree` +-- + +DROP TABLE IF EXISTS `SiteTree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteTree` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Example\\ArticleHolder','SilverStripe\\Example\\ArticlePage','SilverStripe\\Example\\HomePage','SilverStripe\\Example\\PropertySearchPage','SilverStripe\\Example\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'Page', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `Version` int(11) NOT NULL DEFAULT '0', + `URLSegment` varchar(255) DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `MenuTitle` varchar(100) DEFAULT NULL, + `Content` mediumtext, + `MetaDescription` mediumtext, + `ExtraMeta` mediumtext, + `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT '0', + `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '0', + `Sort` int(11) NOT NULL DEFAULT '0', + `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT '0', + `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT '0', + `ReportClass` varchar(255) DEFAULT NULL, + `ParentID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `Sort` (`Sort`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`), + KEY `URLSegment` (`URLSegment`) +) ENGINE=InnoDB AUTO_INCREMENT=214 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteTree` +-- + +LOCK TABLES `SiteTree` WRITE; +/*!40000 ALTER TABLE `SiteTree` DISABLE KEYS */; +INSERT INTO `SiteTree` VALUES (1,'SilverStripe\\Example\\HomePage','2019-10-15 05:07:36','2019-10-15 05:07:36','Inherit','Inherit',2,'home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,0),(2,'Page','2019-10-15 09:51:18','2019-10-15 05:07:36','Inherit','Inherit',4,'about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,0),(3,'Page','2019-10-15 09:52:33','2019-10-15 05:07:37','Inherit','Inherit',6,'contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,7,0,0,NULL,0),(4,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit',2,'page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,8,0,0,NULL,0),(5,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit',2,'server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,9,0,0,NULL,0),(6,'SilverStripe\\Example\\PropertySearchPage','2019-10-18 08:33:05','2019-10-15 05:51:22','Inherit','Inherit',7,'find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,0),(7,'Page','2019-10-15 05:59:28','2019-10-15 05:53:30','Inherit','Inherit',5,'list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,0),(8,'SilverStripe\\Example\\RegionsPage','2019-10-17 02:37:16','2019-10-15 05:55:16','Inherit','Inherit',7,'regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,0),(9,'SilverStripe\\Example\\ArticleHolder','2019-10-15 10:28:48','2019-10-15 06:00:25','Inherit','Inherit',7,'travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,0),(10,'SilverStripe\\Example\\ArticlePage','2019-10-17 03:21:47','2019-10-15 09:58:45','Inherit','Inherit',9,'sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(11,'SilverStripe\\Example\\ArticlePage','2019-10-17 03:22:53','2019-10-15 10:01:16','Inherit','Inherit',7,'sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(12,'SilverStripe\\Example\\ArticlePage','2019-10-17 03:24:24','2019-10-15 10:05:04','Inherit','Inherit',7,'sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(13,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-4','Test Article 4',NULL,'Content of test article4','','',1,1,4,0,0,NULL,9),(14,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-5','Test Article 5',NULL,'Content of test article5','','',1,1,5,0,0,NULL,9),(15,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-6','Test Article 6',NULL,'Content of test article6','','',1,1,6,0,0,NULL,9),(16,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-7','Test Article 7',NULL,'Content of test article7','','',1,1,7,0,0,NULL,9),(17,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-8','Test Article 8',NULL,'Content of test article8','','',1,1,8,0,0,NULL,9),(18,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-9','Test Article 9',NULL,'Content of test article9','','',1,1,9,0,0,NULL,9),(19,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-10','Test Article 10',NULL,'Content of test article10','','',1,1,10,0,0,NULL,9),(20,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-11','Test Article 11',NULL,'Content of test article11','','',1,1,11,0,0,NULL,9),(21,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-12','Test Article 12',NULL,'Content of test article12','','',1,1,12,0,0,NULL,9),(22,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-13','Test Article 13',NULL,'Content of test article13','','',1,1,13,0,0,NULL,9),(23,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-14','Test Article 14',NULL,'Content of test article14','','',1,1,14,0,0,NULL,9),(24,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-15','Test Article 15',NULL,'Content of test article15','','',1,1,15,0,0,NULL,9),(25,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-16','Test Article 16',NULL,'Content of test article16','','',1,1,16,0,0,NULL,9),(26,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-17','Test Article 17',NULL,'Content of test article17','','',1,1,17,0,0,NULL,9),(27,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-18','Test Article 18',NULL,'Content of test article18','','',1,1,18,0,0,NULL,9),(28,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-19','Test Article 19',NULL,'Content of test article19','','',1,1,19,0,0,NULL,9),(29,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-20','Test Article 20',NULL,'Content of test article20','','',1,1,20,0,0,NULL,9),(30,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-21','Test Article 21',NULL,'Content of test article21','','',1,1,21,0,0,NULL,9),(31,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-22','Test Article 22',NULL,'Content of test article22','','',1,1,22,0,0,NULL,9),(32,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-23','Test Article 23',NULL,'Content of test article23','','',1,1,23,0,0,NULL,9),(33,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-24','Test Article 24',NULL,'Content of test article24','','',1,1,24,0,0,NULL,9),(34,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-25','Test Article 25',NULL,'Content of test article25','','',1,1,25,0,0,NULL,9),(35,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-26','Test Article 26',NULL,'Content of test article26','','',1,1,26,0,0,NULL,9),(36,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-27','Test Article 27',NULL,'Content of test article27','','',1,1,27,0,0,NULL,9),(37,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-28','Test Article 28',NULL,'Content of test article28','','',1,1,28,0,0,NULL,9),(38,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-29','Test Article 29',NULL,'Content of test article29','','',1,1,29,0,0,NULL,9),(39,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-30','Test Article 30',NULL,'Content of test article30','','',1,1,30,0,0,NULL,9),(40,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-31','Test Article 31',NULL,'Content of test article31','','',1,1,31,0,0,NULL,9),(41,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-32','Test Article 32',NULL,'Content of test article32','','',1,1,32,0,0,NULL,9),(42,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-33','Test Article 33',NULL,'Content of test article33','','',1,1,33,0,0,NULL,9),(43,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-34','Test Article 34',NULL,'Content of test article34','','',1,1,34,0,0,NULL,9),(44,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-35','Test Article 35',NULL,'Content of test article35','','',1,1,35,0,0,NULL,9),(45,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-36','Test Article 36',NULL,'Content of test article36','','',1,1,36,0,0,NULL,9),(46,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-37','Test Article 37',NULL,'Content of test article37','','',1,1,37,0,0,NULL,9),(47,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-38','Test Article 38',NULL,'Content of test article38','','',1,1,38,0,0,NULL,9),(48,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-39','Test Article 39',NULL,'Content of test article39','','',1,1,39,0,0,NULL,9),(49,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-40','Test Article 40',NULL,'Content of test article40','','',1,1,40,0,0,NULL,9),(50,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-41','Test Article 41',NULL,'Content of test article41','','',1,1,41,0,0,NULL,9),(51,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-42','Test Article 42',NULL,'Content of test article42','','',1,1,42,0,0,NULL,9),(52,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-43','Test Article 43',NULL,'Content of test article43','','',1,1,43,0,0,NULL,9),(53,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-44','Test Article 44',NULL,'Content of test article44','','',1,1,44,0,0,NULL,9),(54,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-45','Test Article 45',NULL,'Content of test article45','','',1,1,45,0,0,NULL,9),(55,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-46','Test Article 46',NULL,'Content of test article46','','',1,1,46,0,0,NULL,9),(56,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-47','Test Article 47',NULL,'Content of test article47','','',1,1,47,0,0,NULL,9),(57,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-48','Test Article 48',NULL,'Content of test article48','','',1,1,48,0,0,NULL,9),(58,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-49','Test Article 49',NULL,'Content of test article49','','',1,1,49,0,0,NULL,9),(59,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-50','Test Article 50',NULL,'Content of test article50','','',1,1,50,0,0,NULL,9),(60,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-51','Test Article 51',NULL,'Content of test article51','','',1,1,51,0,0,NULL,9),(61,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-52','Test Article 52',NULL,'Content of test article52','','',1,1,52,0,0,NULL,9),(62,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-53','Test Article 53',NULL,'Content of test article53','','',1,1,53,0,0,NULL,9),(63,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-54','Test Article 54',NULL,'Content of test article54','','',1,1,54,0,0,NULL,9),(64,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-55','Test Article 55',NULL,'Content of test article55','','',1,1,55,0,0,NULL,9),(65,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-56','Test Article 56',NULL,'Content of test article56','','',1,1,56,0,0,NULL,9),(66,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-57','Test Article 57',NULL,'Content of test article57','','',1,1,57,0,0,NULL,9),(67,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-58','Test Article 58',NULL,'Content of test article58','','',1,1,58,0,0,NULL,9),(68,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-59','Test Article 59',NULL,'Content of test article59','','',1,1,59,0,0,NULL,9),(69,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-60','Test Article 60',NULL,'Content of test article60','','',1,1,60,0,0,NULL,9),(70,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-61','Test Article 61',NULL,'Content of test article61','','',1,1,61,0,0,NULL,9),(71,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-62','Test Article 62',NULL,'Content of test article62','','',1,1,62,0,0,NULL,9),(72,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-63','Test Article 63',NULL,'Content of test article63','','',1,1,63,0,0,NULL,9),(73,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-64','Test Article 64',NULL,'Content of test article64','','',1,1,64,0,0,NULL,9),(74,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-65','Test Article 65',NULL,'Content of test article65','','',1,1,65,0,0,NULL,9),(75,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-66','Test Article 66',NULL,'Content of test article66','','',1,1,66,0,0,NULL,9),(76,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-67','Test Article 67',NULL,'Content of test article67','','',1,1,67,0,0,NULL,9),(77,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-68','Test Article 68',NULL,'Content of test article68','','',1,1,68,0,0,NULL,9),(78,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-69','Test Article 69',NULL,'Content of test article69','','',1,1,69,0,0,NULL,9),(79,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-70','Test Article 70',NULL,'Content of test article70','','',1,1,70,0,0,NULL,9),(80,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-71','Test Article 71',NULL,'Content of test article71','','',1,1,71,0,0,NULL,9),(81,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-72','Test Article 72',NULL,'Content of test article72','','',1,1,72,0,0,NULL,9),(82,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-73','Test Article 73',NULL,'Content of test article73','','',1,1,73,0,0,NULL,9),(83,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-74','Test Article 74',NULL,'Content of test article74','','',1,1,74,0,0,NULL,9),(84,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-75','Test Article 75',NULL,'Content of test article75','','',1,1,75,0,0,NULL,9),(85,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-76','Test Article 76',NULL,'Content of test article76','','',1,1,76,0,0,NULL,9),(86,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-77','Test Article 77',NULL,'Content of test article77','','',1,1,77,0,0,NULL,9),(87,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-78','Test Article 78',NULL,'Content of test article78','','',1,1,78,0,0,NULL,9),(88,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-79','Test Article 79',NULL,'Content of test article79','','',1,1,79,0,0,NULL,9),(89,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-80','Test Article 80',NULL,'Content of test article80','','',1,1,80,0,0,NULL,9),(90,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-81','Test Article 81',NULL,'Content of test article81','','',1,1,81,0,0,NULL,9),(91,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-82','Test Article 82',NULL,'Content of test article82','','',1,1,82,0,0,NULL,9),(92,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-83','Test Article 83',NULL,'Content of test article83','','',1,1,83,0,0,NULL,9),(93,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-84','Test Article 84',NULL,'Content of test article84','','',1,1,84,0,0,NULL,9),(94,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-85','Test Article 85',NULL,'Content of test article85','','',1,1,85,0,0,NULL,9),(95,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-86','Test Article 86',NULL,'Content of test article86','','',1,1,86,0,0,NULL,9),(96,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-87','Test Article 87',NULL,'Content of test article87','','',1,1,87,0,0,NULL,9),(97,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-88','Test Article 88',NULL,'Content of test article88','','',1,1,88,0,0,NULL,9),(98,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-89','Test Article 89',NULL,'Content of test article89','','',1,1,89,0,0,NULL,9),(99,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-90','Test Article 90',NULL,'Content of test article90','','',1,1,90,0,0,NULL,9),(100,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-91','Test Article 91',NULL,'Content of test article91','','',1,1,91,0,0,NULL,9),(101,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-92','Test Article 92',NULL,'Content of test article92','','',1,1,92,0,0,NULL,9),(102,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-93','Test Article 93',NULL,'Content of test article93','','',1,1,93,0,0,NULL,9),(103,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-94','Test Article 94',NULL,'Content of test article94','','',1,1,94,0,0,NULL,9),(104,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-95','Test Article 95',NULL,'Content of test article95','','',1,1,95,0,0,NULL,9),(105,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-96','Test Article 96',NULL,'Content of test article96','','',1,1,96,0,0,NULL,9),(106,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-97','Test Article 97',NULL,'Content of test article97','','',1,1,97,0,0,NULL,9),(107,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-98','Test Article 98',NULL,'Content of test article98','','',1,1,98,0,0,NULL,9),(108,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-99','Test Article 99',NULL,'Content of test article99','','',1,1,99,0,0,NULL,9),(109,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-100','Test Article 100',NULL,'Content of test article100','','',1,1,100,0,0,NULL,9),(110,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-101','Test Article 101',NULL,'Content of test article101','','',1,1,101,0,0,NULL,9),(111,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-102','Test Article 102',NULL,'Content of test article102','','',1,1,102,0,0,NULL,9),(112,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-103','Test Article 103',NULL,'Content of test article103','','',1,1,103,0,0,NULL,9),(113,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-104','Test Article 104',NULL,'Content of test article104','','',1,1,104,0,0,NULL,9),(114,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-105','Test Article 105',NULL,'Content of test article105','','',1,1,105,0,0,NULL,9),(115,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-106','Test Article 106',NULL,'Content of test article106','','',1,1,106,0,0,NULL,9),(116,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-107','Test Article 107',NULL,'Content of test article107','','',1,1,107,0,0,NULL,9),(117,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-108','Test Article 108',NULL,'Content of test article108','','',1,1,108,0,0,NULL,9),(118,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-109','Test Article 109',NULL,'Content of test article109','','',1,1,109,0,0,NULL,9),(119,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-110','Test Article 110',NULL,'Content of test article110','','',1,1,110,0,0,NULL,9),(120,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-111','Test Article 111',NULL,'Content of test article111','','',1,1,111,0,0,NULL,9),(121,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-112','Test Article 112',NULL,'Content of test article112','','',1,1,112,0,0,NULL,9),(122,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-113','Test Article 113',NULL,'Content of test article113','','',1,1,113,0,0,NULL,9),(123,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-114','Test Article 114',NULL,'Content of test article114','','',1,1,114,0,0,NULL,9),(124,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-115','Test Article 115',NULL,'Content of test article115','','',1,1,115,0,0,NULL,9),(125,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-116','Test Article 116',NULL,'Content of test article116','','',1,1,116,0,0,NULL,9),(126,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-117','Test Article 117',NULL,'Content of test article117','','',1,1,117,0,0,NULL,9),(127,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-118','Test Article 118',NULL,'Content of test article118','','',1,1,118,0,0,NULL,9),(128,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-119','Test Article 119',NULL,'Content of test article119','','',1,1,119,0,0,NULL,9),(129,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-120','Test Article 120',NULL,'Content of test article120','','',1,1,120,0,0,NULL,9),(130,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-121','Test Article 121',NULL,'Content of test article121','','',1,1,121,0,0,NULL,9),(131,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-122','Test Article 122',NULL,'Content of test article122','','',1,1,122,0,0,NULL,9),(132,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-123','Test Article 123',NULL,'Content of test article123','','',1,1,123,0,0,NULL,9),(133,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-124','Test Article 124',NULL,'Content of test article124','','',1,1,124,0,0,NULL,9),(134,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-125','Test Article 125',NULL,'Content of test article125','','',1,1,125,0,0,NULL,9),(135,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-126','Test Article 126',NULL,'Content of test article126','','',1,1,126,0,0,NULL,9),(136,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-127','Test Article 127',NULL,'Content of test article127','','',1,1,127,0,0,NULL,9),(137,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-128','Test Article 128',NULL,'Content of test article128','','',1,1,128,0,0,NULL,9),(138,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-129','Test Article 129',NULL,'Content of test article129','','',1,1,129,0,0,NULL,9),(139,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-130','Test Article 130',NULL,'Content of test article130','','',1,1,130,0,0,NULL,9),(140,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-131','Test Article 131',NULL,'Content of test article131','','',1,1,131,0,0,NULL,9),(141,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-132','Test Article 132',NULL,'Content of test article132','','',1,1,132,0,0,NULL,9),(142,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-133','Test Article 133',NULL,'Content of test article133','','',1,1,133,0,0,NULL,9),(143,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-134','Test Article 134',NULL,'Content of test article134','','',1,1,134,0,0,NULL,9),(144,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-135','Test Article 135',NULL,'Content of test article135','','',1,1,135,0,0,NULL,9),(145,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-136','Test Article 136',NULL,'Content of test article136','','',1,1,136,0,0,NULL,9),(146,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-137','Test Article 137',NULL,'Content of test article137','','',1,1,137,0,0,NULL,9),(147,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-138','Test Article 138',NULL,'Content of test article138','','',1,1,138,0,0,NULL,9),(148,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-139','Test Article 139',NULL,'Content of test article139','','',1,1,139,0,0,NULL,9),(149,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-140','Test Article 140',NULL,'Content of test article140','','',1,1,140,0,0,NULL,9),(150,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-141','Test Article 141',NULL,'Content of test article141','','',1,1,141,0,0,NULL,9),(151,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-142','Test Article 142',NULL,'Content of test article142','','',1,1,142,0,0,NULL,9),(152,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-143','Test Article 143',NULL,'Content of test article143','','',1,1,143,0,0,NULL,9),(153,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-144','Test Article 144',NULL,'Content of test article144','','',1,1,144,0,0,NULL,9),(154,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-145','Test Article 145',NULL,'Content of test article145','','',1,1,145,0,0,NULL,9),(155,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-146','Test Article 146',NULL,'Content of test article146','','',1,1,146,0,0,NULL,9),(156,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-147','Test Article 147',NULL,'Content of test article147','','',1,1,147,0,0,NULL,9),(157,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-148','Test Article 148',NULL,'Content of test article148','','',1,1,148,0,0,NULL,9),(158,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-149','Test Article 149',NULL,'Content of test article149','','',1,1,149,0,0,NULL,9),(159,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-150','Test Article 150',NULL,'Content of test article150','','',1,1,150,0,0,NULL,9),(160,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-151','Test Article 151',NULL,'Content of test article151','','',1,1,151,0,0,NULL,9),(161,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-152','Test Article 152',NULL,'Content of test article152','','',1,1,152,0,0,NULL,9),(162,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-153','Test Article 153',NULL,'Content of test article153','','',1,1,153,0,0,NULL,9),(163,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-154','Test Article 154',NULL,'Content of test article154','','',1,1,154,0,0,NULL,9),(164,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-155','Test Article 155',NULL,'Content of test article155','','',1,1,155,0,0,NULL,9),(165,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-156','Test Article 156',NULL,'Content of test article156','','',1,1,156,0,0,NULL,9),(166,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-157','Test Article 157',NULL,'Content of test article157','','',1,1,157,0,0,NULL,9),(167,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-158','Test Article 158',NULL,'Content of test article158','','',1,1,158,0,0,NULL,9),(168,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-159','Test Article 159',NULL,'Content of test article159','','',1,1,159,0,0,NULL,9),(169,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-160','Test Article 160',NULL,'Content of test article160','','',1,1,160,0,0,NULL,9),(170,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-161','Test Article 161',NULL,'Content of test article161','','',1,1,161,0,0,NULL,9),(171,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-162','Test Article 162',NULL,'Content of test article162','','',1,1,162,0,0,NULL,9),(172,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-163','Test Article 163',NULL,'Content of test article163','','',1,1,163,0,0,NULL,9),(173,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-164','Test Article 164',NULL,'Content of test article164','','',1,1,164,0,0,NULL,9),(174,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-165','Test Article 165',NULL,'Content of test article165','','',1,1,165,0,0,NULL,9),(175,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-166','Test Article 166',NULL,'Content of test article166','','',1,1,166,0,0,NULL,9),(176,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-167','Test Article 167',NULL,'Content of test article167','','',1,1,167,0,0,NULL,9),(177,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-168','Test Article 168',NULL,'Content of test article168','','',1,1,168,0,0,NULL,9),(178,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-169','Test Article 169',NULL,'Content of test article169','','',1,1,169,0,0,NULL,9),(179,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-170','Test Article 170',NULL,'Content of test article170','','',1,1,170,0,0,NULL,9),(180,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-171','Test Article 171',NULL,'Content of test article171','','',1,1,171,0,0,NULL,9),(181,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-172','Test Article 172',NULL,'Content of test article172','','',1,1,172,0,0,NULL,9),(182,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-173','Test Article 173',NULL,'Content of test article173','','',1,1,173,0,0,NULL,9),(183,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-174','Test Article 174',NULL,'Content of test article174','','',1,1,174,0,0,NULL,9),(184,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-175','Test Article 175',NULL,'Content of test article175','','',1,1,175,0,0,NULL,9),(185,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-176','Test Article 176',NULL,'Content of test article176','','',1,1,176,0,0,NULL,9),(186,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-177','Test Article 177',NULL,'Content of test article177','','',1,1,177,0,0,NULL,9),(187,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-178','Test Article 178',NULL,'Content of test article178','','',1,1,178,0,0,NULL,9),(188,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-179','Test Article 179',NULL,'Content of test article179','','',1,1,179,0,0,NULL,9),(189,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-180','Test Article 180',NULL,'Content of test article180','','',1,1,180,0,0,NULL,9),(190,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-181','Test Article 181',NULL,'Content of test article181','','',1,1,181,0,0,NULL,9),(191,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-182','Test Article 182',NULL,'Content of test article182','','',1,1,182,0,0,NULL,9),(192,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-183','Test Article 183',NULL,'Content of test article183','','',1,1,183,0,0,NULL,9),(193,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-184','Test Article 184',NULL,'Content of test article184','','',1,1,184,0,0,NULL,9),(194,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-185','Test Article 185',NULL,'Content of test article185','','',1,1,185,0,0,NULL,9),(195,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-186','Test Article 186',NULL,'Content of test article186','','',1,1,186,0,0,NULL,9),(196,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-187','Test Article 187',NULL,'Content of test article187','','',1,1,187,0,0,NULL,9),(197,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-188','Test Article 188',NULL,'Content of test article188','','',1,1,188,0,0,NULL,9),(198,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-189','Test Article 189',NULL,'Content of test article189','','',1,1,189,0,0,NULL,9),(199,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-190','Test Article 190',NULL,'Content of test article190','','',1,1,190,0,0,NULL,9),(200,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-191','Test Article 191',NULL,'Content of test article191','','',1,1,191,0,0,NULL,9),(201,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-192','Test Article 192',NULL,'Content of test article192','','',1,1,192,0,0,NULL,9),(202,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-193','Test Article 193',NULL,'Content of test article193','','',1,1,193,0,0,NULL,9),(203,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-194','Test Article 194',NULL,'Content of test article194','','',1,1,194,0,0,NULL,9),(204,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-195','Test Article 195',NULL,'Content of test article195','','',1,1,195,0,0,NULL,9),(205,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-196','Test Article 196',NULL,'Content of test article196','','',1,1,196,0,0,NULL,9),(206,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-197','Test Article 197',NULL,'Content of test article197','','',1,1,197,0,0,NULL,9),(207,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-198','Test Article 198',NULL,'Content of test article198','','',1,1,198,0,0,NULL,9),(208,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-199','Test Article 199',NULL,'Content of test article199','','',1,1,199,0,0,NULL,9),(209,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-200','Test Article 200',NULL,'Content of test article200','','',1,1,200,0,0,NULL,9),(210,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-201','Test Article 201',NULL,'Content of test article201','','',1,1,201,0,0,NULL,9),(211,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-202','Test Article 202',NULL,'Content of test article202','','',1,1,202,0,0,NULL,9),(212,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-203','Test Article 203',NULL,'Content of test article203','','',1,1,203,0,0,NULL,9),(213,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-204','Test Article 204',NULL,'Content of test article204','','',1,1,204,0,0,NULL,9); +/*!40000 ALTER TABLE `SiteTree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteTreeLink` +-- + +DROP TABLE IF EXISTS `SiteTreeLink`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteTreeLink` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTreeLink') DEFAULT 'SilverStripe\\CMS\\Model\\SiteTreeLink', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `LinkedID` int(11) NOT NULL DEFAULT '0', + `ParentID` int(11) NOT NULL DEFAULT '0', + `ParentClass` enum('SilverStripe\\Example\\ArticleCategory','SilverStripe\\Example\\ArticleComment','SilverStripe\\Example\\Property','SilverStripe\\Example\\Region','SilverStripe\\Assets\\File','SilverStripe\\SiteConfig\\SiteConfig','SilverStripe\\Versioned\\ChangeSet','SilverStripe\\Versioned\\ChangeSetItem','SilverStripe\\Assets\\Shortcodes\\FileLink','SilverStripe\\CMS\\Model\\SiteTree','SilverStripe\\CMS\\Model\\SiteTreeLink','SilverStripe\\Security\\Group','SilverStripe\\Security\\LoginAttempt','SilverStripe\\Security\\Member','SilverStripe\\Security\\MemberPassword','SilverStripe\\Security\\Permission','SilverStripe\\Security\\PermissionRole','SilverStripe\\Security\\PermissionRoleCode','SilverStripe\\Security\\RememberLoginHash','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image','Page','SilverStripe\\Example\\ArticleHolder','SilverStripe\\Example\\ArticlePage','SilverStripe\\Example\\HomePage','SilverStripe\\Example\\PropertySearchPage','SilverStripe\\Example\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'SilverStripe\\Example\\ArticleCategory', + PRIMARY KEY (`ID`), + KEY `ClassName` (`ClassName`), + KEY `LinkedID` (`LinkedID`), + KEY `Parent` (`ParentID`,`ParentClass`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteTreeLink` +-- + +LOCK TABLES `SiteTreeLink` WRITE; +/*!40000 ALTER TABLE `SiteTreeLink` DISABLE KEYS */; +/*!40000 ALTER TABLE `SiteTreeLink` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteTree_EditorGroups` +-- + +DROP TABLE IF EXISTS `SiteTree_EditorGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteTree_EditorGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `SiteTreeID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `SiteTreeID` (`SiteTreeID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteTree_EditorGroups` +-- + +LOCK TABLES `SiteTree_EditorGroups` WRITE; +/*!40000 ALTER TABLE `SiteTree_EditorGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `SiteTree_EditorGroups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteTree_Live` +-- + +DROP TABLE IF EXISTS `SiteTree_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteTree_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Example\\ArticleHolder','SilverStripe\\Example\\ArticlePage','SilverStripe\\Example\\HomePage','SilverStripe\\Example\\PropertySearchPage','SilverStripe\\Example\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'Page', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `Version` int(11) NOT NULL DEFAULT '0', + `URLSegment` varchar(255) DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `MenuTitle` varchar(100) DEFAULT NULL, + `Content` mediumtext, + `MetaDescription` mediumtext, + `ExtraMeta` mediumtext, + `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT '0', + `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '0', + `Sort` int(11) NOT NULL DEFAULT '0', + `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT '0', + `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT '0', + `ReportClass` varchar(255) DEFAULT NULL, + `ParentID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `Sort` (`Sort`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`), + KEY `URLSegment` (`URLSegment`) +) ENGINE=InnoDB AUTO_INCREMENT=214 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteTree_Live` +-- + +LOCK TABLES `SiteTree_Live` WRITE; +/*!40000 ALTER TABLE `SiteTree_Live` DISABLE KEYS */; +INSERT INTO `SiteTree_Live` VALUES (1,'SilverStripe\\Example\\HomePage','2019-10-15 05:07:36','2019-10-15 05:07:36','Inherit','Inherit',2,'home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,0),(2,'Page','2019-10-15 09:51:18','2019-10-15 05:07:36','Inherit','Inherit',4,'about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,0),(3,'Page','2019-10-15 09:52:33','2019-10-15 05:07:37','Inherit','Inherit',6,'contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,7,0,0,NULL,0),(4,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit',2,'page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,8,0,0,NULL,0),(5,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit',2,'server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,9,0,0,NULL,0),(6,'SilverStripe\\Example\\PropertySearchPage','2019-10-18 08:33:05','2019-10-15 05:51:22','Inherit','Inherit',7,'find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,0),(7,'Page','2019-10-15 05:59:28','2019-10-15 05:53:30','Inherit','Inherit',5,'list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,0),(8,'SilverStripe\\Example\\RegionsPage','2019-10-17 02:37:16','2019-10-15 05:55:16','Inherit','Inherit',7,'regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,0),(9,'SilverStripe\\Example\\ArticleHolder','2019-10-15 10:28:48','2019-10-15 06:00:25','Inherit','Inherit',7,'travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,0),(10,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:15:16','2019-10-15 09:58:45','Inherit','Inherit',9,'sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(11,'SilverStripe\\Example\\ArticlePage','2019-10-16 07:46:00','2019-10-15 10:01:16','Inherit','Inherit',7,'sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(12,'SilverStripe\\Example\\ArticlePage','2019-10-16 07:46:28','2019-10-15 10:05:04','Inherit','Inherit',7,'sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(13,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-4','Test Article 4',NULL,'Content of test article4','','',1,1,4,0,0,NULL,9),(14,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-5','Test Article 5',NULL,'Content of test article5','','',1,1,5,0,0,NULL,9),(15,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-6','Test Article 6',NULL,'Content of test article6','','',1,1,6,0,0,NULL,9),(16,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-7','Test Article 7',NULL,'Content of test article7','','',1,1,7,0,0,NULL,9),(17,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-8','Test Article 8',NULL,'Content of test article8','','',1,1,8,0,0,NULL,9),(18,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-9','Test Article 9',NULL,'Content of test article9','','',1,1,9,0,0,NULL,9),(19,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-10','Test Article 10',NULL,'Content of test article10','','',1,1,10,0,0,NULL,9),(20,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-11','Test Article 11',NULL,'Content of test article11','','',1,1,11,0,0,NULL,9),(21,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-12','Test Article 12',NULL,'Content of test article12','','',1,1,12,0,0,NULL,9),(22,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-13','Test Article 13',NULL,'Content of test article13','','',1,1,13,0,0,NULL,9),(23,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-14','Test Article 14',NULL,'Content of test article14','','',1,1,14,0,0,NULL,9),(24,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-15','Test Article 15',NULL,'Content of test article15','','',1,1,15,0,0,NULL,9),(25,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-16','Test Article 16',NULL,'Content of test article16','','',1,1,16,0,0,NULL,9),(26,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-17','Test Article 17',NULL,'Content of test article17','','',1,1,17,0,0,NULL,9),(27,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-18','Test Article 18',NULL,'Content of test article18','','',1,1,18,0,0,NULL,9),(28,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-19','Test Article 19',NULL,'Content of test article19','','',1,1,19,0,0,NULL,9),(29,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-20','Test Article 20',NULL,'Content of test article20','','',1,1,20,0,0,NULL,9),(30,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-21','Test Article 21',NULL,'Content of test article21','','',1,1,21,0,0,NULL,9),(31,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-22','Test Article 22',NULL,'Content of test article22','','',1,1,22,0,0,NULL,9),(32,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-23','Test Article 23',NULL,'Content of test article23','','',1,1,23,0,0,NULL,9),(33,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-24','Test Article 24',NULL,'Content of test article24','','',1,1,24,0,0,NULL,9),(34,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-25','Test Article 25',NULL,'Content of test article25','','',1,1,25,0,0,NULL,9),(35,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-26','Test Article 26',NULL,'Content of test article26','','',1,1,26,0,0,NULL,9),(36,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit',1,'test-article-27','Test Article 27',NULL,'Content of test article27','','',1,1,27,0,0,NULL,9),(37,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-28','Test Article 28',NULL,'Content of test article28','','',1,1,28,0,0,NULL,9),(38,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-29','Test Article 29',NULL,'Content of test article29','','',1,1,29,0,0,NULL,9),(39,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-30','Test Article 30',NULL,'Content of test article30','','',1,1,30,0,0,NULL,9),(40,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-31','Test Article 31',NULL,'Content of test article31','','',1,1,31,0,0,NULL,9),(41,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-32','Test Article 32',NULL,'Content of test article32','','',1,1,32,0,0,NULL,9),(42,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-33','Test Article 33',NULL,'Content of test article33','','',1,1,33,0,0,NULL,9),(43,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-34','Test Article 34',NULL,'Content of test article34','','',1,1,34,0,0,NULL,9),(44,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-35','Test Article 35',NULL,'Content of test article35','','',1,1,35,0,0,NULL,9),(45,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-36','Test Article 36',NULL,'Content of test article36','','',1,1,36,0,0,NULL,9),(46,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-37','Test Article 37',NULL,'Content of test article37','','',1,1,37,0,0,NULL,9),(47,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-38','Test Article 38',NULL,'Content of test article38','','',1,1,38,0,0,NULL,9),(48,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-39','Test Article 39',NULL,'Content of test article39','','',1,1,39,0,0,NULL,9),(49,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-40','Test Article 40',NULL,'Content of test article40','','',1,1,40,0,0,NULL,9),(50,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-41','Test Article 41',NULL,'Content of test article41','','',1,1,41,0,0,NULL,9),(51,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-42','Test Article 42',NULL,'Content of test article42','','',1,1,42,0,0,NULL,9),(52,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-43','Test Article 43',NULL,'Content of test article43','','',1,1,43,0,0,NULL,9),(53,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-44','Test Article 44',NULL,'Content of test article44','','',1,1,44,0,0,NULL,9),(54,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-45','Test Article 45',NULL,'Content of test article45','','',1,1,45,0,0,NULL,9),(55,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-46','Test Article 46',NULL,'Content of test article46','','',1,1,46,0,0,NULL,9),(56,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-47','Test Article 47',NULL,'Content of test article47','','',1,1,47,0,0,NULL,9),(57,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-48','Test Article 48',NULL,'Content of test article48','','',1,1,48,0,0,NULL,9),(58,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-49','Test Article 49',NULL,'Content of test article49','','',1,1,49,0,0,NULL,9),(59,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-50','Test Article 50',NULL,'Content of test article50','','',1,1,50,0,0,NULL,9),(60,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-51','Test Article 51',NULL,'Content of test article51','','',1,1,51,0,0,NULL,9),(61,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-52','Test Article 52',NULL,'Content of test article52','','',1,1,52,0,0,NULL,9),(62,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-53','Test Article 53',NULL,'Content of test article53','','',1,1,53,0,0,NULL,9),(63,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-54','Test Article 54',NULL,'Content of test article54','','',1,1,54,0,0,NULL,9),(64,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-55','Test Article 55',NULL,'Content of test article55','','',1,1,55,0,0,NULL,9),(65,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-56','Test Article 56',NULL,'Content of test article56','','',1,1,56,0,0,NULL,9),(66,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-57','Test Article 57',NULL,'Content of test article57','','',1,1,57,0,0,NULL,9),(67,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-58','Test Article 58',NULL,'Content of test article58','','',1,1,58,0,0,NULL,9),(68,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-59','Test Article 59',NULL,'Content of test article59','','',1,1,59,0,0,NULL,9),(69,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-60','Test Article 60',NULL,'Content of test article60','','',1,1,60,0,0,NULL,9),(70,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-61','Test Article 61',NULL,'Content of test article61','','',1,1,61,0,0,NULL,9),(71,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-62','Test Article 62',NULL,'Content of test article62','','',1,1,62,0,0,NULL,9),(72,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-63','Test Article 63',NULL,'Content of test article63','','',1,1,63,0,0,NULL,9),(73,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-64','Test Article 64',NULL,'Content of test article64','','',1,1,64,0,0,NULL,9),(74,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-65','Test Article 65',NULL,'Content of test article65','','',1,1,65,0,0,NULL,9),(75,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-66','Test Article 66',NULL,'Content of test article66','','',1,1,66,0,0,NULL,9),(76,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-67','Test Article 67',NULL,'Content of test article67','','',1,1,67,0,0,NULL,9),(77,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-68','Test Article 68',NULL,'Content of test article68','','',1,1,68,0,0,NULL,9),(78,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-69','Test Article 69',NULL,'Content of test article69','','',1,1,69,0,0,NULL,9),(79,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-70','Test Article 70',NULL,'Content of test article70','','',1,1,70,0,0,NULL,9),(80,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-71','Test Article 71',NULL,'Content of test article71','','',1,1,71,0,0,NULL,9),(81,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-72','Test Article 72',NULL,'Content of test article72','','',1,1,72,0,0,NULL,9),(82,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-73','Test Article 73',NULL,'Content of test article73','','',1,1,73,0,0,NULL,9),(83,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-74','Test Article 74',NULL,'Content of test article74','','',1,1,74,0,0,NULL,9),(84,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-75','Test Article 75',NULL,'Content of test article75','','',1,1,75,0,0,NULL,9),(85,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-76','Test Article 76',NULL,'Content of test article76','','',1,1,76,0,0,NULL,9),(86,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-77','Test Article 77',NULL,'Content of test article77','','',1,1,77,0,0,NULL,9),(87,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-78','Test Article 78',NULL,'Content of test article78','','',1,1,78,0,0,NULL,9),(88,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-79','Test Article 79',NULL,'Content of test article79','','',1,1,79,0,0,NULL,9),(89,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-80','Test Article 80',NULL,'Content of test article80','','',1,1,80,0,0,NULL,9),(90,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-81','Test Article 81',NULL,'Content of test article81','','',1,1,81,0,0,NULL,9),(91,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-82','Test Article 82',NULL,'Content of test article82','','',1,1,82,0,0,NULL,9),(92,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-83','Test Article 83',NULL,'Content of test article83','','',1,1,83,0,0,NULL,9),(93,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-84','Test Article 84',NULL,'Content of test article84','','',1,1,84,0,0,NULL,9),(94,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-85','Test Article 85',NULL,'Content of test article85','','',1,1,85,0,0,NULL,9),(95,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-86','Test Article 86',NULL,'Content of test article86','','',1,1,86,0,0,NULL,9),(96,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-87','Test Article 87',NULL,'Content of test article87','','',1,1,87,0,0,NULL,9),(97,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-88','Test Article 88',NULL,'Content of test article88','','',1,1,88,0,0,NULL,9),(98,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-89','Test Article 89',NULL,'Content of test article89','','',1,1,89,0,0,NULL,9),(99,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-90','Test Article 90',NULL,'Content of test article90','','',1,1,90,0,0,NULL,9),(100,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-91','Test Article 91',NULL,'Content of test article91','','',1,1,91,0,0,NULL,9),(101,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-92','Test Article 92',NULL,'Content of test article92','','',1,1,92,0,0,NULL,9),(102,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-93','Test Article 93',NULL,'Content of test article93','','',1,1,93,0,0,NULL,9),(103,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-94','Test Article 94',NULL,'Content of test article94','','',1,1,94,0,0,NULL,9),(104,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-95','Test Article 95',NULL,'Content of test article95','','',1,1,95,0,0,NULL,9),(105,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-96','Test Article 96',NULL,'Content of test article96','','',1,1,96,0,0,NULL,9),(106,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-97','Test Article 97',NULL,'Content of test article97','','',1,1,97,0,0,NULL,9),(107,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-98','Test Article 98',NULL,'Content of test article98','','',1,1,98,0,0,NULL,9),(108,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-99','Test Article 99',NULL,'Content of test article99','','',1,1,99,0,0,NULL,9),(109,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-100','Test Article 100',NULL,'Content of test article100','','',1,1,100,0,0,NULL,9),(110,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit',1,'test-article-101','Test Article 101',NULL,'Content of test article101','','',1,1,101,0,0,NULL,9),(111,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-102','Test Article 102',NULL,'Content of test article102','','',1,1,102,0,0,NULL,9),(112,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-103','Test Article 103',NULL,'Content of test article103','','',1,1,103,0,0,NULL,9),(113,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-104','Test Article 104',NULL,'Content of test article104','','',1,1,104,0,0,NULL,9),(114,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-105','Test Article 105',NULL,'Content of test article105','','',1,1,105,0,0,NULL,9),(115,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-106','Test Article 106',NULL,'Content of test article106','','',1,1,106,0,0,NULL,9),(116,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-107','Test Article 107',NULL,'Content of test article107','','',1,1,107,0,0,NULL,9),(117,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-108','Test Article 108',NULL,'Content of test article108','','',1,1,108,0,0,NULL,9),(118,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-109','Test Article 109',NULL,'Content of test article109','','',1,1,109,0,0,NULL,9),(119,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-110','Test Article 110',NULL,'Content of test article110','','',1,1,110,0,0,NULL,9),(120,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-111','Test Article 111',NULL,'Content of test article111','','',1,1,111,0,0,NULL,9),(121,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-112','Test Article 112',NULL,'Content of test article112','','',1,1,112,0,0,NULL,9),(122,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-113','Test Article 113',NULL,'Content of test article113','','',1,1,113,0,0,NULL,9),(123,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-114','Test Article 114',NULL,'Content of test article114','','',1,1,114,0,0,NULL,9),(124,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-115','Test Article 115',NULL,'Content of test article115','','',1,1,115,0,0,NULL,9),(125,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-116','Test Article 116',NULL,'Content of test article116','','',1,1,116,0,0,NULL,9),(126,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-117','Test Article 117',NULL,'Content of test article117','','',1,1,117,0,0,NULL,9),(127,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-118','Test Article 118',NULL,'Content of test article118','','',1,1,118,0,0,NULL,9),(128,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-119','Test Article 119',NULL,'Content of test article119','','',1,1,119,0,0,NULL,9),(129,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-120','Test Article 120',NULL,'Content of test article120','','',1,1,120,0,0,NULL,9),(130,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-121','Test Article 121',NULL,'Content of test article121','','',1,1,121,0,0,NULL,9),(131,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-122','Test Article 122',NULL,'Content of test article122','','',1,1,122,0,0,NULL,9),(132,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-123','Test Article 123',NULL,'Content of test article123','','',1,1,123,0,0,NULL,9),(133,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-124','Test Article 124',NULL,'Content of test article124','','',1,1,124,0,0,NULL,9),(134,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-125','Test Article 125',NULL,'Content of test article125','','',1,1,125,0,0,NULL,9),(135,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-126','Test Article 126',NULL,'Content of test article126','','',1,1,126,0,0,NULL,9),(136,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-127','Test Article 127',NULL,'Content of test article127','','',1,1,127,0,0,NULL,9),(137,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-128','Test Article 128',NULL,'Content of test article128','','',1,1,128,0,0,NULL,9),(138,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-129','Test Article 129',NULL,'Content of test article129','','',1,1,129,0,0,NULL,9),(139,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-130','Test Article 130',NULL,'Content of test article130','','',1,1,130,0,0,NULL,9),(140,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-131','Test Article 131',NULL,'Content of test article131','','',1,1,131,0,0,NULL,9),(141,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-132','Test Article 132',NULL,'Content of test article132','','',1,1,132,0,0,NULL,9),(142,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-133','Test Article 133',NULL,'Content of test article133','','',1,1,133,0,0,NULL,9),(143,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-134','Test Article 134',NULL,'Content of test article134','','',1,1,134,0,0,NULL,9),(144,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-135','Test Article 135',NULL,'Content of test article135','','',1,1,135,0,0,NULL,9),(145,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-136','Test Article 136',NULL,'Content of test article136','','',1,1,136,0,0,NULL,9),(146,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-137','Test Article 137',NULL,'Content of test article137','','',1,1,137,0,0,NULL,9),(147,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-138','Test Article 138',NULL,'Content of test article138','','',1,1,138,0,0,NULL,9),(148,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-139','Test Article 139',NULL,'Content of test article139','','',1,1,139,0,0,NULL,9),(149,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-140','Test Article 140',NULL,'Content of test article140','','',1,1,140,0,0,NULL,9),(150,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-141','Test Article 141',NULL,'Content of test article141','','',1,1,141,0,0,NULL,9),(151,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-142','Test Article 142',NULL,'Content of test article142','','',1,1,142,0,0,NULL,9),(152,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-143','Test Article 143',NULL,'Content of test article143','','',1,1,143,0,0,NULL,9),(153,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-144','Test Article 144',NULL,'Content of test article144','','',1,1,144,0,0,NULL,9),(154,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-145','Test Article 145',NULL,'Content of test article145','','',1,1,145,0,0,NULL,9),(155,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-146','Test Article 146',NULL,'Content of test article146','','',1,1,146,0,0,NULL,9),(156,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-147','Test Article 147',NULL,'Content of test article147','','',1,1,147,0,0,NULL,9),(157,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-148','Test Article 148',NULL,'Content of test article148','','',1,1,148,0,0,NULL,9),(158,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-149','Test Article 149',NULL,'Content of test article149','','',1,1,149,0,0,NULL,9),(159,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-150','Test Article 150',NULL,'Content of test article150','','',1,1,150,0,0,NULL,9),(160,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-151','Test Article 151',NULL,'Content of test article151','','',1,1,151,0,0,NULL,9),(161,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-152','Test Article 152',NULL,'Content of test article152','','',1,1,152,0,0,NULL,9),(162,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-153','Test Article 153',NULL,'Content of test article153','','',1,1,153,0,0,NULL,9),(163,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-154','Test Article 154',NULL,'Content of test article154','','',1,1,154,0,0,NULL,9),(164,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-155','Test Article 155',NULL,'Content of test article155','','',1,1,155,0,0,NULL,9),(165,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-156','Test Article 156',NULL,'Content of test article156','','',1,1,156,0,0,NULL,9),(166,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-157','Test Article 157',NULL,'Content of test article157','','',1,1,157,0,0,NULL,9),(167,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-158','Test Article 158',NULL,'Content of test article158','','',1,1,158,0,0,NULL,9),(168,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-159','Test Article 159',NULL,'Content of test article159','','',1,1,159,0,0,NULL,9),(169,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-160','Test Article 160',NULL,'Content of test article160','','',1,1,160,0,0,NULL,9),(170,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-161','Test Article 161',NULL,'Content of test article161','','',1,1,161,0,0,NULL,9),(171,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-162','Test Article 162',NULL,'Content of test article162','','',1,1,162,0,0,NULL,9),(172,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-163','Test Article 163',NULL,'Content of test article163','','',1,1,163,0,0,NULL,9),(173,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-164','Test Article 164',NULL,'Content of test article164','','',1,1,164,0,0,NULL,9),(174,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-165','Test Article 165',NULL,'Content of test article165','','',1,1,165,0,0,NULL,9),(175,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-166','Test Article 166',NULL,'Content of test article166','','',1,1,166,0,0,NULL,9),(176,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-167','Test Article 167',NULL,'Content of test article167','','',1,1,167,0,0,NULL,9),(177,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-168','Test Article 168',NULL,'Content of test article168','','',1,1,168,0,0,NULL,9),(178,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-169','Test Article 169',NULL,'Content of test article169','','',1,1,169,0,0,NULL,9),(179,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-170','Test Article 170',NULL,'Content of test article170','','',1,1,170,0,0,NULL,9),(180,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-171','Test Article 171',NULL,'Content of test article171','','',1,1,171,0,0,NULL,9),(181,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-172','Test Article 172',NULL,'Content of test article172','','',1,1,172,0,0,NULL,9),(182,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-173','Test Article 173',NULL,'Content of test article173','','',1,1,173,0,0,NULL,9),(183,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit',1,'test-article-174','Test Article 174',NULL,'Content of test article174','','',1,1,174,0,0,NULL,9),(184,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-175','Test Article 175',NULL,'Content of test article175','','',1,1,175,0,0,NULL,9),(185,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-176','Test Article 176',NULL,'Content of test article176','','',1,1,176,0,0,NULL,9),(186,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-177','Test Article 177',NULL,'Content of test article177','','',1,1,177,0,0,NULL,9),(187,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-178','Test Article 178',NULL,'Content of test article178','','',1,1,178,0,0,NULL,9),(188,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-179','Test Article 179',NULL,'Content of test article179','','',1,1,179,0,0,NULL,9),(189,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-180','Test Article 180',NULL,'Content of test article180','','',1,1,180,0,0,NULL,9),(190,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-181','Test Article 181',NULL,'Content of test article181','','',1,1,181,0,0,NULL,9),(191,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-182','Test Article 182',NULL,'Content of test article182','','',1,1,182,0,0,NULL,9),(192,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-183','Test Article 183',NULL,'Content of test article183','','',1,1,183,0,0,NULL,9),(193,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-184','Test Article 184',NULL,'Content of test article184','','',1,1,184,0,0,NULL,9),(194,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-185','Test Article 185',NULL,'Content of test article185','','',1,1,185,0,0,NULL,9),(195,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-186','Test Article 186',NULL,'Content of test article186','','',1,1,186,0,0,NULL,9),(196,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-187','Test Article 187',NULL,'Content of test article187','','',1,1,187,0,0,NULL,9),(197,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-188','Test Article 188',NULL,'Content of test article188','','',1,1,188,0,0,NULL,9),(198,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-189','Test Article 189',NULL,'Content of test article189','','',1,1,189,0,0,NULL,9),(199,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-190','Test Article 190',NULL,'Content of test article190','','',1,1,190,0,0,NULL,9),(200,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-191','Test Article 191',NULL,'Content of test article191','','',1,1,191,0,0,NULL,9),(201,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-192','Test Article 192',NULL,'Content of test article192','','',1,1,192,0,0,NULL,9),(202,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-193','Test Article 193',NULL,'Content of test article193','','',1,1,193,0,0,NULL,9),(203,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-194','Test Article 194',NULL,'Content of test article194','','',1,1,194,0,0,NULL,9),(204,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-195','Test Article 195',NULL,'Content of test article195','','',1,1,195,0,0,NULL,9),(205,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-196','Test Article 196',NULL,'Content of test article196','','',1,1,196,0,0,NULL,9),(206,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-197','Test Article 197',NULL,'Content of test article197','','',1,1,197,0,0,NULL,9),(207,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-198','Test Article 198',NULL,'Content of test article198','','',1,1,198,0,0,NULL,9),(208,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-199','Test Article 199',NULL,'Content of test article199','','',1,1,199,0,0,NULL,9),(209,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-200','Test Article 200',NULL,'Content of test article200','','',1,1,200,0,0,NULL,9),(210,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-201','Test Article 201',NULL,'Content of test article201','','',1,1,201,0,0,NULL,9),(211,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-202','Test Article 202',NULL,'Content of test article202','','',1,1,202,0,0,NULL,9),(212,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-203','Test Article 203',NULL,'Content of test article203','','',1,1,203,0,0,NULL,9),(213,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit',1,'test-article-204','Test Article 204',NULL,'Content of test article204','','',1,1,204,0,0,NULL,9); +/*!40000 ALTER TABLE `SiteTree_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteTree_Versions` +-- + +DROP TABLE IF EXISTS `SiteTree_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteTree_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDeleted` tinyint(1) unsigned NOT NULL DEFAULT '0', + `WasDraft` tinyint(1) unsigned NOT NULL DEFAULT '0', + `AuthorID` int(11) NOT NULL DEFAULT '0', + `PublisherID` int(11) NOT NULL DEFAULT '0', + `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Example\\ArticleHolder','SilverStripe\\Example\\ArticlePage','SilverStripe\\Example\\HomePage','SilverStripe\\Example\\PropertySearchPage','SilverStripe\\Example\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'Page', + `LastEdited` datetime DEFAULT NULL, + `Created` datetime DEFAULT NULL, + `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', + `URLSegment` varchar(255) DEFAULT NULL, + `Title` varchar(255) DEFAULT NULL, + `MenuTitle` varchar(100) DEFAULT NULL, + `Content` mediumtext, + `MetaDescription` mediumtext, + `ExtraMeta` mediumtext, + `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT '0', + `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '0', + `Sort` int(11) NOT NULL DEFAULT '0', + `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT '0', + `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT '0', + `ReportClass` varchar(255) DEFAULT NULL, + `ParentID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `AuthorID` (`AuthorID`), + KEY `PublisherID` (`PublisherID`), + KEY `Sort` (`Sort`), + KEY `ClassName` (`ClassName`), + KEY `ParentID` (`ParentID`), + KEY `URLSegment` (`URLSegment`) +) ENGINE=InnoDB AUTO_INCREMENT=268 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteTree_Versions` +-- + +LOCK TABLES `SiteTree_Versions` WRITE; +/*!40000 ALTER TABLE `SiteTree_Versions` DISABLE KEYS */; +INSERT INTO `SiteTree_Versions` VALUES (1,1,1,0,0,1,0,0,'SilverStripe\\Example\\HomePage','2019-10-15 05:07:36','2019-10-15 05:07:36','Inherit','Inherit','home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,0),(2,1,2,1,0,1,0,0,'SilverStripe\\Example\\HomePage','2019-10-15 05:07:36','2019-10-15 05:07:36','Inherit','Inherit','home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,0),(3,2,1,0,0,1,0,0,'Page','2019-10-15 05:07:36','2019-10-15 05:07:36','Inherit','Inherit','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,2,0,0,NULL,0),(4,2,2,1,0,1,0,0,'Page','2019-10-15 05:07:37','2019-10-15 05:07:36','Inherit','Inherit','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,2,0,0,NULL,0),(5,3,1,0,0,1,0,0,'Page','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit','contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,3,0,0,NULL,0),(6,3,2,1,0,1,0,0,'Page','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit','contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,3,0,0,NULL,0),(7,4,1,0,0,1,0,0,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit','page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,4,0,0,NULL,0),(8,4,2,1,0,1,0,0,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit','page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,4,0,0,NULL,0),(9,5,1,0,0,1,0,0,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit','server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,5,0,0,NULL,0),(10,5,2,1,0,1,0,0,'SilverStripe\\ErrorPage\\ErrorPage','2019-10-15 05:07:37','2019-10-15 05:07:37','Inherit','Inherit','server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,5,0,0,NULL,0),(11,3,3,1,1,1,1,1,'Page','2019-10-15 05:49:04','2019-10-15 05:07:37','Inherit','Inherit',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0),(12,6,1,0,0,1,1,0,'Page','2019-10-15 05:51:22','2019-10-15 05:51:22','Inherit','Inherit','new-page','New Page',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,0),(13,6,2,0,0,1,1,0,'Page','2019-10-15 05:52:06','2019-10-15 05:51:22','Inherit','Inherit','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,0),(14,6,3,1,0,1,1,1,'Page','2019-10-15 05:52:23','2019-10-15 05:51:22','Inherit','Inherit','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,0),(15,7,1,0,0,1,1,0,'Page','2019-10-15 05:53:30','2019-10-15 05:53:30','Inherit','Inherit','new-page','New Page',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,0),(16,7,2,0,0,1,1,0,'Page','2019-10-15 05:54:02','2019-10-15 05:53:30','Inherit','Inherit','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,0),(17,7,3,1,0,1,1,1,'Page','2019-10-15 05:54:16','2019-10-15 05:53:30','Inherit','Inherit','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,0),(18,6,4,0,0,1,1,0,'Page','2019-10-15 05:54:54','2019-10-15 05:51:22','Inherit','Inherit','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,0),(19,7,4,0,0,1,1,0,'Page','2019-10-15 05:54:58','2019-10-15 05:53:30','Inherit','Inherit','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,0),(20,8,1,0,0,1,1,0,'Page','2019-10-15 05:55:16','2019-10-15 05:55:16','Inherit','Inherit','new-page','New Page',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,0),(21,8,2,0,0,1,1,0,'Page','2019-10-15 05:56:05','2019-10-15 05:55:16','Inherit','Inherit','regions','Regions',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,0),(22,8,3,1,0,1,1,1,'Page','2019-10-15 05:56:18','2019-10-15 05:55:16','Inherit','Inherit','regions','Regions',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,0),(23,6,5,1,0,1,1,1,'Page','2019-10-15 05:58:41','2019-10-15 05:51:22','Inherit','Inherit','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,0),(24,7,5,1,0,1,1,1,'Page','2019-10-15 05:59:28','2019-10-15 05:53:30','Inherit','Inherit','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,0),(25,9,1,0,0,1,1,0,'SilverStripe\\Example\\ArticleHolder','2019-10-15 06:00:25','2019-10-15 06:00:25','Inherit','Inherit','new-article-holder','New Article Holder',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,0),(26,9,2,0,0,1,1,0,'SilverStripe\\Example\\ArticleHolder','2019-10-15 06:01:08','2019-10-15 06:00:25','Inherit','Inherit','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,0),(27,9,3,1,0,1,1,1,'SilverStripe\\Example\\ArticleHolder','2019-10-15 06:01:20','2019-10-15 06:00:25','Inherit','Inherit','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,0),(28,3,4,0,0,1,1,0,'Page','2019-10-15 09:46:53','2019-10-15 05:07:37','Inherit','Inherit','contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,3,0,0,NULL,0),(29,3,5,0,0,1,1,0,'Page','2019-10-15 09:47:35','2019-10-15 05:07:37','Inherit','Inherit','contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,4,0,0,NULL,0),(30,8,4,0,0,1,1,0,'Page','2019-10-15 09:47:49','2019-10-15 05:55:16','Inherit','Inherit','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,0),(31,9,4,0,0,1,1,0,'SilverStripe\\Example\\ArticleHolder','2019-10-15 09:48:35','2019-10-15 06:00:25','Inherit','Inherit','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,0),(32,2,3,0,0,1,1,0,'Page','2019-10-15 09:48:44','2019-10-15 05:07:36','Inherit','Inherit','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,0),(33,8,5,1,0,1,1,1,'Page','2019-10-15 09:49:10','2019-10-15 05:55:16','Inherit','Inherit','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,0),(34,9,5,1,0,1,1,1,'SilverStripe\\Example\\ArticleHolder','2019-10-15 09:50:17','2019-10-15 06:00:25','Inherit','Inherit','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,0),(35,2,4,1,0,1,1,1,'Page','2019-10-15 09:51:18','2019-10-15 05:07:36','Inherit','Inherit','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,0),(36,3,6,1,0,1,1,1,'Page','2019-10-15 09:52:33','2019-10-15 05:07:37','Inherit','Inherit','contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,7,0,0,NULL,0),(37,10,1,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 09:58:45','2019-10-15 09:58:45','Inherit','Inherit','new-article-page','New Article Page',NULL,NULL,NULL,NULL,1,1,1,0,0,NULL,9),(38,10,2,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:00:04','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(39,10,3,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:00:17','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(40,11,1,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:01:16','2019-10-15 10:01:16','Inherit','Inherit','new-article-page','New Article Page',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,9),(41,11,2,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:01:54','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(42,11,3,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:03:36','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(43,12,1,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:05:04','2019-10-15 10:05:04','Inherit','Inherit','new-article-page','New Article Page',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(44,12,2,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:06:10','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(45,12,3,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:06:26','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(46,9,6,0,0,1,1,0,'SilverStripe\\Example\\ArticleHolder','2019-10-15 10:28:15','2019-10-15 06:00:25','Inherit','Inherit','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,0),(47,9,7,1,0,1,1,1,'SilverStripe\\Example\\ArticleHolder','2019-10-15 10:28:48','2019-10-15 06:00:25','Inherit','Inherit','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,0),(48,10,4,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:30:50','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(49,10,5,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:31:40','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(50,11,4,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:35:37','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(51,11,5,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:36:02','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(52,12,4,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:36:06','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(53,12,5,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-15 10:37:26','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(54,10,7,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-16 07:44:22','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(55,11,7,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-16 07:46:00','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(56,12,7,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-16 07:46:28','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(57,10,8,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:15:16','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(58,10,9,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:15:16','2019-10-15 09:58:45','Inherit','Inherit','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,9),(59,11,8,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:27:21','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(60,11,9,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:27:21','2019-10-15 10:01:16','Inherit','Inherit','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,9),(61,12,8,0,0,1,1,0,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:28:26','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(62,12,9,1,0,1,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-16 10:28:26','2019-10-15 10:05:04','Inherit','Inherit','sample-article-3','Sample Article 3',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,9),(63,8,6,0,0,1,1,0,'SilverStripe\\Example\\RegionsPage','2019-10-17 02:31:30','2019-10-15 05:55:16','Inherit','Inherit','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,0),(64,8,7,1,0,1,1,1,'SilverStripe\\Example\\RegionsPage','2019-10-17 02:37:16','2019-10-15 05:55:16','Inherit','Inherit','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,0),(65,6,6,0,0,1,1,0,'SilverStripe\\Example\\PropertySearchPage','2019-10-18 08:32:55','2019-10-15 05:51:22','Inherit','Inherit','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,0),(66,6,7,1,0,1,1,1,'SilverStripe\\Example\\PropertySearchPage','2019-10-18 08:33:05','2019-10-15 05:51:22','Inherit','Inherit','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,0),(67,13,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-4','Test Article 4',NULL,'Content of test article4','','',1,1,4,0,0,NULL,9),(68,14,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-5','Test Article 5',NULL,'Content of test article5','','',1,1,5,0,0,NULL,9),(69,15,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-6','Test Article 6',NULL,'Content of test article6','','',1,1,6,0,0,NULL,9),(70,16,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-7','Test Article 7',NULL,'Content of test article7','','',1,1,7,0,0,NULL,9),(71,17,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-8','Test Article 8',NULL,'Content of test article8','','',1,1,8,0,0,NULL,9),(72,18,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-9','Test Article 9',NULL,'Content of test article9','','',1,1,9,0,0,NULL,9),(73,19,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-10','Test Article 10',NULL,'Content of test article10','','',1,1,10,0,0,NULL,9),(74,20,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-11','Test Article 11',NULL,'Content of test article11','','',1,1,11,0,0,NULL,9),(75,21,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-12','Test Article 12',NULL,'Content of test article12','','',1,1,12,0,0,NULL,9),(76,22,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-13','Test Article 13',NULL,'Content of test article13','','',1,1,13,0,0,NULL,9),(77,23,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-14','Test Article 14',NULL,'Content of test article14','','',1,1,14,0,0,NULL,9),(78,24,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-15','Test Article 15',NULL,'Content of test article15','','',1,1,15,0,0,NULL,9),(79,25,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-16','Test Article 16',NULL,'Content of test article16','','',1,1,16,0,0,NULL,9),(80,26,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-17','Test Article 17',NULL,'Content of test article17','','',1,1,17,0,0,NULL,9),(81,27,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-18','Test Article 18',NULL,'Content of test article18','','',1,1,18,0,0,NULL,9),(82,28,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-19','Test Article 19',NULL,'Content of test article19','','',1,1,19,0,0,NULL,9),(83,29,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-20','Test Article 20',NULL,'Content of test article20','','',1,1,20,0,0,NULL,9),(84,30,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-21','Test Article 21',NULL,'Content of test article21','','',1,1,21,0,0,NULL,9),(85,31,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-22','Test Article 22',NULL,'Content of test article22','','',1,1,22,0,0,NULL,9),(86,32,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-23','Test Article 23',NULL,'Content of test article23','','',1,1,23,0,0,NULL,9),(87,33,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-24','Test Article 24',NULL,'Content of test article24','','',1,1,24,0,0,NULL,9),(88,34,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-25','Test Article 25',NULL,'Content of test article25','','',1,1,25,0,0,NULL,9),(89,35,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-26','Test Article 26',NULL,'Content of test article26','','',1,1,26,0,0,NULL,9),(90,36,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:20','2019-10-18 00:00:20','Inherit','Inherit','test-article-27','Test Article 27',NULL,'Content of test article27','','',1,1,27,0,0,NULL,9),(91,37,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-28','Test Article 28',NULL,'Content of test article28','','',1,1,28,0,0,NULL,9),(92,38,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-29','Test Article 29',NULL,'Content of test article29','','',1,1,29,0,0,NULL,9),(93,39,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-30','Test Article 30',NULL,'Content of test article30','','',1,1,30,0,0,NULL,9),(94,40,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-31','Test Article 31',NULL,'Content of test article31','','',1,1,31,0,0,NULL,9),(95,41,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-32','Test Article 32',NULL,'Content of test article32','','',1,1,32,0,0,NULL,9),(96,42,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-33','Test Article 33',NULL,'Content of test article33','','',1,1,33,0,0,NULL,9),(97,43,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-34','Test Article 34',NULL,'Content of test article34','','',1,1,34,0,0,NULL,9),(98,44,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-35','Test Article 35',NULL,'Content of test article35','','',1,1,35,0,0,NULL,9),(99,45,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-36','Test Article 36',NULL,'Content of test article36','','',1,1,36,0,0,NULL,9),(100,46,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-37','Test Article 37',NULL,'Content of test article37','','',1,1,37,0,0,NULL,9),(101,47,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-38','Test Article 38',NULL,'Content of test article38','','',1,1,38,0,0,NULL,9),(102,48,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-39','Test Article 39',NULL,'Content of test article39','','',1,1,39,0,0,NULL,9),(103,49,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-40','Test Article 40',NULL,'Content of test article40','','',1,1,40,0,0,NULL,9),(104,50,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-41','Test Article 41',NULL,'Content of test article41','','',1,1,41,0,0,NULL,9),(105,51,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-42','Test Article 42',NULL,'Content of test article42','','',1,1,42,0,0,NULL,9),(106,52,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-43','Test Article 43',NULL,'Content of test article43','','',1,1,43,0,0,NULL,9),(107,53,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-44','Test Article 44',NULL,'Content of test article44','','',1,1,44,0,0,NULL,9),(108,54,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-45','Test Article 45',NULL,'Content of test article45','','',1,1,45,0,0,NULL,9),(109,55,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-46','Test Article 46',NULL,'Content of test article46','','',1,1,46,0,0,NULL,9),(110,56,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-47','Test Article 47',NULL,'Content of test article47','','',1,1,47,0,0,NULL,9),(111,57,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-48','Test Article 48',NULL,'Content of test article48','','',1,1,48,0,0,NULL,9),(112,58,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-49','Test Article 49',NULL,'Content of test article49','','',1,1,49,0,0,NULL,9),(113,59,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-50','Test Article 50',NULL,'Content of test article50','','',1,1,50,0,0,NULL,9),(114,60,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-51','Test Article 51',NULL,'Content of test article51','','',1,1,51,0,0,NULL,9),(115,61,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-52','Test Article 52',NULL,'Content of test article52','','',1,1,52,0,0,NULL,9),(116,62,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-53','Test Article 53',NULL,'Content of test article53','','',1,1,53,0,0,NULL,9),(117,63,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-54','Test Article 54',NULL,'Content of test article54','','',1,1,54,0,0,NULL,9),(118,64,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-55','Test Article 55',NULL,'Content of test article55','','',1,1,55,0,0,NULL,9),(119,65,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-56','Test Article 56',NULL,'Content of test article56','','',1,1,56,0,0,NULL,9),(120,66,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-57','Test Article 57',NULL,'Content of test article57','','',1,1,57,0,0,NULL,9),(121,67,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-58','Test Article 58',NULL,'Content of test article58','','',1,1,58,0,0,NULL,9),(122,68,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-59','Test Article 59',NULL,'Content of test article59','','',1,1,59,0,0,NULL,9),(123,69,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-60','Test Article 60',NULL,'Content of test article60','','',1,1,60,0,0,NULL,9),(124,70,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-61','Test Article 61',NULL,'Content of test article61','','',1,1,61,0,0,NULL,9),(125,71,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-62','Test Article 62',NULL,'Content of test article62','','',1,1,62,0,0,NULL,9),(126,72,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-63','Test Article 63',NULL,'Content of test article63','','',1,1,63,0,0,NULL,9),(127,73,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-64','Test Article 64',NULL,'Content of test article64','','',1,1,64,0,0,NULL,9),(128,74,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-65','Test Article 65',NULL,'Content of test article65','','',1,1,65,0,0,NULL,9),(129,75,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-66','Test Article 66',NULL,'Content of test article66','','',1,1,66,0,0,NULL,9),(130,76,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-67','Test Article 67',NULL,'Content of test article67','','',1,1,67,0,0,NULL,9),(131,77,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-68','Test Article 68',NULL,'Content of test article68','','',1,1,68,0,0,NULL,9),(132,78,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-69','Test Article 69',NULL,'Content of test article69','','',1,1,69,0,0,NULL,9),(133,79,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-70','Test Article 70',NULL,'Content of test article70','','',1,1,70,0,0,NULL,9),(134,80,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-71','Test Article 71',NULL,'Content of test article71','','',1,1,71,0,0,NULL,9),(135,81,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-72','Test Article 72',NULL,'Content of test article72','','',1,1,72,0,0,NULL,9),(136,82,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-73','Test Article 73',NULL,'Content of test article73','','',1,1,73,0,0,NULL,9),(137,83,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-74','Test Article 74',NULL,'Content of test article74','','',1,1,74,0,0,NULL,9),(138,84,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-75','Test Article 75',NULL,'Content of test article75','','',1,1,75,0,0,NULL,9),(139,85,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-76','Test Article 76',NULL,'Content of test article76','','',1,1,76,0,0,NULL,9),(140,86,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-77','Test Article 77',NULL,'Content of test article77','','',1,1,77,0,0,NULL,9),(141,87,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-78','Test Article 78',NULL,'Content of test article78','','',1,1,78,0,0,NULL,9),(142,88,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-79','Test Article 79',NULL,'Content of test article79','','',1,1,79,0,0,NULL,9),(143,89,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-80','Test Article 80',NULL,'Content of test article80','','',1,1,80,0,0,NULL,9),(144,90,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-81','Test Article 81',NULL,'Content of test article81','','',1,1,81,0,0,NULL,9),(145,91,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-82','Test Article 82',NULL,'Content of test article82','','',1,1,82,0,0,NULL,9),(146,92,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-83','Test Article 83',NULL,'Content of test article83','','',1,1,83,0,0,NULL,9),(147,93,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-84','Test Article 84',NULL,'Content of test article84','','',1,1,84,0,0,NULL,9),(148,94,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-85','Test Article 85',NULL,'Content of test article85','','',1,1,85,0,0,NULL,9),(149,95,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-86','Test Article 86',NULL,'Content of test article86','','',1,1,86,0,0,NULL,9),(150,96,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-87','Test Article 87',NULL,'Content of test article87','','',1,1,87,0,0,NULL,9),(151,97,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-88','Test Article 88',NULL,'Content of test article88','','',1,1,88,0,0,NULL,9),(152,98,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-89','Test Article 89',NULL,'Content of test article89','','',1,1,89,0,0,NULL,9),(153,99,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-90','Test Article 90',NULL,'Content of test article90','','',1,1,90,0,0,NULL,9),(154,100,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-91','Test Article 91',NULL,'Content of test article91','','',1,1,91,0,0,NULL,9),(155,101,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-92','Test Article 92',NULL,'Content of test article92','','',1,1,92,0,0,NULL,9),(156,102,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-93','Test Article 93',NULL,'Content of test article93','','',1,1,93,0,0,NULL,9),(157,103,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-94','Test Article 94',NULL,'Content of test article94','','',1,1,94,0,0,NULL,9),(158,104,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-95','Test Article 95',NULL,'Content of test article95','','',1,1,95,0,0,NULL,9),(159,105,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-96','Test Article 96',NULL,'Content of test article96','','',1,1,96,0,0,NULL,9),(160,106,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-97','Test Article 97',NULL,'Content of test article97','','',1,1,97,0,0,NULL,9),(161,107,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-98','Test Article 98',NULL,'Content of test article98','','',1,1,98,0,0,NULL,9),(162,108,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-99','Test Article 99',NULL,'Content of test article99','','',1,1,99,0,0,NULL,9),(163,109,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-100','Test Article 100',NULL,'Content of test article100','','',1,1,100,0,0,NULL,9),(164,110,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:21','2019-10-18 00:00:21','Inherit','Inherit','test-article-101','Test Article 101',NULL,'Content of test article101','','',1,1,101,0,0,NULL,9),(165,111,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-102','Test Article 102',NULL,'Content of test article102','','',1,1,102,0,0,NULL,9),(166,112,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-103','Test Article 103',NULL,'Content of test article103','','',1,1,103,0,0,NULL,9),(167,113,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-104','Test Article 104',NULL,'Content of test article104','','',1,1,104,0,0,NULL,9),(168,114,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-105','Test Article 105',NULL,'Content of test article105','','',1,1,105,0,0,NULL,9),(169,115,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-106','Test Article 106',NULL,'Content of test article106','','',1,1,106,0,0,NULL,9),(170,116,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-107','Test Article 107',NULL,'Content of test article107','','',1,1,107,0,0,NULL,9),(171,117,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-108','Test Article 108',NULL,'Content of test article108','','',1,1,108,0,0,NULL,9),(172,118,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-109','Test Article 109',NULL,'Content of test article109','','',1,1,109,0,0,NULL,9),(173,119,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-110','Test Article 110',NULL,'Content of test article110','','',1,1,110,0,0,NULL,9),(174,120,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-111','Test Article 111',NULL,'Content of test article111','','',1,1,111,0,0,NULL,9),(175,121,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-112','Test Article 112',NULL,'Content of test article112','','',1,1,112,0,0,NULL,9),(176,122,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-113','Test Article 113',NULL,'Content of test article113','','',1,1,113,0,0,NULL,9),(177,123,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-114','Test Article 114',NULL,'Content of test article114','','',1,1,114,0,0,NULL,9),(178,124,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-115','Test Article 115',NULL,'Content of test article115','','',1,1,115,0,0,NULL,9),(179,125,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-116','Test Article 116',NULL,'Content of test article116','','',1,1,116,0,0,NULL,9),(180,126,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-117','Test Article 117',NULL,'Content of test article117','','',1,1,117,0,0,NULL,9),(181,127,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-118','Test Article 118',NULL,'Content of test article118','','',1,1,118,0,0,NULL,9),(182,128,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-119','Test Article 119',NULL,'Content of test article119','','',1,1,119,0,0,NULL,9),(183,129,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-120','Test Article 120',NULL,'Content of test article120','','',1,1,120,0,0,NULL,9),(184,130,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-121','Test Article 121',NULL,'Content of test article121','','',1,1,121,0,0,NULL,9),(185,131,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-122','Test Article 122',NULL,'Content of test article122','','',1,1,122,0,0,NULL,9),(186,132,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-123','Test Article 123',NULL,'Content of test article123','','',1,1,123,0,0,NULL,9),(187,133,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-124','Test Article 124',NULL,'Content of test article124','','',1,1,124,0,0,NULL,9),(188,134,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-125','Test Article 125',NULL,'Content of test article125','','',1,1,125,0,0,NULL,9),(189,135,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-126','Test Article 126',NULL,'Content of test article126','','',1,1,126,0,0,NULL,9),(190,136,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-127','Test Article 127',NULL,'Content of test article127','','',1,1,127,0,0,NULL,9),(191,137,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-128','Test Article 128',NULL,'Content of test article128','','',1,1,128,0,0,NULL,9),(192,138,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-129','Test Article 129',NULL,'Content of test article129','','',1,1,129,0,0,NULL,9),(193,139,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-130','Test Article 130',NULL,'Content of test article130','','',1,1,130,0,0,NULL,9),(194,140,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-131','Test Article 131',NULL,'Content of test article131','','',1,1,131,0,0,NULL,9),(195,141,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-132','Test Article 132',NULL,'Content of test article132','','',1,1,132,0,0,NULL,9),(196,142,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-133','Test Article 133',NULL,'Content of test article133','','',1,1,133,0,0,NULL,9),(197,143,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-134','Test Article 134',NULL,'Content of test article134','','',1,1,134,0,0,NULL,9),(198,144,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-135','Test Article 135',NULL,'Content of test article135','','',1,1,135,0,0,NULL,9),(199,145,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-136','Test Article 136',NULL,'Content of test article136','','',1,1,136,0,0,NULL,9),(200,146,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-137','Test Article 137',NULL,'Content of test article137','','',1,1,137,0,0,NULL,9),(201,147,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-138','Test Article 138',NULL,'Content of test article138','','',1,1,138,0,0,NULL,9),(202,148,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-139','Test Article 139',NULL,'Content of test article139','','',1,1,139,0,0,NULL,9),(203,149,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-140','Test Article 140',NULL,'Content of test article140','','',1,1,140,0,0,NULL,9),(204,150,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-141','Test Article 141',NULL,'Content of test article141','','',1,1,141,0,0,NULL,9),(205,151,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-142','Test Article 142',NULL,'Content of test article142','','',1,1,142,0,0,NULL,9),(206,152,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-143','Test Article 143',NULL,'Content of test article143','','',1,1,143,0,0,NULL,9),(207,153,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-144','Test Article 144',NULL,'Content of test article144','','',1,1,144,0,0,NULL,9),(208,154,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-145','Test Article 145',NULL,'Content of test article145','','',1,1,145,0,0,NULL,9),(209,155,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-146','Test Article 146',NULL,'Content of test article146','','',1,1,146,0,0,NULL,9),(210,156,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-147','Test Article 147',NULL,'Content of test article147','','',1,1,147,0,0,NULL,9),(211,157,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-148','Test Article 148',NULL,'Content of test article148','','',1,1,148,0,0,NULL,9),(212,158,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-149','Test Article 149',NULL,'Content of test article149','','',1,1,149,0,0,NULL,9),(213,159,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-150','Test Article 150',NULL,'Content of test article150','','',1,1,150,0,0,NULL,9),(214,160,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-151','Test Article 151',NULL,'Content of test article151','','',1,1,151,0,0,NULL,9),(215,161,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-152','Test Article 152',NULL,'Content of test article152','','',1,1,152,0,0,NULL,9),(216,162,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-153','Test Article 153',NULL,'Content of test article153','','',1,1,153,0,0,NULL,9),(217,163,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-154','Test Article 154',NULL,'Content of test article154','','',1,1,154,0,0,NULL,9),(218,164,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-155','Test Article 155',NULL,'Content of test article155','','',1,1,155,0,0,NULL,9),(219,165,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-156','Test Article 156',NULL,'Content of test article156','','',1,1,156,0,0,NULL,9),(220,166,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-157','Test Article 157',NULL,'Content of test article157','','',1,1,157,0,0,NULL,9),(221,167,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-158','Test Article 158',NULL,'Content of test article158','','',1,1,158,0,0,NULL,9),(222,168,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-159','Test Article 159',NULL,'Content of test article159','','',1,1,159,0,0,NULL,9),(223,169,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-160','Test Article 160',NULL,'Content of test article160','','',1,1,160,0,0,NULL,9),(224,170,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-161','Test Article 161',NULL,'Content of test article161','','',1,1,161,0,0,NULL,9),(225,171,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-162','Test Article 162',NULL,'Content of test article162','','',1,1,162,0,0,NULL,9),(226,172,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-163','Test Article 163',NULL,'Content of test article163','','',1,1,163,0,0,NULL,9),(227,173,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-164','Test Article 164',NULL,'Content of test article164','','',1,1,164,0,0,NULL,9),(228,174,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-165','Test Article 165',NULL,'Content of test article165','','',1,1,165,0,0,NULL,9),(229,175,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-166','Test Article 166',NULL,'Content of test article166','','',1,1,166,0,0,NULL,9),(230,176,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-167','Test Article 167',NULL,'Content of test article167','','',1,1,167,0,0,NULL,9),(231,177,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-168','Test Article 168',NULL,'Content of test article168','','',1,1,168,0,0,NULL,9),(232,178,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-169','Test Article 169',NULL,'Content of test article169','','',1,1,169,0,0,NULL,9),(233,179,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-170','Test Article 170',NULL,'Content of test article170','','',1,1,170,0,0,NULL,9),(234,180,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-171','Test Article 171',NULL,'Content of test article171','','',1,1,171,0,0,NULL,9),(235,181,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-172','Test Article 172',NULL,'Content of test article172','','',1,1,172,0,0,NULL,9),(236,182,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-173','Test Article 173',NULL,'Content of test article173','','',1,1,173,0,0,NULL,9),(237,183,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:22','2019-10-18 00:00:22','Inherit','Inherit','test-article-174','Test Article 174',NULL,'Content of test article174','','',1,1,174,0,0,NULL,9),(238,184,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-175','Test Article 175',NULL,'Content of test article175','','',1,1,175,0,0,NULL,9),(239,185,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-176','Test Article 176',NULL,'Content of test article176','','',1,1,176,0,0,NULL,9),(240,186,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-177','Test Article 177',NULL,'Content of test article177','','',1,1,177,0,0,NULL,9),(241,187,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-178','Test Article 178',NULL,'Content of test article178','','',1,1,178,0,0,NULL,9),(242,188,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-179','Test Article 179',NULL,'Content of test article179','','',1,1,179,0,0,NULL,9),(243,189,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-180','Test Article 180',NULL,'Content of test article180','','',1,1,180,0,0,NULL,9),(244,190,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-181','Test Article 181',NULL,'Content of test article181','','',1,1,181,0,0,NULL,9),(245,191,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-182','Test Article 182',NULL,'Content of test article182','','',1,1,182,0,0,NULL,9),(246,192,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-183','Test Article 183',NULL,'Content of test article183','','',1,1,183,0,0,NULL,9),(247,193,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-184','Test Article 184',NULL,'Content of test article184','','',1,1,184,0,0,NULL,9),(248,194,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-185','Test Article 185',NULL,'Content of test article185','','',1,1,185,0,0,NULL,9),(249,195,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-186','Test Article 186',NULL,'Content of test article186','','',1,1,186,0,0,NULL,9),(250,196,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-187','Test Article 187',NULL,'Content of test article187','','',1,1,187,0,0,NULL,9),(251,197,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-188','Test Article 188',NULL,'Content of test article188','','',1,1,188,0,0,NULL,9),(252,198,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-189','Test Article 189',NULL,'Content of test article189','','',1,1,189,0,0,NULL,9),(253,199,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-190','Test Article 190',NULL,'Content of test article190','','',1,1,190,0,0,NULL,9),(254,200,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-191','Test Article 191',NULL,'Content of test article191','','',1,1,191,0,0,NULL,9),(255,201,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-192','Test Article 192',NULL,'Content of test article192','','',1,1,192,0,0,NULL,9),(256,202,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-193','Test Article 193',NULL,'Content of test article193','','',1,1,193,0,0,NULL,9),(257,203,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-194','Test Article 194',NULL,'Content of test article194','','',1,1,194,0,0,NULL,9),(258,204,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-195','Test Article 195',NULL,'Content of test article195','','',1,1,195,0,0,NULL,9),(259,205,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-196','Test Article 196',NULL,'Content of test article196','','',1,1,196,0,0,NULL,9),(260,206,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-197','Test Article 197',NULL,'Content of test article197','','',1,1,197,0,0,NULL,9),(261,207,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-198','Test Article 198',NULL,'Content of test article198','','',1,1,198,0,0,NULL,9),(262,208,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-199','Test Article 199',NULL,'Content of test article199','','',1,1,199,0,0,NULL,9),(263,209,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-200','Test Article 200',NULL,'Content of test article200','','',1,1,200,0,0,NULL,9),(264,210,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-201','Test Article 201',NULL,'Content of test article201','','',1,1,201,0,0,NULL,9),(265,211,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-202','Test Article 202',NULL,'Content of test article202','','',1,1,202,0,0,NULL,9),(266,212,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-203','Test Article 203',NULL,'Content of test article203','','',1,1,203,0,0,NULL,9),(267,213,1,1,0,0,1,1,'SilverStripe\\Example\\ArticlePage','2019-10-18 00:00:23','2019-10-18 00:00:23','Inherit','Inherit','test-article-204','Test Article 204',NULL,'Content of test article204','','',1,1,204,0,0,NULL,9); +/*!40000 ALTER TABLE `SiteTree_Versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `SiteTree_ViewerGroups` +-- + +DROP TABLE IF EXISTS `SiteTree_ViewerGroups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SiteTree_ViewerGroups` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `SiteTreeID` int(11) NOT NULL DEFAULT '0', + `GroupID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `SiteTreeID` (`SiteTreeID`), + KEY `GroupID` (`GroupID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SiteTree_ViewerGroups` +-- + +LOCK TABLES `SiteTree_ViewerGroups` WRITE; +/*!40000 ALTER TABLE `SiteTree_ViewerGroups` DISABLE KEYS */; +/*!40000 ALTER TABLE `SiteTree_ViewerGroups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `VirtualPage` +-- + +DROP TABLE IF EXISTS `VirtualPage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `VirtualPage` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `VersionID` int(11) NOT NULL DEFAULT '0', + `CopyContentFromID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `CopyContentFromID` (`CopyContentFromID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `VirtualPage` +-- + +LOCK TABLES `VirtualPage` WRITE; +/*!40000 ALTER TABLE `VirtualPage` DISABLE KEYS */; +/*!40000 ALTER TABLE `VirtualPage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `VirtualPage_Live` +-- + +DROP TABLE IF EXISTS `VirtualPage_Live`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `VirtualPage_Live` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `VersionID` int(11) NOT NULL DEFAULT '0', + `CopyContentFromID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `CopyContentFromID` (`CopyContentFromID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `VirtualPage_Live` +-- + +LOCK TABLES `VirtualPage_Live` WRITE; +/*!40000 ALTER TABLE `VirtualPage_Live` DISABLE KEYS */; +/*!40000 ALTER TABLE `VirtualPage_Live` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `VirtualPage_Versions` +-- + +DROP TABLE IF EXISTS `VirtualPage_Versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `VirtualPage_Versions` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `RecordID` int(11) NOT NULL DEFAULT '0', + `Version` int(11) NOT NULL DEFAULT '0', + `VersionID` int(11) NOT NULL DEFAULT '0', + `CopyContentFromID` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), + KEY `RecordID` (`RecordID`), + KEY `Version` (`Version`), + KEY `CopyContentFromID` (`CopyContentFromID`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `VirtualPage_Versions` +-- + +LOCK TABLES `VirtualPage_Versions` WRITE; +/*!40000 ALTER TABLE `VirtualPage_Versions` DISABLE KEYS */; +/*!40000 ALTER TABLE `VirtualPage_Versions` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2019-10-18 0:30:51 diff --git a/Lesson-21-begin/.editorconfig b/Lesson-21-begin/.editorconfig index 9f76bfa..dbb25c6 100644 --- a/Lesson-21-begin/.editorconfig +++ b/Lesson-21-begin/.editorconfig @@ -15,10 +15,6 @@ trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false -[*.yml] -indent_size = 2 -indent_style = space - [*.{yml,json}] # The indent size used in the `package.json` file cannot be changed # https://github.com/npm/npm/pull/3180#issuecomment-16336516 diff --git a/Lesson-21-begin/.gitignore b/Lesson-21-begin/.gitignore index 2e0ec5f..9b0a32b 100644 --- a/Lesson-21-begin/.gitignore +++ b/Lesson-21-begin/.gitignore @@ -2,8 +2,6 @@ /.env /vendor/ /themes/simple/ -/resources/ -/public/resources/ -/node_modules/ - - +/_resources/ +/public/_resources/ +.devcontainer/mysql-data/ diff --git a/Lesson-21-begin/.htaccess b/Lesson-21-begin/.htaccess new file mode 100644 index 0000000..adbd7c8 --- /dev/null +++ b/Lesson-21-begin/.htaccess @@ -0,0 +1,2 @@ +RewriteEngine On +RewriteRule ^(.*)$ public/$1 diff --git a/Lesson-21-begin/README.md b/Lesson-21-begin/README.md new file mode 100644 index 0000000..5d041de --- /dev/null +++ b/Lesson-21-begin/README.md @@ -0,0 +1,28 @@ +## Overview + +Base project folder for a SilverStripe ([http://silverstripe.org](http://silverstripe.org)) installation. Required modules are installed via [http://github.com/silverstripe/recipe-cms](http://github.com/silverstripe/recipe-cms). For information on how to change the dependencies in a recipe, please have a look at [https://github.com/silverstripe/recipe-plugin](https://github.com/silverstripe/recipe-plugin). In addition, installer includes [theme/simple](https://github.com/silverstripe-themes/silverstripe-simple) as a default theme. + +## Installation ## + +See [installation on different platforms](http://doc.silverstripe.org/framework/en/installation/), +and [installation from source](http://doc.silverstripe.org/framework/en/installation/from-source). + +## Bugtracker ## + +Bugs are tracked on github.com ([framework issues](https://github.com/silverstripe/silverstripe-framework/issues), +[cms issues](https://github.com/silverstripe/silverstripe-cms/issues)). +Please read our [issue reporting guidelines](https://docs.silverstripe.org/en/4/contributing/issues_and_bugs/). + +## Development and Contribution ## + +If you would like to make changes to the SilverStripe core codebase, we have an extensive [guide to contributing code](http://doc.silverstripe.org/framework/en/misc/contributing/code). + +## Links ## + + * [Changelogs](http://doc.silverstripe.org/framework/en/changelogs/) + * [Bugtracker: Framework](https://github.com/silverstripe/silverstripe-framework/issues) + * [Bugtracker: CMS](https://github.com/silverstripe/silverstripe-cms/issues) + * [Bugtracker: Installer](https://github.com/silverstripe/silverstripe-installer/issues) + * [Forums](http://silverstripe.org/forums) + * [Developer Mailinglist](https://groups.google.com/forum/#!forum/silverstripe-dev) + * [License](./LICENSE) diff --git a/Lesson-21-begin/__assets/assets/.gitignore b/Lesson-21-begin/__assets/assets/.gitignore deleted file mode 100644 index d826e24..0000000 --- a/Lesson-21-begin/__assets/assets/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore sensible defaults -/*/ -/error-*.html -/_combinedfiles/ diff --git a/Lesson-21-begin/__assets/assets/.htaccess b/Lesson-21-begin/__assets/assets/.htaccess deleted file mode 100644 index 05d05d3..0000000 --- a/Lesson-21-begin/__assets/assets/.htaccess +++ /dev/null @@ -1,27 +0,0 @@ -# -# Whitelist appropriate assets files. -# This file is automatically generated via File.allowed_extensions configuration -# See AssetAdapter::renderTemplate() for reference. -# - - - SetEnv HTTP_MOD_REWRITE On - RewriteEngine On - - # Disable PHP handler - RewriteCond %{REQUEST_URI} .(?i:php|phtml|php3|php4|php5|inc)$ - RewriteRule .* - [F] - - # Allow error pages - RewriteCond %{REQUEST_FILENAME} -f - RewriteRule error[^\\/]*\.html$ - [L] - - # Block invalid file extensions - RewriteCond %{REQUEST_URI} !\.(?i:ace|arc|arj|asf|au|avi|bmp|bz2|cab|cda|css|csv|dmg|doc|docx|dotx|dotm|flv|gif|gpx|gz|hqx|ico|jar|jpeg|jpg|js|kml|m4a|m4v|mid|midi|mkv|mov|mp3|mp4|mpa|mpeg|mpg|ogg|ogv|pages|pcx|pdf|png|pps|ppt|pptx|potx|potm|ra|ram|rm|rtf|sit|sitx|tar|tgz|tif|tiff|txt|wav|webm|wma|wmv|xls|xlsx|xltx|xltm|zip|zipx)$ - RewriteRule .* - [F] - - # Non existant files passed to requesthandler - RewriteCond %{REQUEST_URI} ^(.*)$ - RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule .* ../framework/main.php?url=%1 [QSA] - diff --git a/Lesson-21-begin/__assets/database.sql b/Lesson-21-begin/__assets/database.sql deleted file mode 100644 index 91ea0b1..0000000 --- a/Lesson-21-begin/__assets/database.sql +++ /dev/null @@ -1,1658 +0,0 @@ --- MySQL dump 10.13 Distrib 5.7.17, for osx10.12 (x86_64) --- --- Host: localhost Database: SS_lessons --- ------------------------------------------------------ --- Server version 5.7.17 - -/*!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 `ChangeSet` --- - -DROP TABLE IF EXISTS `ChangeSet`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ChangeSet` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Versioned\\ChangeSet') DEFAULT 'SilverStripe\\Versioned\\ChangeSet', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Name` varchar(255) DEFAULT NULL, - `State` enum('open','published','reverted') DEFAULT 'open', - `IsInferred` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Description` mediumtext, - `PublishDate` datetime DEFAULT NULL, - `LastSynced` datetime DEFAULT NULL, - `OwnerID` int(11) NOT NULL DEFAULT '0', - `PublisherID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `OwnerID` (`OwnerID`), - KEY `PublisherID` (`PublisherID`) -) ENGINE=InnoDB AUTO_INCREMENT=355 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ChangeSet` --- - -LOCK TABLES `ChangeSet` WRITE; -/*!40000 ALTER TABLE `ChangeSet` DISABLE KEYS */; -INSERT INTO `ChangeSet` VALUES (1,'SilverStripe\\Versioned\\ChangeSet','2017-09-12 15:51:23','2017-09-12 15:51:22','Generated by publish of \'Home\' at Sep 12, 2017, 3:51:22 PM','published',1,NULL,'2017-09-12 15:51:23','2017-09-12 15:51:23',0,1),(2,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:38:20','2017-09-13 11:38:20','Generated by publish of \'List Your Rental\' at Sep 13, 2017, 11:38:20 AM','published',1,NULL,'2017-09-13 11:38:20','2017-09-13 11:38:20',0,1),(3,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:38:28','2017-09-13 11:38:28','Generated by publish of \'Find a Rental\' at Sep 13, 2017, 11:38:28 AM','published',1,NULL,'2017-09-13 11:38:28','2017-09-13 11:38:28',0,1),(4,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:38:43','2017-09-13 11:38:43','Generated by publish of \'Regions\' at Sep 13, 2017, 11:38:43 AM','published',1,NULL,'2017-09-13 11:38:43','2017-09-13 11:38:43',0,1),(5,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:39:03','2017-09-13 11:39:03','Generated by publish of \'Travel Guides\' at Sep 13, 2017, 11:39:03 AM','published',1,NULL,'2017-09-13 11:39:03','2017-09-13 11:39:03',0,1),(6,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:39:13','2017-09-13 11:39:12','Generated by publish of \'Travel Guides\' at Sep 13, 2017, 11:39:12 AM','published',1,NULL,'2017-09-13 11:39:13','2017-09-13 11:39:13',0,1),(7,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:40:30','2017-09-13 11:40:30','Generated by publish of \'Home\' at Sep 13, 2017, 11:40:30 AM','published',1,NULL,'2017-09-13 11:40:30','2017-09-13 11:40:30',0,1),(8,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:40:30','2017-09-13 11:40:30','Generated by publish of \'Find a Rental\' at Sep 13, 2017, 11:40:30 AM','published',1,NULL,'2017-09-13 11:40:30','2017-09-13 11:40:30',0,1),(9,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:40:30','2017-09-13 11:40:30','Generated by publish of \'List Your Rental\' at Sep 13, 2017, 11:40:30 AM','published',1,NULL,'2017-09-13 11:40:30','2017-09-13 11:40:30',0,1),(10,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:40:30','2017-09-13 11:40:30','Generated by publish of \'Regions\' at Sep 13, 2017, 11:40:30 AM','published',1,NULL,'2017-09-13 11:40:30','2017-09-13 11:40:30',0,1),(11,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:40:30','2017-09-13 11:40:30','Generated by publish of \'Travel Guides\' at Sep 13, 2017, 11:40:30 AM','published',1,NULL,'2017-09-13 11:40:30','2017-09-13 11:40:30',0,1),(12,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:40:37','2017-09-13 11:40:37','Generated by publish of \'About Us\' at Sep 13, 2017, 11:40:37 AM','published',1,NULL,'2017-09-13 11:40:37','2017-09-13 11:40:37',0,1),(13,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:42:26','2017-09-13 11:42:26','Generated by publish of \'Sample Article 1\' at Sep 13, 2017, 11:42:26 AM','published',1,NULL,'2017-09-13 11:42:26','2017-09-13 11:42:26',0,1),(14,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 11:42:48','2017-09-13 11:42:48','Generated by publish of \'Sample Article 2\' at Sep 13, 2017, 11:42:48 AM','published',1,NULL,'2017-09-13 11:42:48','2017-09-13 11:42:48',0,1),(15,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 12:53:49','2017-09-13 12:53:49','Generated by publish of \'Sample Article 1\' at Sep 13, 2017, 12:53:49 PM','published',1,NULL,'2017-09-13 12:53:49','2017-09-13 12:53:49',0,1),(16,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 12:54:14','2017-09-13 12:54:14','Generated by publish of \'Sample Article 1\' at Sep 13, 2017, 12:54:14 PM','published',1,NULL,'2017-09-13 12:54:14','2017-09-13 12:54:14',0,1),(17,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 13:48:49','2017-09-13 13:48:49','Generated by publish of \'Sample Article 1\' at Sep 13, 2017, 1:48:49 PM','published',1,NULL,'2017-09-13 13:48:49','2017-09-13 13:48:49',0,1),(18,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 13:49:05','2017-09-13 13:49:05','Generated by publish of \'Sample Article 2\' at Sep 13, 2017, 1:49:05 PM','published',1,NULL,'2017-09-13 13:49:05','2017-09-13 13:49:05',0,1),(19,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 13:50:11','2017-09-13 13:50:11','Generated by publish of \'Sample Article 2\' at Sep 13, 2017, 1:50:11 PM','published',1,NULL,'2017-09-13 13:50:11','2017-09-13 13:50:11',0,1),(20,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 13:52:13','2017-09-13 13:52:13','Generated by publish of \'Sample Article 2\' at Sep 13, 2017, 1:52:13 PM','published',1,NULL,'2017-09-13 13:52:13','2017-09-13 13:52:13',0,1),(21,'SilverStripe\\Versioned\\ChangeSet','2017-09-13 13:52:29','2017-09-13 13:52:29','Generated by publish of \'Sample Article 2\' at Sep 13, 2017, 1:52:29 PM','published',1,NULL,'2017-09-13 13:52:29','2017-09-13 13:52:29',0,1),(22,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 12:57:55','2017-09-14 12:57:55','Generated by publish of \'Regions\' at Sep 14, 2017, 12:57:55 PM','published',1,NULL,'2017-09-14 12:57:55','2017-09-14 12:57:55',0,1),(23,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 13:57:58','2017-09-14 13:57:58','Generated by publish of \'The Northeast\' at Sep 14, 2017, 1:57:58 PM','published',1,NULL,'2017-09-14 13:57:58','2017-09-14 13:57:58',0,1),(24,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 13:58:13','2017-09-14 13:58:13','Generated by publish of \'Regions\' at Sep 14, 2017, 1:58:13 PM','published',1,NULL,'2017-09-14 13:58:13','2017-09-14 13:58:13',0,1),(25,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 13:59:01','2017-09-14 13:59:00','Generated by publish of \'Regions\' at Sep 14, 2017, 1:59:00 PM','published',1,NULL,'2017-09-14 13:59:01','2017-09-14 13:59:00',0,1),(26,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 13:59:18','2017-09-14 13:59:18','Generated by publish of \'The Northeast\' at Sep 14, 2017, 1:59:18 PM','published',1,NULL,'2017-09-14 13:59:18','2017-09-14 13:59:18',0,1),(27,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 13:59:35','2017-09-14 13:59:34','Generated by publish of \'The Southwest\' at Sep 14, 2017, 1:59:34 PM','published',1,NULL,'2017-09-14 13:59:35','2017-09-14 13:59:35',0,1),(28,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 13:59:50','2017-09-14 13:59:50','Generated by publish of \'Regions\' at Sep 14, 2017, 1:59:50 PM','published',1,NULL,'2017-09-14 13:59:50','2017-09-14 13:59:50',0,1),(29,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 14:00:52','2017-09-14 14:00:51','Generated by publish of \'The Southeast\' at Sep 14, 2017, 2:00:51 PM','published',1,NULL,'2017-09-14 14:00:52','2017-09-14 14:00:52',0,1),(30,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 14:09:05','2017-09-14 14:09:04','Generated by publish of \'Sample Article 1\' at Sep 14, 2017, 2:09:04 PM','published',1,NULL,'2017-09-14 14:09:05','2017-09-14 14:09:04',0,1),(31,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 14:10:51','2017-09-14 14:10:50','Generated by publish of \'Regions\' at Sep 14, 2017, 2:10:50 PM','published',1,NULL,'2017-09-14 14:10:51','2017-09-14 14:10:50',0,1),(32,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 14:12:17','2017-09-14 14:12:16','Generated by publish of \'Regions\' at Sep 14, 2017, 2:12:16 PM','published',1,NULL,'2017-09-14 14:12:17','2017-09-14 14:12:16',0,1),(33,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 14:13:34','2017-09-14 14:13:34','Generated by publish of \'tester\' at Sep 14, 2017, 2:13:34 PM','published',1,NULL,'2017-09-14 14:13:34','2017-09-14 14:13:34',0,1),(34,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 15:26:25','2017-09-14 15:26:25','Generated by publish of \'The Northeast\' at Sep 14, 2017, 3:26:25 PM','published',1,NULL,'2017-09-14 15:26:25','2017-09-14 15:26:25',0,1),(35,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 15:26:49','2017-09-14 15:26:48','Generated by publish of \'The Southeast\' at Sep 14, 2017, 3:26:48 PM','published',1,NULL,'2017-09-14 15:26:49','2017-09-14 15:26:49',0,1),(36,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 15:27:19','2017-09-14 15:27:19','Generated by publish of \'The Southwest\' at Sep 14, 2017, 3:27:19 PM','published',1,NULL,'2017-09-14 15:27:19','2017-09-14 15:27:19',0,1),(37,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 15:27:38','2017-09-14 15:27:38','Generated by publish of \'The Northwest\' at Sep 14, 2017, 3:27:38 PM','published',1,NULL,'2017-09-14 15:27:38','2017-09-14 15:27:38',0,1),(38,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 16:16:37','2017-09-14 16:16:37','Generated by publish of \'Sample Article 1\' at Sep 14, 2017, 4:16:37 PM','published',1,NULL,'2017-09-14 16:16:37','2017-09-14 16:16:37',0,1),(39,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 16:18:40','2017-09-14 16:18:39','Generated by publish of \'Sample Article 2\' at Sep 14, 2017, 4:18:39 PM','published',1,NULL,'2017-09-14 16:18:40','2017-09-14 16:18:39',0,1),(40,'SilverStripe\\Versioned\\ChangeSet','2017-09-14 16:18:45','2017-09-14 16:18:45','Generated by publish of \'Sample Article 1\' at Sep 14, 2017, 4:18:45 PM','published',1,NULL,'2017-09-14 16:18:45','2017-09-14 16:18:45',0,1),(41,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:34','2017-09-26 12:00:34','Generated by publish of \'property 1\' at Sep 26, 2017, 12:00:34 PM','published',1,NULL,'2017-09-26 12:00:34','2017-09-26 12:00:34',0,1),(42,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:34','Generated by publish of \'property 10\' at Sep 26, 2017, 12:00:34 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:34',0,1),(43,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:35','Generated by publish of \'property 11\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:35',0,1),(44,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:35','Generated by publish of \'property 2\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:35',0,1),(45,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:35','Generated by publish of \'property 3\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:35',0,1),(46,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:35','Generated by publish of \'property 4\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:35',0,1),(47,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:35','Generated by publish of \'property 5\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:35',0,1),(48,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:35','2017-09-26 12:00:35','Generated by publish of \'property 6\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:35','2017-09-26 12:00:35',0,1),(49,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:36','2017-09-26 12:00:35','Generated by publish of \'property 7\' at Sep 26, 2017, 12:00:35 PM','published',1,NULL,'2017-09-26 12:00:36','2017-09-26 12:00:35',0,1),(50,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:36','2017-09-26 12:00:36','Generated by publish of \'property 8\' at Sep 26, 2017, 12:00:36 PM','published',1,NULL,'2017-09-26 12:00:36','2017-09-26 12:00:36',0,1),(51,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:00:36','2017-09-26 12:00:36','Generated by publish of \'property 9\' at Sep 26, 2017, 12:00:36 PM','published',1,NULL,'2017-09-26 12:00:36','2017-09-26 12:00:36',0,1),(52,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Sed fusce vehicula\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(53,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Sagittis elementum\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(54,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Tortor vehicula\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(55,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Cubilia efficitur\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(56,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Consectetur mollis fringilla dui\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(57,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Praesent placerat eu\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(58,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Sit fermentum congue\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(59,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Dictum aliquet netus\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(60,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Facilisis ullamcorper\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(61,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Ut proin magna, elit phasellus et\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(62,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Fringilla urna per\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(63,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:14','2017-09-26 12:01:14','Generated by publish of \'Ipsum adipiscing torquent nam\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:14','2017-09-26 12:01:14',0,1),(64,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:14','Generated by publish of \'Quisque habitant\' at Sep 26, 2017, 12:01:14 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:14',0,1),(65,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Volutpat rhoncus, nec pulvinar\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(66,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Interdum cubilia commodo porta, interdum eget dictumst cras\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(67,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Venenatis class\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(68,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Leo phasellus inceptos\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(69,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Sit tincidunt ut felis\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(70,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Quis ex curae urna, convallis sollicitudin libero ad\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(71,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Viverra tortor vulputate odio, adipiscing dapibus vel aliquet\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(72,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Faucibus ornare, convallis risus\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(73,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Auctor augue dictumst conubia\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(74,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Malesuada fusce imperdiet\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(75,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Sapien varius pretium inceptos\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(76,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Vestibulum conubia tristique\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(77,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Tortor bibendum diam, velit quis pharetra\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(78,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Potenti laoreet, eu litora\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(79,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Convallis sagittis gravida\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(80,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Suspendisse netus\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(81,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Cursus dictumst, quis congue\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(82,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Sed tortor elementum\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(83,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Dictumst elementum\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(84,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:15','2017-09-26 12:01:15','Generated by publish of \'Posuere sollicitudin, ipsum senectus\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:15','2017-09-26 12:01:15',0,1),(85,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:15','Generated by publish of \'Erat leo taciti\' at Sep 26, 2017, 12:01:15 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(86,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Nibh convallis et libero\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(87,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Justo suspendisse pretium\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(88,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Donec laoreet\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(89,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Interdum integer ultricies consequat\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(90,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Fusce arcu vivamus, at facilisis ligula\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(91,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Erat convallis primis consequat\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(92,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Adipiscing eleifend quam ullamcorper\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(93,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Metus et, vel cras\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(94,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Dictum erat metus odio\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(95,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Sed habitasse fermentum\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(96,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Metus maximus, maecenas tempus\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(97,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Maecenas condimentum magna\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(98,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Id eleifend risus, facilisis tempor ante\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(99,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Viverra taciti enim\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(100,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Sociosqu vehicula\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(101,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Felis orci\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(102,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Convallis eros netus, condimentum himenaeos magna\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(103,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Ultricies fames\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(104,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Tortor nisi litora, litora conubia neque\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(105,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:16','2017-09-26 12:01:16','Generated by publish of \'Euismod himenaeos donec, maecenas tincidunt fusce\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:16','2017-09-26 12:01:16',0,1),(106,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:16','Generated by publish of \'Lorem mattis nunc orci\' at Sep 26, 2017, 12:01:16 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:16',0,1),(107,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Lacinia eleifend eu\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(108,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Lobortis porttitor condimentum ad\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(109,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Nulla varius et class\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(110,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Suspendisse ante\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(111,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Viverra pulvinar cursus blandit\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(112,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Etiam velit\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(113,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Tortor turpis\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(114,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Etiam aliquam\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(115,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Eleifend cubilia enim\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(116,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Feugiat purus\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(117,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Nostra netus\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(118,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Mattis laoreet imperdiet\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(119,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Eleifend nunc tempor et\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(120,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Praesent auctor\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(121,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Integer sem, himenaeos blandit\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(122,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Erat augue vivamus fermentum\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(123,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Egestas posuere magna, justo nisi libero\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(124,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Et magna congue eros\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(125,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Sed phasellus nullam cras\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(126,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:17','2017-09-26 12:01:17','Generated by publish of \'Venenatis ad diam\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:17','2017-09-26 12:01:17',0,1),(127,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:17','Generated by publish of \'Vestibulum congue, fusce donec\' at Sep 26, 2017, 12:01:17 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:17',0,1),(128,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Integer vel\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(129,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Mi primis\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(130,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Mi molestie commodo maximus\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(131,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Sit semper molestie eros\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(132,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Condimentum habitasse\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(133,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Sapien nunc duis\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(134,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Malesuada id\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(135,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'At suspendisse pretium\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(136,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Elit in\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(137,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Porttitor inceptos\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(138,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Id metus\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(139,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Integer aliquet habitant\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(140,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Tempor platea\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(141,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Scelerisque ultricies dictumst\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(142,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Ligula vehicula\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(143,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Viverra proin hendrerit\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(144,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Malesuada ut est ad, justo pretium aptent imperdiet, ac semper arcu accumsan\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(145,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Ante ornare sagittis donec\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(146,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Ornare sollicitudin gravida ad, sit euismod commodo vehicula\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(147,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:18','2017-09-26 12:01:18','Generated by publish of \'Nulla orci\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:18','2017-09-26 12:01:18',0,1),(148,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:19','2017-09-26 12:01:18','Generated by publish of \'Quis phasellus, et nostra\' at Sep 26, 2017, 12:01:18 PM','published',1,NULL,'2017-09-26 12:01:19','2017-09-26 12:01:19',0,1),(149,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:19','2017-09-26 12:01:19','Generated by publish of \'Praesent eleifend tempor\' at Sep 26, 2017, 12:01:19 PM','published',1,NULL,'2017-09-26 12:01:19','2017-09-26 12:01:19',0,1),(150,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:19','2017-09-26 12:01:19','Generated by publish of \'Egestas convallis enim bibendum\' at Sep 26, 2017, 12:01:19 PM','published',1,NULL,'2017-09-26 12:01:19','2017-09-26 12:01:19',0,1),(151,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:01:19','2017-09-26 12:01:19','Generated by publish of \'Sed auctor tempus\' at Sep 26, 2017, 12:01:19 PM','published',1,NULL,'2017-09-26 12:01:19','2017-09-26 12:01:19',0,1),(152,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:27:46','2017-09-26 12:27:46','Generated by publish of \'The Northeast\' at Sep 26, 2017, 12:27:46 PM','published',1,NULL,'2017-09-26 12:27:46','2017-09-26 12:27:46',0,1),(153,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:28:06','2017-09-26 12:28:06','Generated by publish of \'The Southeast\' at Sep 26, 2017, 12:28:06 PM','published',1,NULL,'2017-09-26 12:28:06','2017-09-26 12:28:06',0,1),(154,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:28:42','2017-09-26 12:28:42','Generated by publish of \'The Southwest\' at Sep 26, 2017, 12:28:42 PM','published',1,NULL,'2017-09-26 12:28:42','2017-09-26 12:28:42',0,1),(155,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:29:14','2017-09-26 12:29:14','Generated by publish of \'The Northwest\' at Sep 26, 2017, 12:29:14 PM','published',1,NULL,'2017-09-26 12:29:14','2017-09-26 12:29:14',0,1),(156,'SilverStripe\\Versioned\\ChangeSet','2017-09-26 12:48:23','2017-09-26 12:48:23','Generated by publish of \'Find a Rental\' at Sep 26, 2017, 12:48:23 PM','published',1,NULL,'2017-09-26 12:48:23','2017-09-26 12:48:23',0,1),(157,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'expedita nam facilis velit provident consectetur\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(158,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'qui ea\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(159,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'non dignissimos molestiae\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(160,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'rerum delectus qui a eum enim\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(161,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'expedita excepturi placeat excepturi\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(162,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'nemo adipisci molestiae autem beatae atque\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(163,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:16','2017-09-27 11:57:16','Generated by publish of \'ut hic laboriosam laborum\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:16','2017-09-27 11:57:16',0,1),(164,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:16','Generated by publish of \'vitae vel itaque perferendis\' at Sep 27, 2017, 11:57:16 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:16',0,1),(165,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'inventore labore reprehenderit quia iste\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(166,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'consequatur ab voluptatem excepturi\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(167,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'eaque dolores facere totam non sed\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(168,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'sequi enim sit\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(169,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'alias quia\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(170,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'non nesciunt voluptatem beatae placeat aut\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(171,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'et dolorem sint consectetur aut similique\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(172,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:17','2017-09-27 11:57:17','Generated by publish of \'repellat consequatur\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:17','2017-09-27 11:57:17',0,1),(173,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:17','Generated by publish of \'dicta ea qui quae sunt aut\' at Sep 27, 2017, 11:57:17 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:17',0,1),(174,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'accusamus laborum eius\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(175,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'repellat aperiam ipsum voluptatem\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(176,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'recusandae magnam iste qui\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(177,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'ut est dolor eveniet\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(178,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'illo repellat suscipit esse\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(179,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'nihil itaque et beatae\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(180,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'et eveniet\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(181,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:18','2017-09-27 11:57:18','Generated by publish of \'et ullam quis magni quod deleniti\' at Sep 27, 2017, 11:57:18 AM','published',1,NULL,'2017-09-27 11:57:18','2017-09-27 11:57:18',0,1),(182,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'maiores optio quaerat a ad facere\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(183,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'explicabo tempora non velit\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(184,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'dolorem quis\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(185,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'ipsa et enim eum\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(186,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'et qui\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(187,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'architecto repellat suscipit accusantium magni hic\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(188,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'repudiandae ipsam incidunt modi\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(189,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:19','2017-09-27 11:57:19','Generated by publish of \'dolore sequi iste\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:19','2017-09-27 11:57:19',0,1),(190,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:19','Generated by publish of \'modi sit voluptas\' at Sep 27, 2017, 11:57:19 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:19',0,1),(191,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'et autem quidem est culpa sint\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(192,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'vel ea\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(193,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'quis qui\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(194,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'cum quis blanditiis\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(195,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'iste provident aperiam accusamus\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(196,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'explicabo et\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(197,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'excepturi neque ut labore nemo\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(198,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:20','2017-09-27 11:57:20','Generated by publish of \'ea eligendi consectetur\' at Sep 27, 2017, 11:57:20 AM','published',1,NULL,'2017-09-27 11:57:20','2017-09-27 11:57:20',0,1),(199,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'autem sunt\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(200,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'voluptatem nobis itaque\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(201,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'nesciunt quia porro sapiente\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(202,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'possimus fugit molestiae est et\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(203,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'id sequi facere\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(204,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'porro natus\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(205,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'eaque sunt doloribus\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(206,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:21','2017-09-27 11:57:21','Generated by publish of \'vitae in ipsa\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:21','2017-09-27 11:57:21',0,1),(207,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:21','Generated by publish of \'perferendis sapiente voluptatem ea dolorum tempora\' at Sep 27, 2017, 11:57:21 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:21',0,1),(208,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'architecto quisquam\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(209,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'aspernatur sit maiores numquam odit\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(210,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'sit ea\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(211,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'odio natus tempore omnis\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(212,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'ex aut et ut animi\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(213,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'sapiente placeat nihil consequuntur\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(214,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'voluptatem quia inventore sequi quam\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(215,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:22','2017-09-27 11:57:22','Generated by publish of \'rerum asperiores\' at Sep 27, 2017, 11:57:22 AM','published',1,NULL,'2017-09-27 11:57:22','2017-09-27 11:57:22',0,1),(216,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'non dignissimos illum\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(217,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'neque molestias ipsa\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(218,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'maxime dolores\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(219,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'sed labore iure\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(220,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'eligendi nulla eveniet voluptatum eius sint\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(221,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'consectetur est alias repellat fugit\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(222,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'aut esse\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(223,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:23','2017-09-27 11:57:23','Generated by publish of \'nesciunt rerum voluptas\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:23','2017-09-27 11:57:23',0,1),(224,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:23','Generated by publish of \'doloribus soluta eius optio\' at Sep 27, 2017, 11:57:23 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(225,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'ratione est\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(226,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'officiis ipsam eius\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(227,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'itaque molestiae aperiam soluta\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(228,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'debitis id reprehenderit\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(229,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'reiciendis optio error eum omnis vel\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(230,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'cumque et commodi blanditiis culpa ad\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(231,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:24','2017-09-27 11:57:24','Generated by publish of \'eveniet debitis\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:24','2017-09-27 11:57:24',0,1),(232,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:24','Generated by publish of \'omnis dignissimos\' at Sep 27, 2017, 11:57:24 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:24',0,1),(233,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'facere qui suscipit et\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(234,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'sapiente autem est alias veniam\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(235,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'similique rerum assumenda quaerat officiis consequatur\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(236,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'autem libero molestiae quod\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(237,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'culpa tempore ullam ipsum\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(238,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'debitis nihil\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(239,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'et consequatur laboriosam\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(240,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:25','2017-09-27 11:57:25','Generated by publish of \'repellat sed a ut cumque\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:25','2017-09-27 11:57:25',0,1),(241,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:25','Generated by publish of \'voluptas dolor voluptatem adipisci\' at Sep 27, 2017, 11:57:25 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:25',0,1),(242,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'cupiditate voluptas\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(243,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'consequatur sit praesentium\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(244,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'similique sit et dolor\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(245,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'ut perferendis aut\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(246,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'dolorem cumque eligendi nesciunt animi et\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(247,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'ducimus quia veritatis\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(248,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:26','2017-09-27 11:57:26','Generated by publish of \'dignissimos mollitia\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:26','2017-09-27 11:57:26',0,1),(249,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:27','2017-09-27 11:57:26','Generated by publish of \'error ut culpa\' at Sep 27, 2017, 11:57:26 AM','published',1,NULL,'2017-09-27 11:57:27','2017-09-27 11:57:26',0,1),(250,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:27','2017-09-27 11:57:27','Generated by publish of \'nam repudiandae accusamus\' at Sep 27, 2017, 11:57:27 AM','published',1,NULL,'2017-09-27 11:57:27','2017-09-27 11:57:27',0,1),(251,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:27','2017-09-27 11:57:27','Generated by publish of \'et laborum voluptatum quo ratione a\' at Sep 27, 2017, 11:57:27 AM','published',1,NULL,'2017-09-27 11:57:27','2017-09-27 11:57:27',0,1),(252,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:27','2017-09-27 11:57:27','Generated by publish of \'autem animi omnis laborum aliquam\' at Sep 27, 2017, 11:57:27 AM','published',1,NULL,'2017-09-27 11:57:27','2017-09-27 11:57:27',0,1),(253,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:27','2017-09-27 11:57:27','Generated by publish of \'a dignissimos\' at Sep 27, 2017, 11:57:27 AM','published',1,NULL,'2017-09-27 11:57:27','2017-09-27 11:57:27',0,1),(254,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 11:57:27','2017-09-27 11:57:27','Generated by publish of \'unde officiis\' at Sep 27, 2017, 11:57:27 AM','published',1,NULL,'2017-09-27 11:57:27','2017-09-27 11:57:27',0,1),(255,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:22','2017-09-27 12:03:22','Generated by publish of \'Sample Article 1\' at Sep 27, 2017, 12:03:22 PM','published',1,NULL,'2017-09-27 12:03:22','2017-09-27 12:03:22',0,1),(256,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:22','2017-09-27 12:03:22','Generated by publish of \'Sample Article 2\' at Sep 27, 2017, 12:03:22 PM','published',1,NULL,'2017-09-27 12:03:22','2017-09-27 12:03:22',0,1),(257,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:22','2017-09-27 12:03:22','Generated by publish of \'Expedita nam facilis velit provident consectetur\' at Sep 27, 2017, 12:03:22 PM','published',1,NULL,'2017-09-27 12:03:22','2017-09-27 12:03:22',0,1),(258,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:22','Generated by publish of \'Qui ea\' at Sep 27, 2017, 12:03:22 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:22',0,1),(259,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Non dignissimos molestiae\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(260,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Rerum delectus qui a eum enim\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(261,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Expedita excepturi placeat excepturi\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(262,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Nemo adipisci molestiae autem beatae atque\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(263,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Ut hic laboriosam laborum\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(264,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Vitae vel itaque perferendis\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(265,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Inventore labore reprehenderit quia iste\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(266,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:23','2017-09-27 12:03:23','Generated by publish of \'Consequatur ab voluptatem excepturi\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:23','2017-09-27 12:03:23',0,1),(267,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:23','Generated by publish of \'Eaque dolores facere totam non sed\' at Sep 27, 2017, 12:03:23 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:23',0,1),(268,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Sequi enim sit\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(269,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Alias quia\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(270,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Non nesciunt voluptatem beatae placeat aut\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(271,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Et dolorem sint consectetur aut similique\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(272,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Repellat consequatur\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(273,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Dicta ea qui quae sunt aut\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(274,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Accusamus laborum eius\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(275,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:24','2017-09-27 12:03:24','Generated by publish of \'Repellat aperiam ipsum voluptatem\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:24','2017-09-27 12:03:24',0,1),(276,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:24','Generated by publish of \'Recusandae magnam iste qui\' at Sep 27, 2017, 12:03:24 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:24',0,1),(277,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Ut est dolor eveniet\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(278,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Illo repellat suscipit esse\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(279,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Nihil itaque et beatae\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(280,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Et eveniet\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(281,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Et ullam quis magni quod deleniti\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(282,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Maiores optio quaerat a ad facere\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(283,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Explicabo tempora non velit\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(284,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:25','2017-09-27 12:03:25','Generated by publish of \'Dolorem quis\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:25','2017-09-27 12:03:25',0,1),(285,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:25','Generated by publish of \'Ipsa et enim eum\' at Sep 27, 2017, 12:03:25 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(286,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Et qui\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(287,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Architecto repellat suscipit accusantium magni hic\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(288,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Repudiandae ipsam incidunt modi\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(289,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Dolore sequi iste\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(290,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Modi sit voluptas\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(291,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Et autem quidem est culpa sint\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(292,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Vel ea\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(293,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:26','2017-09-27 12:03:26','Generated by publish of \'Quis qui\' at Sep 27, 2017, 12:03:26 PM','published',1,NULL,'2017-09-27 12:03:26','2017-09-27 12:03:26',0,1),(294,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Cum quis blanditiis\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(295,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Iste provident aperiam accusamus\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(296,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Explicabo et\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(297,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Excepturi neque ut labore nemo\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(298,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Ea eligendi consectetur\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(299,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Autem sunt\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(300,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Voluptatem nobis itaque\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(301,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:27','2017-09-27 12:03:27','Generated by publish of \'Nesciunt quia porro sapiente\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:27','2017-09-27 12:03:27',0,1),(302,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:27','Generated by publish of \'Possimus fugit molestiae est et\' at Sep 27, 2017, 12:03:27 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:27',0,1),(303,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Id sequi facere\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(304,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Porro natus\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(305,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Eaque sunt doloribus\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(306,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Vitae in ipsa\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(307,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Perferendis sapiente voluptatem ea dolorum tempora\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(308,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Architecto quisquam\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(309,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Aspernatur sit maiores numquam odit\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(310,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:28','2017-09-27 12:03:28','Generated by publish of \'Sit ea\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:28','2017-09-27 12:03:28',0,1),(311,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:28','Generated by publish of \'Odio natus tempore omnis\' at Sep 27, 2017, 12:03:28 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(312,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Ex aut et ut animi\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(313,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Sapiente placeat nihil consequuntur\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(314,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Voluptatem quia inventore sequi quam\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(315,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Rerum asperiores\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(316,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Non dignissimos illum\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(317,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Neque molestias ipsa\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(318,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Maxime dolores\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(319,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:29','2017-09-27 12:03:29','Generated by publish of \'Sed labore iure\' at Sep 27, 2017, 12:03:29 PM','published',1,NULL,'2017-09-27 12:03:29','2017-09-27 12:03:29',0,1),(320,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Eligendi nulla eveniet voluptatum eius sint\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(321,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Consectetur est alias repellat fugit\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(322,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Aut esse\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(323,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Nesciunt rerum voluptas\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(324,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Doloribus soluta eius optio\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(325,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Ratione est\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(326,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Officiis ipsam eius\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(327,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:30','2017-09-27 12:03:30','Generated by publish of \'Itaque molestiae aperiam soluta\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:30','2017-09-27 12:03:30',0,1),(328,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:30','Generated by publish of \'Debitis id reprehenderit\' at Sep 27, 2017, 12:03:30 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:30',0,1),(329,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Reiciendis optio error eum omnis vel\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(330,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Cumque et commodi blanditiis culpa ad\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(331,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Eveniet debitis\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(332,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Omnis dignissimos\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(333,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Facere qui suscipit et\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(334,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Sapiente autem est alias veniam\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(335,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Similique rerum assumenda quaerat officiis consequatur\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(336,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:31','2017-09-27 12:03:31','Generated by publish of \'Autem libero molestiae quod\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:31','2017-09-27 12:03:31',0,1),(337,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:31','Generated by publish of \'Culpa tempore ullam ipsum\' at Sep 27, 2017, 12:03:31 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:31',0,1),(338,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Debitis nihil\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(339,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Et consequatur laboriosam\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(340,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Repellat sed a ut cumque\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(341,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Voluptas dolor voluptatem adipisci\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(342,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Cupiditate voluptas\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(343,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Consequatur sit praesentium\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(344,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Similique sit et dolor\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(345,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:32','2017-09-27 12:03:32','Generated by publish of \'Ut perferendis aut\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:32','2017-09-27 12:03:32',0,1),(346,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:32','Generated by publish of \'Dolorem cumque eligendi nesciunt animi et\' at Sep 27, 2017, 12:03:32 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:32',0,1),(347,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Ducimus quia veritatis\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(348,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Dignissimos mollitia\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(349,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Error ut culpa\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(350,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Nam repudiandae accusamus\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(351,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Et laborum voluptatum quo ratione a\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(352,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Autem animi omnis laborum aliquam\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(353,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'A dignissimos\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1),(354,'SilverStripe\\Versioned\\ChangeSet','2017-09-27 12:03:33','2017-09-27 12:03:33','Generated by publish of \'Unde officiis\' at Sep 27, 2017, 12:03:33 PM','published',1,NULL,'2017-09-27 12:03:33','2017-09-27 12:03:33',0,1); -/*!40000 ALTER TABLE `ChangeSet` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ChangeSetItem` --- - -DROP TABLE IF EXISTS `ChangeSetItem`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ChangeSetItem` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Versioned\\ChangeSetItem') DEFAULT 'SilverStripe\\Versioned\\ChangeSetItem', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `VersionBefore` int(11) NOT NULL DEFAULT '0', - `VersionAfter` int(11) NOT NULL DEFAULT '0', - `Added` enum('explicitly','implicitly') DEFAULT 'implicitly', - `ChangeSetID` int(11) NOT NULL DEFAULT '0', - `ObjectID` int(11) NOT NULL DEFAULT '0', - `ObjectClass` enum('SilverStripe\\Lessons\\ArticleCategory','SilverStripe\\Lessons\\ArticleComment','SilverStripe\\Lessons\\Property','SilverStripe\\Lessons\\Region','SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image','SilverStripe\\SiteConfig\\SiteConfig','SilverStripe\\Versioned\\ChangeSet','SilverStripe\\Versioned\\ChangeSetItem','SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Lessons\\ArticleHolder','SilverStripe\\Lessons\\ArticlePage','SilverStripe\\Lessons\\HomePage','SilverStripe\\Lessons\\PropertySearchPage','SilverStripe\\Lessons\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage','SilverStripe\\Security\\Group','SilverStripe\\Security\\LoginAttempt','SilverStripe\\Security\\Member','SilverStripe\\Security\\MemberPassword','SilverStripe\\Security\\Permission','SilverStripe\\Security\\PermissionRole','SilverStripe\\Security\\PermissionRoleCode','SilverStripe\\Security\\RememberLoginHash') DEFAULT 'SilverStripe\\Lessons\\ArticleCategory', - PRIMARY KEY (`ID`), - UNIQUE KEY `ObjectUniquePerChangeSet` (`ObjectID`,`ObjectClass`,`ChangeSetID`), - KEY `ClassName` (`ClassName`), - KEY `ChangeSetID` (`ChangeSetID`), - KEY `Object` (`ObjectID`,`ObjectClass`) -) ENGINE=InnoDB AUTO_INCREMENT=896 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ChangeSetItem` --- - -LOCK TABLES `ChangeSetItem` WRITE; -/*!40000 ALTER TABLE `ChangeSetItem` DISABLE KEYS */; -INSERT INTO `ChangeSetItem` VALUES (1,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-12 15:51:23','2017-09-12 15:51:23',1,2,'explicitly',1,1,'SilverStripe\\CMS\\Model\\SiteTree'),(2,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:38:20','2017-09-13 11:38:20',0,2,'explicitly',2,7,'SilverStripe\\CMS\\Model\\SiteTree'),(3,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:38:28','2017-09-13 11:38:28',0,2,'explicitly',3,6,'SilverStripe\\CMS\\Model\\SiteTree'),(4,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:38:43','2017-09-13 11:38:43',0,2,'explicitly',4,8,'SilverStripe\\CMS\\Model\\SiteTree'),(5,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:39:03','2017-09-13 11:39:03',0,2,'explicitly',5,9,'SilverStripe\\CMS\\Model\\SiteTree'),(6,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:39:13','2017-09-13 11:39:12',2,3,'explicitly',6,9,'SilverStripe\\CMS\\Model\\SiteTree'),(7,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:40:30','2017-09-13 11:40:30',2,2,'explicitly',7,1,'SilverStripe\\CMS\\Model\\SiteTree'),(8,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:40:30','2017-09-13 11:40:30',2,3,'explicitly',8,6,'SilverStripe\\CMS\\Model\\SiteTree'),(9,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:40:30','2017-09-13 11:40:30',2,4,'explicitly',9,7,'SilverStripe\\CMS\\Model\\SiteTree'),(10,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:40:30','2017-09-13 11:40:30',2,4,'explicitly',10,8,'SilverStripe\\CMS\\Model\\SiteTree'),(11,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:40:30','2017-09-13 11:40:30',3,5,'explicitly',11,9,'SilverStripe\\CMS\\Model\\SiteTree'),(12,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 11:40:37','2017-09-13 11:40:37',1,3,'explicitly',12,2,'SilverStripe\\CMS\\Model\\SiteTree'),(22,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 13:52:13','2017-09-13 13:52:13',0,1,'implicitly',20,6,'SilverStripe\\Assets\\File'),(25,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-13 13:52:29','2017-09-13 13:52:29',1,1,'implicitly',21,6,'SilverStripe\\Assets\\File'),(26,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 12:57:55','2017-09-14 12:57:55',4,5,'explicitly',22,8,'SilverStripe\\CMS\\Model\\SiteTree'),(27,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:57:58','2017-09-14 13:57:58',0,0,'explicitly',23,1,'SilverStripe\\Lessons\\Region'),(28,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:58:13','2017-09-14 13:58:13',5,5,'explicitly',24,8,'SilverStripe\\CMS\\Model\\SiteTree'),(29,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:58:13','2017-09-14 13:58:13',0,0,'implicitly',24,1,'SilverStripe\\Lessons\\Region'),(30,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:58:13','2017-09-14 13:58:13',0,0,'implicitly',24,2,'SilverStripe\\Lessons\\Region'),(31,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:58:13','2017-09-14 13:58:13',0,0,'implicitly',24,3,'SilverStripe\\Lessons\\Region'),(32,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:58:13','2017-09-14 13:58:13',0,0,'implicitly',24,4,'SilverStripe\\Lessons\\Region'),(33,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:00','2017-09-14 13:59:00',5,5,'explicitly',25,8,'SilverStripe\\CMS\\Model\\SiteTree'),(34,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:00','2017-09-14 13:59:00',0,0,'implicitly',25,1,'SilverStripe\\Lessons\\Region'),(35,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:00','2017-09-14 13:59:00',0,0,'implicitly',25,2,'SilverStripe\\Lessons\\Region'),(36,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:00','2017-09-14 13:59:00',0,0,'implicitly',25,3,'SilverStripe\\Lessons\\Region'),(37,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:00','2017-09-14 13:59:00',0,0,'implicitly',25,4,'SilverStripe\\Lessons\\Region'),(38,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:18','2017-09-14 13:59:18',0,0,'explicitly',26,1,'SilverStripe\\Lessons\\Region'),(39,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:35','2017-09-14 13:59:35',0,0,'explicitly',27,2,'SilverStripe\\Lessons\\Region'),(40,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:50','2017-09-14 13:59:50',5,5,'explicitly',28,8,'SilverStripe\\CMS\\Model\\SiteTree'),(41,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:50','2017-09-14 13:59:50',0,0,'implicitly',28,1,'SilverStripe\\Lessons\\Region'),(42,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:50','2017-09-14 13:59:50',0,0,'implicitly',28,2,'SilverStripe\\Lessons\\Region'),(43,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:50','2017-09-14 13:59:50',0,0,'implicitly',28,3,'SilverStripe\\Lessons\\Region'),(44,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 13:59:50','2017-09-14 13:59:50',0,0,'implicitly',28,4,'SilverStripe\\Lessons\\Region'),(45,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:00:52','2017-09-14 14:00:51',0,0,'explicitly',29,4,'SilverStripe\\Lessons\\Region'),(47,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:09:05','2017-09-14 14:09:04',0,1,'implicitly',30,3,'SilverStripe\\Assets\\File'),(48,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:09:05','2017-09-14 14:09:04',0,1,'implicitly',30,4,'SilverStripe\\Assets\\File'),(49,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:10:50','2017-09-14 14:10:50',5,5,'explicitly',31,8,'SilverStripe\\CMS\\Model\\SiteTree'),(50,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:10:51','2017-09-14 14:10:50',0,0,'implicitly',31,1,'SilverStripe\\Lessons\\Region'),(51,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:10:51','2017-09-14 14:10:50',0,0,'implicitly',31,2,'SilverStripe\\Lessons\\Region'),(52,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:10:51','2017-09-14 14:10:50',0,0,'implicitly',31,3,'SilverStripe\\Lessons\\Region'),(53,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:10:51','2017-09-14 14:10:50',0,0,'implicitly',31,4,'SilverStripe\\Lessons\\Region'),(54,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:16','2017-09-14 14:12:16',5,5,'explicitly',32,8,'SilverStripe\\CMS\\Model\\SiteTree'),(55,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:16','2017-09-14 14:12:16',0,0,'implicitly',32,1,'SilverStripe\\Lessons\\Region'),(56,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:16','2017-09-14 14:12:16',0,0,'implicitly',32,2,'SilverStripe\\Lessons\\Region'),(57,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:16','2017-09-14 14:12:16',0,0,'implicitly',32,3,'SilverStripe\\Lessons\\Region'),(58,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:16','2017-09-14 14:12:16',0,0,'implicitly',32,4,'SilverStripe\\Lessons\\Region'),(59,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:16','2017-09-14 14:12:16',0,1,'implicitly',32,8,'SilverStripe\\Assets\\File'),(62,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 14:12:17','2017-09-14 14:12:16',0,1,'implicitly',32,9,'SilverStripe\\Assets\\File'),(65,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 15:26:25','2017-09-14 15:26:25',0,1,'explicitly',34,1,'SilverStripe\\Lessons\\Region'),(67,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 15:26:49','2017-09-14 15:26:48',0,1,'explicitly',35,2,'SilverStripe\\Lessons\\Region'),(69,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 15:27:19','2017-09-14 15:27:19',0,1,'explicitly',36,3,'SilverStripe\\Lessons\\Region'),(70,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 15:27:19','2017-09-14 15:27:19',1,1,'implicitly',36,8,'SilverStripe\\Assets\\File'),(71,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 15:27:38','2017-09-14 15:27:38',0,1,'explicitly',37,4,'SilverStripe\\Lessons\\Region'),(72,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 15:27:38','2017-09-14 15:27:38',1,1,'implicitly',37,9,'SilverStripe\\Assets\\File'),(74,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 16:16:37','2017-09-14 16:16:37',1,1,'implicitly',38,3,'SilverStripe\\Assets\\File'),(75,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 16:16:37','2017-09-14 16:16:37',1,1,'implicitly',38,4,'SilverStripe\\Assets\\File'),(77,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 16:18:39','2017-09-14 16:18:39',1,1,'implicitly',39,5,'SilverStripe\\Assets\\File'),(78,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 16:18:39','2017-09-14 16:18:39',1,1,'implicitly',39,6,'SilverStripe\\Assets\\File'),(80,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 16:18:45','2017-09-14 16:18:45',1,1,'implicitly',40,3,'SilverStripe\\Assets\\File'),(81,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-14 16:18:45','2017-09-14 16:18:45',1,1,'implicitly',40,4,'SilverStripe\\Assets\\File'),(82,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:34','2017-09-26 12:00:34',0,1,'explicitly',41,13,'SilverStripe\\Assets\\File'),(83,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:34',0,1,'explicitly',42,22,'SilverStripe\\Assets\\File'),(84,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:35',0,1,'explicitly',43,23,'SilverStripe\\Assets\\File'),(85,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:35',0,1,'explicitly',44,14,'SilverStripe\\Assets\\File'),(86,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:35',0,1,'explicitly',45,15,'SilverStripe\\Assets\\File'),(87,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:35',0,1,'explicitly',46,16,'SilverStripe\\Assets\\File'),(88,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:35',0,1,'explicitly',47,17,'SilverStripe\\Assets\\File'),(89,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:35','2017-09-26 12:00:35',0,1,'explicitly',48,18,'SilverStripe\\Assets\\File'),(90,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:36','2017-09-26 12:00:35',0,1,'explicitly',49,19,'SilverStripe\\Assets\\File'),(91,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:36','2017-09-26 12:00:36',0,1,'explicitly',50,20,'SilverStripe\\Assets\\File'),(92,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:00:36','2017-09-26 12:00:36',0,1,'explicitly',51,21,'SilverStripe\\Assets\\File'),(93,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',52,101,'SilverStripe\\Lessons\\Property'),(94,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',52,22,'SilverStripe\\Assets\\File'),(95,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',53,102,'SilverStripe\\Lessons\\Property'),(96,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',53,14,'SilverStripe\\Assets\\File'),(97,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',54,103,'SilverStripe\\Lessons\\Property'),(98,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',54,20,'SilverStripe\\Assets\\File'),(99,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',55,104,'SilverStripe\\Lessons\\Property'),(100,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',55,23,'SilverStripe\\Assets\\File'),(101,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',56,105,'SilverStripe\\Lessons\\Property'),(102,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',56,16,'SilverStripe\\Assets\\File'),(103,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',57,106,'SilverStripe\\Lessons\\Property'),(104,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',57,17,'SilverStripe\\Assets\\File'),(105,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',58,107,'SilverStripe\\Lessons\\Property'),(106,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',58,17,'SilverStripe\\Assets\\File'),(107,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',59,108,'SilverStripe\\Lessons\\Property'),(108,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',59,15,'SilverStripe\\Assets\\File'),(109,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',60,109,'SilverStripe\\Lessons\\Property'),(110,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',60,14,'SilverStripe\\Assets\\File'),(111,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',61,110,'SilverStripe\\Lessons\\Property'),(112,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',61,18,'SilverStripe\\Assets\\File'),(113,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',62,111,'SilverStripe\\Lessons\\Property'),(114,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',62,21,'SilverStripe\\Assets\\File'),(115,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',0,1,'explicitly',63,112,'SilverStripe\\Lessons\\Property'),(116,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:14','2017-09-26 12:01:14',1,1,'implicitly',63,13,'SilverStripe\\Assets\\File'),(117,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:14',0,1,'explicitly',64,113,'SilverStripe\\Lessons\\Property'),(118,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:14',1,1,'implicitly',64,20,'SilverStripe\\Assets\\File'),(119,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',65,114,'SilverStripe\\Lessons\\Property'),(120,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',65,13,'SilverStripe\\Assets\\File'),(121,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',66,115,'SilverStripe\\Lessons\\Property'),(122,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',66,17,'SilverStripe\\Assets\\File'),(123,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',67,116,'SilverStripe\\Lessons\\Property'),(124,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',67,23,'SilverStripe\\Assets\\File'),(125,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',68,117,'SilverStripe\\Lessons\\Property'),(126,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',68,19,'SilverStripe\\Assets\\File'),(127,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',69,118,'SilverStripe\\Lessons\\Property'),(128,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',69,17,'SilverStripe\\Assets\\File'),(129,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',70,119,'SilverStripe\\Lessons\\Property'),(130,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',70,14,'SilverStripe\\Assets\\File'),(131,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',71,120,'SilverStripe\\Lessons\\Property'),(132,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',71,19,'SilverStripe\\Assets\\File'),(133,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',72,121,'SilverStripe\\Lessons\\Property'),(134,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',72,19,'SilverStripe\\Assets\\File'),(135,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',73,122,'SilverStripe\\Lessons\\Property'),(136,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',73,19,'SilverStripe\\Assets\\File'),(137,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',74,123,'SilverStripe\\Lessons\\Property'),(138,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',74,19,'SilverStripe\\Assets\\File'),(139,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',75,124,'SilverStripe\\Lessons\\Property'),(140,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',75,17,'SilverStripe\\Assets\\File'),(141,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',76,125,'SilverStripe\\Lessons\\Property'),(142,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',76,16,'SilverStripe\\Assets\\File'),(143,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',77,126,'SilverStripe\\Lessons\\Property'),(144,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',77,17,'SilverStripe\\Assets\\File'),(145,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',78,127,'SilverStripe\\Lessons\\Property'),(146,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',78,16,'SilverStripe\\Assets\\File'),(147,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',79,128,'SilverStripe\\Lessons\\Property'),(148,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',79,19,'SilverStripe\\Assets\\File'),(149,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',80,129,'SilverStripe\\Lessons\\Property'),(150,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',80,22,'SilverStripe\\Assets\\File'),(151,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',81,130,'SilverStripe\\Lessons\\Property'),(152,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',81,15,'SilverStripe\\Assets\\File'),(153,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',82,131,'SilverStripe\\Lessons\\Property'),(154,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',82,22,'SilverStripe\\Assets\\File'),(155,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',83,132,'SilverStripe\\Lessons\\Property'),(156,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',83,23,'SilverStripe\\Assets\\File'),(157,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',0,1,'explicitly',84,133,'SilverStripe\\Lessons\\Property'),(158,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:15','2017-09-26 12:01:15',1,1,'implicitly',84,21,'SilverStripe\\Assets\\File'),(159,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:15',0,1,'explicitly',85,134,'SilverStripe\\Lessons\\Property'),(160,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',85,14,'SilverStripe\\Assets\\File'),(161,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',86,135,'SilverStripe\\Lessons\\Property'),(162,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',86,13,'SilverStripe\\Assets\\File'),(163,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',87,136,'SilverStripe\\Lessons\\Property'),(164,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',87,21,'SilverStripe\\Assets\\File'),(165,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',88,137,'SilverStripe\\Lessons\\Property'),(166,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',88,22,'SilverStripe\\Assets\\File'),(167,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',89,138,'SilverStripe\\Lessons\\Property'),(168,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',89,20,'SilverStripe\\Assets\\File'),(169,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',90,139,'SilverStripe\\Lessons\\Property'),(170,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',90,15,'SilverStripe\\Assets\\File'),(171,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',91,140,'SilverStripe\\Lessons\\Property'),(172,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',91,14,'SilverStripe\\Assets\\File'),(173,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',92,141,'SilverStripe\\Lessons\\Property'),(174,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',92,19,'SilverStripe\\Assets\\File'),(175,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',93,142,'SilverStripe\\Lessons\\Property'),(176,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',93,16,'SilverStripe\\Assets\\File'),(177,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',94,143,'SilverStripe\\Lessons\\Property'),(178,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',94,21,'SilverStripe\\Assets\\File'),(179,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',95,144,'SilverStripe\\Lessons\\Property'),(180,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',95,17,'SilverStripe\\Assets\\File'),(181,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',96,145,'SilverStripe\\Lessons\\Property'),(182,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',96,19,'SilverStripe\\Assets\\File'),(183,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',97,146,'SilverStripe\\Lessons\\Property'),(184,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',97,17,'SilverStripe\\Assets\\File'),(185,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',98,147,'SilverStripe\\Lessons\\Property'),(186,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',98,17,'SilverStripe\\Assets\\File'),(187,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',99,148,'SilverStripe\\Lessons\\Property'),(188,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',99,20,'SilverStripe\\Assets\\File'),(189,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',100,149,'SilverStripe\\Lessons\\Property'),(190,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',100,14,'SilverStripe\\Assets\\File'),(191,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',101,150,'SilverStripe\\Lessons\\Property'),(192,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',101,14,'SilverStripe\\Assets\\File'),(193,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',102,151,'SilverStripe\\Lessons\\Property'),(194,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',102,21,'SilverStripe\\Assets\\File'),(195,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',103,152,'SilverStripe\\Lessons\\Property'),(196,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',103,13,'SilverStripe\\Assets\\File'),(197,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',104,153,'SilverStripe\\Lessons\\Property'),(198,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',104,18,'SilverStripe\\Assets\\File'),(199,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',0,1,'explicitly',105,154,'SilverStripe\\Lessons\\Property'),(200,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:16','2017-09-26 12:01:16',1,1,'implicitly',105,16,'SilverStripe\\Assets\\File'),(201,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:16',0,1,'explicitly',106,155,'SilverStripe\\Lessons\\Property'),(202,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:16',1,1,'implicitly',106,17,'SilverStripe\\Assets\\File'),(203,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',107,156,'SilverStripe\\Lessons\\Property'),(204,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',107,15,'SilverStripe\\Assets\\File'),(205,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',108,157,'SilverStripe\\Lessons\\Property'),(206,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',108,16,'SilverStripe\\Assets\\File'),(207,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',109,158,'SilverStripe\\Lessons\\Property'),(208,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',109,18,'SilverStripe\\Assets\\File'),(209,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',110,159,'SilverStripe\\Lessons\\Property'),(210,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',110,16,'SilverStripe\\Assets\\File'),(211,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',111,160,'SilverStripe\\Lessons\\Property'),(212,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',111,18,'SilverStripe\\Assets\\File'),(213,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',112,161,'SilverStripe\\Lessons\\Property'),(214,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',112,21,'SilverStripe\\Assets\\File'),(215,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',113,162,'SilverStripe\\Lessons\\Property'),(216,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',113,13,'SilverStripe\\Assets\\File'),(217,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',114,163,'SilverStripe\\Lessons\\Property'),(218,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',114,13,'SilverStripe\\Assets\\File'),(219,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',115,164,'SilverStripe\\Lessons\\Property'),(220,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',115,20,'SilverStripe\\Assets\\File'),(221,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',116,165,'SilverStripe\\Lessons\\Property'),(222,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',116,22,'SilverStripe\\Assets\\File'),(223,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',117,166,'SilverStripe\\Lessons\\Property'),(224,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',117,20,'SilverStripe\\Assets\\File'),(225,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',118,167,'SilverStripe\\Lessons\\Property'),(226,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',118,23,'SilverStripe\\Assets\\File'),(227,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',119,168,'SilverStripe\\Lessons\\Property'),(228,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',119,22,'SilverStripe\\Assets\\File'),(229,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',120,169,'SilverStripe\\Lessons\\Property'),(230,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',120,22,'SilverStripe\\Assets\\File'),(231,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',121,170,'SilverStripe\\Lessons\\Property'),(232,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',121,22,'SilverStripe\\Assets\\File'),(233,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',122,171,'SilverStripe\\Lessons\\Property'),(234,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',122,18,'SilverStripe\\Assets\\File'),(235,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',123,172,'SilverStripe\\Lessons\\Property'),(236,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',123,20,'SilverStripe\\Assets\\File'),(237,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',124,173,'SilverStripe\\Lessons\\Property'),(238,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',124,21,'SilverStripe\\Assets\\File'),(239,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',125,174,'SilverStripe\\Lessons\\Property'),(240,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',125,18,'SilverStripe\\Assets\\File'),(241,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',0,1,'explicitly',126,175,'SilverStripe\\Lessons\\Property'),(242,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:17','2017-09-26 12:01:17',1,1,'implicitly',126,18,'SilverStripe\\Assets\\File'),(243,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:17',0,1,'explicitly',127,176,'SilverStripe\\Lessons\\Property'),(244,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:17',1,1,'implicitly',127,20,'SilverStripe\\Assets\\File'),(245,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',128,177,'SilverStripe\\Lessons\\Property'),(246,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',128,19,'SilverStripe\\Assets\\File'),(247,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',129,178,'SilverStripe\\Lessons\\Property'),(248,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',129,13,'SilverStripe\\Assets\\File'),(249,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',130,179,'SilverStripe\\Lessons\\Property'),(250,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',130,22,'SilverStripe\\Assets\\File'),(251,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',131,180,'SilverStripe\\Lessons\\Property'),(252,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',131,19,'SilverStripe\\Assets\\File'),(253,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',132,181,'SilverStripe\\Lessons\\Property'),(254,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',132,13,'SilverStripe\\Assets\\File'),(255,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',133,182,'SilverStripe\\Lessons\\Property'),(256,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',133,20,'SilverStripe\\Assets\\File'),(257,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',134,183,'SilverStripe\\Lessons\\Property'),(258,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',134,13,'SilverStripe\\Assets\\File'),(259,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',135,184,'SilverStripe\\Lessons\\Property'),(260,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',135,14,'SilverStripe\\Assets\\File'),(261,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',136,185,'SilverStripe\\Lessons\\Property'),(262,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',136,22,'SilverStripe\\Assets\\File'),(263,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',137,186,'SilverStripe\\Lessons\\Property'),(264,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',137,19,'SilverStripe\\Assets\\File'),(265,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',138,187,'SilverStripe\\Lessons\\Property'),(266,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',138,17,'SilverStripe\\Assets\\File'),(267,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',139,188,'SilverStripe\\Lessons\\Property'),(268,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',139,19,'SilverStripe\\Assets\\File'),(269,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',140,189,'SilverStripe\\Lessons\\Property'),(270,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',140,23,'SilverStripe\\Assets\\File'),(271,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',141,190,'SilverStripe\\Lessons\\Property'),(272,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',141,14,'SilverStripe\\Assets\\File'),(273,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',142,191,'SilverStripe\\Lessons\\Property'),(274,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',142,21,'SilverStripe\\Assets\\File'),(275,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',143,192,'SilverStripe\\Lessons\\Property'),(276,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',143,23,'SilverStripe\\Assets\\File'),(277,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',144,193,'SilverStripe\\Lessons\\Property'),(278,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',144,15,'SilverStripe\\Assets\\File'),(279,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',145,194,'SilverStripe\\Lessons\\Property'),(280,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',145,22,'SilverStripe\\Assets\\File'),(281,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',146,195,'SilverStripe\\Lessons\\Property'),(282,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',146,13,'SilverStripe\\Assets\\File'),(283,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',0,1,'explicitly',147,196,'SilverStripe\\Lessons\\Property'),(284,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:18','2017-09-26 12:01:18',1,1,'implicitly',147,17,'SilverStripe\\Assets\\File'),(285,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:18',0,1,'explicitly',148,197,'SilverStripe\\Lessons\\Property'),(286,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',1,1,'implicitly',148,22,'SilverStripe\\Assets\\File'),(287,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',0,1,'explicitly',149,198,'SilverStripe\\Lessons\\Property'),(288,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',1,1,'implicitly',149,17,'SilverStripe\\Assets\\File'),(289,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',0,1,'explicitly',150,199,'SilverStripe\\Lessons\\Property'),(290,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',1,1,'implicitly',150,13,'SilverStripe\\Assets\\File'),(291,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',0,1,'explicitly',151,200,'SilverStripe\\Lessons\\Property'),(292,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:01:19','2017-09-26 12:01:19',1,1,'implicitly',151,13,'SilverStripe\\Assets\\File'),(293,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:27:46','2017-09-26 12:27:46',1,2,'explicitly',152,1,'SilverStripe\\Lessons\\Region'),(295,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:28:06','2017-09-26 12:28:06',1,2,'explicitly',153,2,'SilverStripe\\Lessons\\Region'),(297,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:28:42','2017-09-26 12:28:42',1,2,'explicitly',154,3,'SilverStripe\\Lessons\\Region'),(298,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:28:42','2017-09-26 12:28:42',1,1,'implicitly',154,8,'SilverStripe\\Assets\\File'),(299,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:29:14','2017-09-26 12:29:14',1,2,'explicitly',155,4,'SilverStripe\\Lessons\\Region'),(300,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:29:14','2017-09-26 12:29:14',1,1,'implicitly',155,9,'SilverStripe\\Assets\\File'),(301,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-26 12:48:23','2017-09-26 12:48:23',3,4,'explicitly',156,6,'SilverStripe\\CMS\\Model\\SiteTree'),(302,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',157,12,'SilverStripe\\CMS\\Model\\SiteTree'),(303,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',157,5,'SilverStripe\\Assets\\File'),(304,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',157,6,'SilverStripe\\Assets\\File'),(305,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',158,13,'SilverStripe\\CMS\\Model\\SiteTree'),(306,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',158,5,'SilverStripe\\Assets\\File'),(307,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',158,6,'SilverStripe\\Assets\\File'),(308,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',159,14,'SilverStripe\\CMS\\Model\\SiteTree'),(309,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',159,5,'SilverStripe\\Assets\\File'),(310,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',159,6,'SilverStripe\\Assets\\File'),(311,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',160,15,'SilverStripe\\CMS\\Model\\SiteTree'),(312,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',160,5,'SilverStripe\\Assets\\File'),(313,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',160,4,'SilverStripe\\Assets\\File'),(314,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',161,16,'SilverStripe\\CMS\\Model\\SiteTree'),(315,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',161,3,'SilverStripe\\Assets\\File'),(316,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',161,6,'SilverStripe\\Assets\\File'),(317,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',162,17,'SilverStripe\\CMS\\Model\\SiteTree'),(318,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',162,3,'SilverStripe\\Assets\\File'),(319,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',162,6,'SilverStripe\\Assets\\File'),(320,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',163,18,'SilverStripe\\CMS\\Model\\SiteTree'),(321,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',163,5,'SilverStripe\\Assets\\File'),(322,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',163,4,'SilverStripe\\Assets\\File'),(323,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',0,1,'explicitly',164,19,'SilverStripe\\CMS\\Model\\SiteTree'),(324,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:16','2017-09-27 11:57:16',1,1,'implicitly',164,3,'SilverStripe\\Assets\\File'),(325,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:16',1,1,'implicitly',164,4,'SilverStripe\\Assets\\File'),(326,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',165,20,'SilverStripe\\CMS\\Model\\SiteTree'),(327,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',165,5,'SilverStripe\\Assets\\File'),(328,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',165,4,'SilverStripe\\Assets\\File'),(329,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',166,21,'SilverStripe\\CMS\\Model\\SiteTree'),(330,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',166,5,'SilverStripe\\Assets\\File'),(331,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',166,6,'SilverStripe\\Assets\\File'),(332,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',167,22,'SilverStripe\\CMS\\Model\\SiteTree'),(333,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',167,3,'SilverStripe\\Assets\\File'),(334,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',167,4,'SilverStripe\\Assets\\File'),(335,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',168,23,'SilverStripe\\CMS\\Model\\SiteTree'),(336,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',168,5,'SilverStripe\\Assets\\File'),(337,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',168,6,'SilverStripe\\Assets\\File'),(338,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',169,24,'SilverStripe\\CMS\\Model\\SiteTree'),(339,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',169,5,'SilverStripe\\Assets\\File'),(340,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',169,6,'SilverStripe\\Assets\\File'),(341,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',170,25,'SilverStripe\\CMS\\Model\\SiteTree'),(342,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',170,3,'SilverStripe\\Assets\\File'),(343,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',170,6,'SilverStripe\\Assets\\File'),(344,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',171,26,'SilverStripe\\CMS\\Model\\SiteTree'),(345,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',171,3,'SilverStripe\\Assets\\File'),(346,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',171,6,'SilverStripe\\Assets\\File'),(347,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',0,1,'explicitly',172,27,'SilverStripe\\CMS\\Model\\SiteTree'),(348,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',172,5,'SilverStripe\\Assets\\File'),(349,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:17','2017-09-27 11:57:17',1,1,'implicitly',172,4,'SilverStripe\\Assets\\File'),(350,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:17',0,1,'explicitly',173,28,'SilverStripe\\CMS\\Model\\SiteTree'),(351,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:17',1,1,'implicitly',173,5,'SilverStripe\\Assets\\File'),(352,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:17',1,1,'implicitly',173,4,'SilverStripe\\Assets\\File'),(353,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',174,29,'SilverStripe\\CMS\\Model\\SiteTree'),(354,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',174,3,'SilverStripe\\Assets\\File'),(355,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',174,4,'SilverStripe\\Assets\\File'),(356,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',175,30,'SilverStripe\\CMS\\Model\\SiteTree'),(357,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',175,3,'SilverStripe\\Assets\\File'),(358,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',175,6,'SilverStripe\\Assets\\File'),(359,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',176,31,'SilverStripe\\CMS\\Model\\SiteTree'),(360,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',176,5,'SilverStripe\\Assets\\File'),(361,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',176,6,'SilverStripe\\Assets\\File'),(362,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',177,32,'SilverStripe\\CMS\\Model\\SiteTree'),(363,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',177,5,'SilverStripe\\Assets\\File'),(364,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',177,4,'SilverStripe\\Assets\\File'),(365,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',178,33,'SilverStripe\\CMS\\Model\\SiteTree'),(366,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',178,3,'SilverStripe\\Assets\\File'),(367,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',178,4,'SilverStripe\\Assets\\File'),(368,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',179,34,'SilverStripe\\CMS\\Model\\SiteTree'),(369,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',179,5,'SilverStripe\\Assets\\File'),(370,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',179,6,'SilverStripe\\Assets\\File'),(371,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',180,35,'SilverStripe\\CMS\\Model\\SiteTree'),(372,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',180,3,'SilverStripe\\Assets\\File'),(373,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',180,4,'SilverStripe\\Assets\\File'),(374,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',0,1,'explicitly',181,36,'SilverStripe\\CMS\\Model\\SiteTree'),(375,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',181,5,'SilverStripe\\Assets\\File'),(376,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:18','2017-09-27 11:57:18',1,1,'implicitly',181,6,'SilverStripe\\Assets\\File'),(377,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',182,37,'SilverStripe\\CMS\\Model\\SiteTree'),(378,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',182,5,'SilverStripe\\Assets\\File'),(379,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',182,4,'SilverStripe\\Assets\\File'),(380,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',183,38,'SilverStripe\\CMS\\Model\\SiteTree'),(381,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',183,5,'SilverStripe\\Assets\\File'),(382,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',183,6,'SilverStripe\\Assets\\File'),(383,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',184,39,'SilverStripe\\CMS\\Model\\SiteTree'),(384,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',184,3,'SilverStripe\\Assets\\File'),(385,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',184,6,'SilverStripe\\Assets\\File'),(386,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',185,40,'SilverStripe\\CMS\\Model\\SiteTree'),(387,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',185,5,'SilverStripe\\Assets\\File'),(388,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',185,4,'SilverStripe\\Assets\\File'),(389,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',186,41,'SilverStripe\\CMS\\Model\\SiteTree'),(390,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',186,3,'SilverStripe\\Assets\\File'),(391,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',186,4,'SilverStripe\\Assets\\File'),(392,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',187,42,'SilverStripe\\CMS\\Model\\SiteTree'),(393,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',187,5,'SilverStripe\\Assets\\File'),(394,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',187,6,'SilverStripe\\Assets\\File'),(395,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',188,43,'SilverStripe\\CMS\\Model\\SiteTree'),(396,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',188,3,'SilverStripe\\Assets\\File'),(397,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',188,4,'SilverStripe\\Assets\\File'),(398,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',0,1,'explicitly',189,44,'SilverStripe\\CMS\\Model\\SiteTree'),(399,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',189,5,'SilverStripe\\Assets\\File'),(400,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:19','2017-09-27 11:57:19',1,1,'implicitly',189,4,'SilverStripe\\Assets\\File'),(401,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:19',0,1,'explicitly',190,45,'SilverStripe\\CMS\\Model\\SiteTree'),(402,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:19',1,1,'implicitly',190,3,'SilverStripe\\Assets\\File'),(403,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:19',1,1,'implicitly',190,6,'SilverStripe\\Assets\\File'),(404,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',191,46,'SilverStripe\\CMS\\Model\\SiteTree'),(405,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',191,3,'SilverStripe\\Assets\\File'),(406,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',191,4,'SilverStripe\\Assets\\File'),(407,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',192,47,'SilverStripe\\CMS\\Model\\SiteTree'),(408,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',192,3,'SilverStripe\\Assets\\File'),(409,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',192,6,'SilverStripe\\Assets\\File'),(410,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',193,48,'SilverStripe\\CMS\\Model\\SiteTree'),(411,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',193,5,'SilverStripe\\Assets\\File'),(412,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',193,6,'SilverStripe\\Assets\\File'),(413,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',194,49,'SilverStripe\\CMS\\Model\\SiteTree'),(414,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',194,5,'SilverStripe\\Assets\\File'),(415,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',194,6,'SilverStripe\\Assets\\File'),(416,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',195,50,'SilverStripe\\CMS\\Model\\SiteTree'),(417,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',195,5,'SilverStripe\\Assets\\File'),(418,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',195,6,'SilverStripe\\Assets\\File'),(419,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',196,51,'SilverStripe\\CMS\\Model\\SiteTree'),(420,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',196,3,'SilverStripe\\Assets\\File'),(421,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',196,4,'SilverStripe\\Assets\\File'),(422,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',197,52,'SilverStripe\\CMS\\Model\\SiteTree'),(423,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',197,3,'SilverStripe\\Assets\\File'),(424,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',197,4,'SilverStripe\\Assets\\File'),(425,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',0,1,'explicitly',198,53,'SilverStripe\\CMS\\Model\\SiteTree'),(426,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',198,3,'SilverStripe\\Assets\\File'),(427,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:20','2017-09-27 11:57:20',1,1,'implicitly',198,4,'SilverStripe\\Assets\\File'),(428,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',199,54,'SilverStripe\\CMS\\Model\\SiteTree'),(429,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',199,5,'SilverStripe\\Assets\\File'),(430,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',199,6,'SilverStripe\\Assets\\File'),(431,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',200,55,'SilverStripe\\CMS\\Model\\SiteTree'),(432,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',200,5,'SilverStripe\\Assets\\File'),(433,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',200,4,'SilverStripe\\Assets\\File'),(434,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',201,56,'SilverStripe\\CMS\\Model\\SiteTree'),(435,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',201,3,'SilverStripe\\Assets\\File'),(436,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',201,4,'SilverStripe\\Assets\\File'),(437,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',202,57,'SilverStripe\\CMS\\Model\\SiteTree'),(438,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',202,5,'SilverStripe\\Assets\\File'),(439,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',202,4,'SilverStripe\\Assets\\File'),(440,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',203,58,'SilverStripe\\CMS\\Model\\SiteTree'),(441,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',203,5,'SilverStripe\\Assets\\File'),(442,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',203,6,'SilverStripe\\Assets\\File'),(443,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',204,59,'SilverStripe\\CMS\\Model\\SiteTree'),(444,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',204,3,'SilverStripe\\Assets\\File'),(445,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',204,6,'SilverStripe\\Assets\\File'),(446,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',205,60,'SilverStripe\\CMS\\Model\\SiteTree'),(447,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',205,5,'SilverStripe\\Assets\\File'),(448,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',205,4,'SilverStripe\\Assets\\File'),(449,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',0,1,'explicitly',206,61,'SilverStripe\\CMS\\Model\\SiteTree'),(450,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',206,5,'SilverStripe\\Assets\\File'),(451,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:21','2017-09-27 11:57:21',1,1,'implicitly',206,4,'SilverStripe\\Assets\\File'),(452,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:21',0,1,'explicitly',207,62,'SilverStripe\\CMS\\Model\\SiteTree'),(453,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:21',1,1,'implicitly',207,5,'SilverStripe\\Assets\\File'),(454,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:21',1,1,'implicitly',207,6,'SilverStripe\\Assets\\File'),(455,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',208,63,'SilverStripe\\CMS\\Model\\SiteTree'),(456,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',208,3,'SilverStripe\\Assets\\File'),(457,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',208,4,'SilverStripe\\Assets\\File'),(458,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',209,64,'SilverStripe\\CMS\\Model\\SiteTree'),(459,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',209,5,'SilverStripe\\Assets\\File'),(460,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',209,6,'SilverStripe\\Assets\\File'),(461,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',210,65,'SilverStripe\\CMS\\Model\\SiteTree'),(462,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',210,5,'SilverStripe\\Assets\\File'),(463,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',210,4,'SilverStripe\\Assets\\File'),(464,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',211,66,'SilverStripe\\CMS\\Model\\SiteTree'),(465,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',211,5,'SilverStripe\\Assets\\File'),(466,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',211,6,'SilverStripe\\Assets\\File'),(467,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',212,67,'SilverStripe\\CMS\\Model\\SiteTree'),(468,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',212,3,'SilverStripe\\Assets\\File'),(469,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',212,6,'SilverStripe\\Assets\\File'),(470,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',213,68,'SilverStripe\\CMS\\Model\\SiteTree'),(471,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',213,3,'SilverStripe\\Assets\\File'),(472,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',213,6,'SilverStripe\\Assets\\File'),(473,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',214,69,'SilverStripe\\CMS\\Model\\SiteTree'),(474,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',214,3,'SilverStripe\\Assets\\File'),(475,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',214,4,'SilverStripe\\Assets\\File'),(476,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',0,1,'explicitly',215,70,'SilverStripe\\CMS\\Model\\SiteTree'),(477,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',215,5,'SilverStripe\\Assets\\File'),(478,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:22','2017-09-27 11:57:22',1,1,'implicitly',215,6,'SilverStripe\\Assets\\File'),(479,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',216,71,'SilverStripe\\CMS\\Model\\SiteTree'),(480,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',216,3,'SilverStripe\\Assets\\File'),(481,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',216,4,'SilverStripe\\Assets\\File'),(482,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',217,72,'SilverStripe\\CMS\\Model\\SiteTree'),(483,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',217,3,'SilverStripe\\Assets\\File'),(484,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',217,6,'SilverStripe\\Assets\\File'),(485,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',218,73,'SilverStripe\\CMS\\Model\\SiteTree'),(486,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',218,5,'SilverStripe\\Assets\\File'),(487,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',218,6,'SilverStripe\\Assets\\File'),(488,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',219,74,'SilverStripe\\CMS\\Model\\SiteTree'),(489,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',219,3,'SilverStripe\\Assets\\File'),(490,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',219,6,'SilverStripe\\Assets\\File'),(491,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',220,75,'SilverStripe\\CMS\\Model\\SiteTree'),(492,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',220,5,'SilverStripe\\Assets\\File'),(493,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',220,6,'SilverStripe\\Assets\\File'),(494,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',221,76,'SilverStripe\\CMS\\Model\\SiteTree'),(495,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',221,5,'SilverStripe\\Assets\\File'),(496,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',221,4,'SilverStripe\\Assets\\File'),(497,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',222,77,'SilverStripe\\CMS\\Model\\SiteTree'),(498,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',222,3,'SilverStripe\\Assets\\File'),(499,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',222,4,'SilverStripe\\Assets\\File'),(500,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',0,1,'explicitly',223,78,'SilverStripe\\CMS\\Model\\SiteTree'),(501,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',223,5,'SilverStripe\\Assets\\File'),(502,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:23','2017-09-27 11:57:23',1,1,'implicitly',223,6,'SilverStripe\\Assets\\File'),(503,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:23',0,1,'explicitly',224,79,'SilverStripe\\CMS\\Model\\SiteTree'),(504,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:23',1,1,'implicitly',224,5,'SilverStripe\\Assets\\File'),(505,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',224,6,'SilverStripe\\Assets\\File'),(506,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',225,80,'SilverStripe\\CMS\\Model\\SiteTree'),(507,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',225,5,'SilverStripe\\Assets\\File'),(508,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',225,4,'SilverStripe\\Assets\\File'),(509,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',226,81,'SilverStripe\\CMS\\Model\\SiteTree'),(510,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',226,5,'SilverStripe\\Assets\\File'),(511,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',226,4,'SilverStripe\\Assets\\File'),(512,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',227,82,'SilverStripe\\CMS\\Model\\SiteTree'),(513,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',227,3,'SilverStripe\\Assets\\File'),(514,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',227,4,'SilverStripe\\Assets\\File'),(515,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',228,83,'SilverStripe\\CMS\\Model\\SiteTree'),(516,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',228,3,'SilverStripe\\Assets\\File'),(517,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',228,4,'SilverStripe\\Assets\\File'),(518,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',229,84,'SilverStripe\\CMS\\Model\\SiteTree'),(519,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',229,3,'SilverStripe\\Assets\\File'),(520,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',229,6,'SilverStripe\\Assets\\File'),(521,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',230,85,'SilverStripe\\CMS\\Model\\SiteTree'),(522,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',230,3,'SilverStripe\\Assets\\File'),(523,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',230,4,'SilverStripe\\Assets\\File'),(524,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',231,86,'SilverStripe\\CMS\\Model\\SiteTree'),(525,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',231,5,'SilverStripe\\Assets\\File'),(526,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',231,6,'SilverStripe\\Assets\\File'),(527,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',0,1,'explicitly',232,87,'SilverStripe\\CMS\\Model\\SiteTree'),(528,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',232,3,'SilverStripe\\Assets\\File'),(529,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:24','2017-09-27 11:57:24',1,1,'implicitly',232,4,'SilverStripe\\Assets\\File'),(530,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',233,88,'SilverStripe\\CMS\\Model\\SiteTree'),(531,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',233,5,'SilverStripe\\Assets\\File'),(532,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',233,4,'SilverStripe\\Assets\\File'),(533,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',234,89,'SilverStripe\\CMS\\Model\\SiteTree'),(534,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',234,3,'SilverStripe\\Assets\\File'),(535,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',234,6,'SilverStripe\\Assets\\File'),(536,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',235,90,'SilverStripe\\CMS\\Model\\SiteTree'),(537,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',235,5,'SilverStripe\\Assets\\File'),(538,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',235,4,'SilverStripe\\Assets\\File'),(539,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',236,91,'SilverStripe\\CMS\\Model\\SiteTree'),(540,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',236,3,'SilverStripe\\Assets\\File'),(541,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',236,4,'SilverStripe\\Assets\\File'),(542,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',237,92,'SilverStripe\\CMS\\Model\\SiteTree'),(543,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',237,3,'SilverStripe\\Assets\\File'),(544,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',237,6,'SilverStripe\\Assets\\File'),(545,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',238,93,'SilverStripe\\CMS\\Model\\SiteTree'),(546,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',238,3,'SilverStripe\\Assets\\File'),(547,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',238,4,'SilverStripe\\Assets\\File'),(548,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',239,94,'SilverStripe\\CMS\\Model\\SiteTree'),(549,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',239,5,'SilverStripe\\Assets\\File'),(550,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',239,4,'SilverStripe\\Assets\\File'),(551,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',0,1,'explicitly',240,95,'SilverStripe\\CMS\\Model\\SiteTree'),(552,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',240,5,'SilverStripe\\Assets\\File'),(553,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:25','2017-09-27 11:57:25',1,1,'implicitly',240,6,'SilverStripe\\Assets\\File'),(554,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:25',0,1,'explicitly',241,96,'SilverStripe\\CMS\\Model\\SiteTree'),(555,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:25',1,1,'implicitly',241,5,'SilverStripe\\Assets\\File'),(556,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:25',1,1,'implicitly',241,6,'SilverStripe\\Assets\\File'),(557,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',242,97,'SilverStripe\\CMS\\Model\\SiteTree'),(558,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',242,5,'SilverStripe\\Assets\\File'),(559,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',242,4,'SilverStripe\\Assets\\File'),(560,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',243,98,'SilverStripe\\CMS\\Model\\SiteTree'),(561,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',243,5,'SilverStripe\\Assets\\File'),(562,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',243,4,'SilverStripe\\Assets\\File'),(563,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',244,99,'SilverStripe\\CMS\\Model\\SiteTree'),(564,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',244,5,'SilverStripe\\Assets\\File'),(565,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',244,6,'SilverStripe\\Assets\\File'),(566,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',245,100,'SilverStripe\\CMS\\Model\\SiteTree'),(567,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',245,3,'SilverStripe\\Assets\\File'),(568,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',245,6,'SilverStripe\\Assets\\File'),(569,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',246,101,'SilverStripe\\CMS\\Model\\SiteTree'),(570,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',246,3,'SilverStripe\\Assets\\File'),(571,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',246,6,'SilverStripe\\Assets\\File'),(572,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',247,102,'SilverStripe\\CMS\\Model\\SiteTree'),(573,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',247,3,'SilverStripe\\Assets\\File'),(574,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',247,4,'SilverStripe\\Assets\\File'),(575,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',248,103,'SilverStripe\\CMS\\Model\\SiteTree'),(576,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',248,5,'SilverStripe\\Assets\\File'),(577,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',248,4,'SilverStripe\\Assets\\File'),(578,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',0,1,'explicitly',249,104,'SilverStripe\\CMS\\Model\\SiteTree'),(579,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:26','2017-09-27 11:57:26',1,1,'implicitly',249,3,'SilverStripe\\Assets\\File'),(580,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:26',1,1,'implicitly',249,4,'SilverStripe\\Assets\\File'),(581,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',0,1,'explicitly',250,105,'SilverStripe\\CMS\\Model\\SiteTree'),(582,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',250,3,'SilverStripe\\Assets\\File'),(583,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',250,4,'SilverStripe\\Assets\\File'),(584,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',0,1,'explicitly',251,106,'SilverStripe\\CMS\\Model\\SiteTree'),(585,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',251,3,'SilverStripe\\Assets\\File'),(586,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',251,6,'SilverStripe\\Assets\\File'),(587,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',0,1,'explicitly',252,107,'SilverStripe\\CMS\\Model\\SiteTree'),(588,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',252,3,'SilverStripe\\Assets\\File'),(589,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',252,4,'SilverStripe\\Assets\\File'),(590,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',0,1,'explicitly',253,108,'SilverStripe\\CMS\\Model\\SiteTree'),(591,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',253,5,'SilverStripe\\Assets\\File'),(592,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',253,6,'SilverStripe\\Assets\\File'),(593,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',0,1,'explicitly',254,109,'SilverStripe\\CMS\\Model\\SiteTree'),(594,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',254,5,'SilverStripe\\Assets\\File'),(595,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 11:57:27','2017-09-27 11:57:27',1,1,'implicitly',254,6,'SilverStripe\\Assets\\File'),(597,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,1,'implicitly',255,3,'SilverStripe\\Assets\\File'),(598,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,1,'implicitly',255,4,'SilverStripe\\Assets\\File'),(600,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,1,'implicitly',256,5,'SilverStripe\\Assets\\File'),(601,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,1,'implicitly',256,6,'SilverStripe\\Assets\\File'),(602,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,2,'explicitly',257,12,'SilverStripe\\CMS\\Model\\SiteTree'),(603,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,1,'implicitly',257,5,'SilverStripe\\Assets\\File'),(604,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:22','2017-09-27 12:03:22',1,1,'implicitly',257,6,'SilverStripe\\Assets\\File'),(605,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:22',1,2,'explicitly',258,13,'SilverStripe\\CMS\\Model\\SiteTree'),(606,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:22',1,1,'implicitly',258,5,'SilverStripe\\Assets\\File'),(607,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:22',1,1,'implicitly',258,6,'SilverStripe\\Assets\\File'),(608,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',259,14,'SilverStripe\\CMS\\Model\\SiteTree'),(609,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',259,5,'SilverStripe\\Assets\\File'),(610,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',259,6,'SilverStripe\\Assets\\File'),(611,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',260,15,'SilverStripe\\CMS\\Model\\SiteTree'),(612,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',260,5,'SilverStripe\\Assets\\File'),(613,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',260,4,'SilverStripe\\Assets\\File'),(614,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',261,16,'SilverStripe\\CMS\\Model\\SiteTree'),(615,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',261,3,'SilverStripe\\Assets\\File'),(616,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',261,6,'SilverStripe\\Assets\\File'),(617,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',262,17,'SilverStripe\\CMS\\Model\\SiteTree'),(618,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',262,3,'SilverStripe\\Assets\\File'),(619,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',262,6,'SilverStripe\\Assets\\File'),(620,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',263,18,'SilverStripe\\CMS\\Model\\SiteTree'),(621,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',263,5,'SilverStripe\\Assets\\File'),(622,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',263,4,'SilverStripe\\Assets\\File'),(623,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',264,19,'SilverStripe\\CMS\\Model\\SiteTree'),(624,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',264,3,'SilverStripe\\Assets\\File'),(625,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',264,4,'SilverStripe\\Assets\\File'),(626,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',265,20,'SilverStripe\\CMS\\Model\\SiteTree'),(627,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',265,5,'SilverStripe\\Assets\\File'),(628,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',265,4,'SilverStripe\\Assets\\File'),(629,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,2,'explicitly',266,21,'SilverStripe\\CMS\\Model\\SiteTree'),(630,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',266,5,'SilverStripe\\Assets\\File'),(631,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:23','2017-09-27 12:03:23',1,1,'implicitly',266,6,'SilverStripe\\Assets\\File'),(632,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:23',1,2,'explicitly',267,22,'SilverStripe\\CMS\\Model\\SiteTree'),(633,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:23',1,1,'implicitly',267,3,'SilverStripe\\Assets\\File'),(634,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:23',1,1,'implicitly',267,4,'SilverStripe\\Assets\\File'),(635,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',268,23,'SilverStripe\\CMS\\Model\\SiteTree'),(636,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',268,5,'SilverStripe\\Assets\\File'),(637,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',268,6,'SilverStripe\\Assets\\File'),(638,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',269,24,'SilverStripe\\CMS\\Model\\SiteTree'),(639,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',269,5,'SilverStripe\\Assets\\File'),(640,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',269,6,'SilverStripe\\Assets\\File'),(641,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',270,25,'SilverStripe\\CMS\\Model\\SiteTree'),(642,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',270,3,'SilverStripe\\Assets\\File'),(643,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',270,6,'SilverStripe\\Assets\\File'),(644,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',271,26,'SilverStripe\\CMS\\Model\\SiteTree'),(645,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',271,3,'SilverStripe\\Assets\\File'),(646,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',271,6,'SilverStripe\\Assets\\File'),(647,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',272,27,'SilverStripe\\CMS\\Model\\SiteTree'),(648,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',272,5,'SilverStripe\\Assets\\File'),(649,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',272,4,'SilverStripe\\Assets\\File'),(650,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',273,28,'SilverStripe\\CMS\\Model\\SiteTree'),(651,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',273,5,'SilverStripe\\Assets\\File'),(652,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',273,4,'SilverStripe\\Assets\\File'),(653,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',274,29,'SilverStripe\\CMS\\Model\\SiteTree'),(654,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',274,3,'SilverStripe\\Assets\\File'),(655,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',274,4,'SilverStripe\\Assets\\File'),(656,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,2,'explicitly',275,30,'SilverStripe\\CMS\\Model\\SiteTree'),(657,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',275,3,'SilverStripe\\Assets\\File'),(658,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:24','2017-09-27 12:03:24',1,1,'implicitly',275,6,'SilverStripe\\Assets\\File'),(659,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:24',1,2,'explicitly',276,31,'SilverStripe\\CMS\\Model\\SiteTree'),(660,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:24',1,1,'implicitly',276,5,'SilverStripe\\Assets\\File'),(661,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:24',1,1,'implicitly',276,6,'SilverStripe\\Assets\\File'),(662,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',277,32,'SilverStripe\\CMS\\Model\\SiteTree'),(663,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',277,5,'SilverStripe\\Assets\\File'),(664,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',277,4,'SilverStripe\\Assets\\File'),(665,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',278,33,'SilverStripe\\CMS\\Model\\SiteTree'),(666,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',278,3,'SilverStripe\\Assets\\File'),(667,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',278,4,'SilverStripe\\Assets\\File'),(668,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',279,34,'SilverStripe\\CMS\\Model\\SiteTree'),(669,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',279,5,'SilverStripe\\Assets\\File'),(670,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',279,6,'SilverStripe\\Assets\\File'),(671,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',280,35,'SilverStripe\\CMS\\Model\\SiteTree'),(672,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',280,3,'SilverStripe\\Assets\\File'),(673,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',280,4,'SilverStripe\\Assets\\File'),(674,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',281,36,'SilverStripe\\CMS\\Model\\SiteTree'),(675,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',281,5,'SilverStripe\\Assets\\File'),(676,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',281,6,'SilverStripe\\Assets\\File'),(677,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',282,37,'SilverStripe\\CMS\\Model\\SiteTree'),(678,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',282,5,'SilverStripe\\Assets\\File'),(679,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',282,4,'SilverStripe\\Assets\\File'),(680,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',283,38,'SilverStripe\\CMS\\Model\\SiteTree'),(681,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',283,5,'SilverStripe\\Assets\\File'),(682,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',283,6,'SilverStripe\\Assets\\File'),(683,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,2,'explicitly',284,39,'SilverStripe\\CMS\\Model\\SiteTree'),(684,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',284,3,'SilverStripe\\Assets\\File'),(685,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:25','2017-09-27 12:03:25',1,1,'implicitly',284,6,'SilverStripe\\Assets\\File'),(686,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:25',1,2,'explicitly',285,40,'SilverStripe\\CMS\\Model\\SiteTree'),(687,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',285,5,'SilverStripe\\Assets\\File'),(688,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',285,4,'SilverStripe\\Assets\\File'),(689,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',286,41,'SilverStripe\\CMS\\Model\\SiteTree'),(690,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',286,3,'SilverStripe\\Assets\\File'),(691,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',286,4,'SilverStripe\\Assets\\File'),(692,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',287,42,'SilverStripe\\CMS\\Model\\SiteTree'),(693,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',287,5,'SilverStripe\\Assets\\File'),(694,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',287,6,'SilverStripe\\Assets\\File'),(695,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',288,43,'SilverStripe\\CMS\\Model\\SiteTree'),(696,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',288,3,'SilverStripe\\Assets\\File'),(697,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',288,4,'SilverStripe\\Assets\\File'),(698,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',289,44,'SilverStripe\\CMS\\Model\\SiteTree'),(699,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',289,5,'SilverStripe\\Assets\\File'),(700,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',289,4,'SilverStripe\\Assets\\File'),(701,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',290,45,'SilverStripe\\CMS\\Model\\SiteTree'),(702,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',290,3,'SilverStripe\\Assets\\File'),(703,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',290,6,'SilverStripe\\Assets\\File'),(704,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',291,46,'SilverStripe\\CMS\\Model\\SiteTree'),(705,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',291,3,'SilverStripe\\Assets\\File'),(706,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',291,4,'SilverStripe\\Assets\\File'),(707,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',292,47,'SilverStripe\\CMS\\Model\\SiteTree'),(708,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',292,3,'SilverStripe\\Assets\\File'),(709,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',292,6,'SilverStripe\\Assets\\File'),(710,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,2,'explicitly',293,48,'SilverStripe\\CMS\\Model\\SiteTree'),(711,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',293,5,'SilverStripe\\Assets\\File'),(712,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:26','2017-09-27 12:03:26',1,1,'implicitly',293,6,'SilverStripe\\Assets\\File'),(713,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',294,49,'SilverStripe\\CMS\\Model\\SiteTree'),(714,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',294,5,'SilverStripe\\Assets\\File'),(715,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',294,6,'SilverStripe\\Assets\\File'),(716,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',295,50,'SilverStripe\\CMS\\Model\\SiteTree'),(717,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',295,5,'SilverStripe\\Assets\\File'),(718,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',295,6,'SilverStripe\\Assets\\File'),(719,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',296,51,'SilverStripe\\CMS\\Model\\SiteTree'),(720,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',296,3,'SilverStripe\\Assets\\File'),(721,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',296,4,'SilverStripe\\Assets\\File'),(722,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',297,52,'SilverStripe\\CMS\\Model\\SiteTree'),(723,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',297,3,'SilverStripe\\Assets\\File'),(724,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',297,4,'SilverStripe\\Assets\\File'),(725,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',298,53,'SilverStripe\\CMS\\Model\\SiteTree'),(726,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',298,3,'SilverStripe\\Assets\\File'),(727,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',298,4,'SilverStripe\\Assets\\File'),(728,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',299,54,'SilverStripe\\CMS\\Model\\SiteTree'),(729,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',299,5,'SilverStripe\\Assets\\File'),(730,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',299,6,'SilverStripe\\Assets\\File'),(731,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',300,55,'SilverStripe\\CMS\\Model\\SiteTree'),(732,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',300,5,'SilverStripe\\Assets\\File'),(733,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',300,4,'SilverStripe\\Assets\\File'),(734,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,2,'explicitly',301,56,'SilverStripe\\CMS\\Model\\SiteTree'),(735,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',301,3,'SilverStripe\\Assets\\File'),(736,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:27','2017-09-27 12:03:27',1,1,'implicitly',301,4,'SilverStripe\\Assets\\File'),(737,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:27',1,2,'explicitly',302,57,'SilverStripe\\CMS\\Model\\SiteTree'),(738,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:27',1,1,'implicitly',302,5,'SilverStripe\\Assets\\File'),(739,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:27',1,1,'implicitly',302,4,'SilverStripe\\Assets\\File'),(740,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',303,58,'SilverStripe\\CMS\\Model\\SiteTree'),(741,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',303,5,'SilverStripe\\Assets\\File'),(742,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',303,6,'SilverStripe\\Assets\\File'),(743,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',304,59,'SilverStripe\\CMS\\Model\\SiteTree'),(744,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',304,3,'SilverStripe\\Assets\\File'),(745,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',304,6,'SilverStripe\\Assets\\File'),(746,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',305,60,'SilverStripe\\CMS\\Model\\SiteTree'),(747,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',305,5,'SilverStripe\\Assets\\File'),(748,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',305,4,'SilverStripe\\Assets\\File'),(749,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',306,61,'SilverStripe\\CMS\\Model\\SiteTree'),(750,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',306,5,'SilverStripe\\Assets\\File'),(751,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',306,4,'SilverStripe\\Assets\\File'),(752,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',307,62,'SilverStripe\\CMS\\Model\\SiteTree'),(753,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',307,5,'SilverStripe\\Assets\\File'),(754,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',307,6,'SilverStripe\\Assets\\File'),(755,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',308,63,'SilverStripe\\CMS\\Model\\SiteTree'),(756,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',308,3,'SilverStripe\\Assets\\File'),(757,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',308,4,'SilverStripe\\Assets\\File'),(758,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',309,64,'SilverStripe\\CMS\\Model\\SiteTree'),(759,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',309,5,'SilverStripe\\Assets\\File'),(760,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',309,6,'SilverStripe\\Assets\\File'),(761,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,2,'explicitly',310,65,'SilverStripe\\CMS\\Model\\SiteTree'),(762,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',310,5,'SilverStripe\\Assets\\File'),(763,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:28','2017-09-27 12:03:28',1,1,'implicitly',310,4,'SilverStripe\\Assets\\File'),(764,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:28',1,2,'explicitly',311,66,'SilverStripe\\CMS\\Model\\SiteTree'),(765,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',311,5,'SilverStripe\\Assets\\File'),(766,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',311,6,'SilverStripe\\Assets\\File'),(767,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',312,67,'SilverStripe\\CMS\\Model\\SiteTree'),(768,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',312,3,'SilverStripe\\Assets\\File'),(769,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',312,6,'SilverStripe\\Assets\\File'),(770,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',313,68,'SilverStripe\\CMS\\Model\\SiteTree'),(771,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',313,3,'SilverStripe\\Assets\\File'),(772,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',313,6,'SilverStripe\\Assets\\File'),(773,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',314,69,'SilverStripe\\CMS\\Model\\SiteTree'),(774,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',314,3,'SilverStripe\\Assets\\File'),(775,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',314,4,'SilverStripe\\Assets\\File'),(776,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',315,70,'SilverStripe\\CMS\\Model\\SiteTree'),(777,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',315,5,'SilverStripe\\Assets\\File'),(778,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',315,6,'SilverStripe\\Assets\\File'),(779,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',316,71,'SilverStripe\\CMS\\Model\\SiteTree'),(780,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',316,3,'SilverStripe\\Assets\\File'),(781,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',316,4,'SilverStripe\\Assets\\File'),(782,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',317,72,'SilverStripe\\CMS\\Model\\SiteTree'),(783,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',317,3,'SilverStripe\\Assets\\File'),(784,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',317,6,'SilverStripe\\Assets\\File'),(785,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',318,73,'SilverStripe\\CMS\\Model\\SiteTree'),(786,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',318,5,'SilverStripe\\Assets\\File'),(787,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',318,6,'SilverStripe\\Assets\\File'),(788,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,2,'explicitly',319,74,'SilverStripe\\CMS\\Model\\SiteTree'),(789,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',319,3,'SilverStripe\\Assets\\File'),(790,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:29','2017-09-27 12:03:29',1,1,'implicitly',319,6,'SilverStripe\\Assets\\File'),(791,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',320,75,'SilverStripe\\CMS\\Model\\SiteTree'),(792,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',320,5,'SilverStripe\\Assets\\File'),(793,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',320,6,'SilverStripe\\Assets\\File'),(794,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',321,76,'SilverStripe\\CMS\\Model\\SiteTree'),(795,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',321,5,'SilverStripe\\Assets\\File'),(796,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',321,4,'SilverStripe\\Assets\\File'),(797,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',322,77,'SilverStripe\\CMS\\Model\\SiteTree'),(798,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',322,3,'SilverStripe\\Assets\\File'),(799,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',322,4,'SilverStripe\\Assets\\File'),(800,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',323,78,'SilverStripe\\CMS\\Model\\SiteTree'),(801,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',323,5,'SilverStripe\\Assets\\File'),(802,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',323,6,'SilverStripe\\Assets\\File'),(803,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',324,79,'SilverStripe\\CMS\\Model\\SiteTree'),(804,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',324,5,'SilverStripe\\Assets\\File'),(805,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',324,6,'SilverStripe\\Assets\\File'),(806,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',325,80,'SilverStripe\\CMS\\Model\\SiteTree'),(807,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',325,5,'SilverStripe\\Assets\\File'),(808,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',325,4,'SilverStripe\\Assets\\File'),(809,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',326,81,'SilverStripe\\CMS\\Model\\SiteTree'),(810,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',326,5,'SilverStripe\\Assets\\File'),(811,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',326,4,'SilverStripe\\Assets\\File'),(812,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',327,82,'SilverStripe\\CMS\\Model\\SiteTree'),(813,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',327,3,'SilverStripe\\Assets\\File'),(814,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',327,4,'SilverStripe\\Assets\\File'),(815,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,2,'explicitly',328,83,'SilverStripe\\CMS\\Model\\SiteTree'),(816,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',328,3,'SilverStripe\\Assets\\File'),(817,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:30','2017-09-27 12:03:30',1,1,'implicitly',328,4,'SilverStripe\\Assets\\File'),(818,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',329,84,'SilverStripe\\CMS\\Model\\SiteTree'),(819,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',329,3,'SilverStripe\\Assets\\File'),(820,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',329,6,'SilverStripe\\Assets\\File'),(821,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',330,85,'SilverStripe\\CMS\\Model\\SiteTree'),(822,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',330,3,'SilverStripe\\Assets\\File'),(823,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',330,4,'SilverStripe\\Assets\\File'),(824,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',331,86,'SilverStripe\\CMS\\Model\\SiteTree'),(825,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',331,5,'SilverStripe\\Assets\\File'),(826,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',331,6,'SilverStripe\\Assets\\File'),(827,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',332,87,'SilverStripe\\CMS\\Model\\SiteTree'),(828,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',332,3,'SilverStripe\\Assets\\File'),(829,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',332,4,'SilverStripe\\Assets\\File'),(830,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',333,88,'SilverStripe\\CMS\\Model\\SiteTree'),(831,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',333,5,'SilverStripe\\Assets\\File'),(832,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',333,4,'SilverStripe\\Assets\\File'),(833,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',334,89,'SilverStripe\\CMS\\Model\\SiteTree'),(834,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',334,3,'SilverStripe\\Assets\\File'),(835,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',334,6,'SilverStripe\\Assets\\File'),(836,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',335,90,'SilverStripe\\CMS\\Model\\SiteTree'),(837,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',335,5,'SilverStripe\\Assets\\File'),(838,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',335,4,'SilverStripe\\Assets\\File'),(839,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',336,91,'SilverStripe\\CMS\\Model\\SiteTree'),(840,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',336,3,'SilverStripe\\Assets\\File'),(841,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,1,'implicitly',336,4,'SilverStripe\\Assets\\File'),(842,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:31','2017-09-27 12:03:31',1,2,'explicitly',337,92,'SilverStripe\\CMS\\Model\\SiteTree'),(843,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:31',1,1,'implicitly',337,3,'SilverStripe\\Assets\\File'),(844,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:31',1,1,'implicitly',337,6,'SilverStripe\\Assets\\File'),(845,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',338,93,'SilverStripe\\CMS\\Model\\SiteTree'),(846,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',338,3,'SilverStripe\\Assets\\File'),(847,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',338,4,'SilverStripe\\Assets\\File'),(848,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',339,94,'SilverStripe\\CMS\\Model\\SiteTree'),(849,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',339,5,'SilverStripe\\Assets\\File'),(850,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',339,4,'SilverStripe\\Assets\\File'),(851,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',340,95,'SilverStripe\\CMS\\Model\\SiteTree'),(852,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',340,5,'SilverStripe\\Assets\\File'),(853,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',340,6,'SilverStripe\\Assets\\File'),(854,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',341,96,'SilverStripe\\CMS\\Model\\SiteTree'),(855,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',341,5,'SilverStripe\\Assets\\File'),(856,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',341,6,'SilverStripe\\Assets\\File'),(857,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',342,97,'SilverStripe\\CMS\\Model\\SiteTree'),(858,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',342,5,'SilverStripe\\Assets\\File'),(859,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',342,4,'SilverStripe\\Assets\\File'),(860,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',343,98,'SilverStripe\\CMS\\Model\\SiteTree'),(861,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',343,5,'SilverStripe\\Assets\\File'),(862,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',343,4,'SilverStripe\\Assets\\File'),(863,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',344,99,'SilverStripe\\CMS\\Model\\SiteTree'),(864,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',344,5,'SilverStripe\\Assets\\File'),(865,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',344,6,'SilverStripe\\Assets\\File'),(866,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,2,'explicitly',345,100,'SilverStripe\\CMS\\Model\\SiteTree'),(867,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',345,3,'SilverStripe\\Assets\\File'),(868,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:32','2017-09-27 12:03:32',1,1,'implicitly',345,6,'SilverStripe\\Assets\\File'),(869,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:32',1,2,'explicitly',346,101,'SilverStripe\\CMS\\Model\\SiteTree'),(870,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:32',1,1,'implicitly',346,3,'SilverStripe\\Assets\\File'),(871,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:32',1,1,'implicitly',346,6,'SilverStripe\\Assets\\File'),(872,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',347,102,'SilverStripe\\CMS\\Model\\SiteTree'),(873,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',347,3,'SilverStripe\\Assets\\File'),(874,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',347,4,'SilverStripe\\Assets\\File'),(875,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',348,103,'SilverStripe\\CMS\\Model\\SiteTree'),(876,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',348,5,'SilverStripe\\Assets\\File'),(877,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',348,4,'SilverStripe\\Assets\\File'),(878,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',349,104,'SilverStripe\\CMS\\Model\\SiteTree'),(879,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',349,3,'SilverStripe\\Assets\\File'),(880,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',349,4,'SilverStripe\\Assets\\File'),(881,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',350,105,'SilverStripe\\CMS\\Model\\SiteTree'),(882,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',350,3,'SilverStripe\\Assets\\File'),(883,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',350,4,'SilverStripe\\Assets\\File'),(884,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',351,106,'SilverStripe\\CMS\\Model\\SiteTree'),(885,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',351,3,'SilverStripe\\Assets\\File'),(886,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',351,6,'SilverStripe\\Assets\\File'),(887,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',352,107,'SilverStripe\\CMS\\Model\\SiteTree'),(888,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',352,3,'SilverStripe\\Assets\\File'),(889,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',352,4,'SilverStripe\\Assets\\File'),(890,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',353,108,'SilverStripe\\CMS\\Model\\SiteTree'),(891,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',353,5,'SilverStripe\\Assets\\File'),(892,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',353,6,'SilverStripe\\Assets\\File'),(893,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,2,'explicitly',354,109,'SilverStripe\\CMS\\Model\\SiteTree'),(894,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',354,5,'SilverStripe\\Assets\\File'),(895,'SilverStripe\\Versioned\\ChangeSetItem','2017-09-27 12:03:33','2017-09-27 12:03:33',1,1,'implicitly',354,6,'SilverStripe\\Assets\\File'); -/*!40000 ALTER TABLE `ChangeSetItem` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ChangeSetItem_ReferencedBy` --- - -DROP TABLE IF EXISTS `ChangeSetItem_ReferencedBy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ChangeSetItem_ReferencedBy` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ChangeSetItemID` int(11) NOT NULL DEFAULT '0', - `ChildID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ChangeSetItemID` (`ChangeSetItemID`), - KEY `ChildID` (`ChildID`) -) ENGINE=InnoDB AUTO_INCREMENT=542 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ChangeSetItem_ReferencedBy` --- - -LOCK TABLES `ChangeSetItem_ReferencedBy` WRITE; -/*!40000 ALTER TABLE `ChangeSetItem_ReferencedBy` DISABLE KEYS */; -INSERT INTO `ChangeSetItem_ReferencedBy` VALUES (1,21,20),(2,22,20),(3,24,23),(4,25,23),(5,29,28),(6,30,28),(7,31,28),(8,32,28),(9,34,33),(10,35,33),(11,36,33),(12,37,33),(13,41,40),(14,42,40),(15,43,40),(16,44,40),(17,47,46),(18,48,46),(19,50,49),(20,51,49),(21,52,49),(22,53,49),(23,55,54),(24,56,54),(25,57,54),(26,58,54),(27,59,54),(28,60,54),(29,61,54),(30,62,54),(31,64,63),(32,66,65),(33,68,67),(34,70,69),(35,72,71),(36,74,73),(37,75,73),(38,77,76),(39,78,76),(40,80,79),(41,81,79),(42,94,93),(43,96,95),(44,98,97),(45,100,99),(46,102,101),(47,104,103),(48,106,105),(49,108,107),(50,110,109),(51,112,111),(52,114,113),(53,116,115),(54,118,117),(55,120,119),(56,122,121),(57,124,123),(58,126,125),(59,128,127),(60,130,129),(61,132,131),(62,134,133),(63,136,135),(64,138,137),(65,140,139),(66,142,141),(67,144,143),(68,146,145),(69,148,147),(70,150,149),(71,152,151),(72,154,153),(73,156,155),(74,158,157),(75,160,159),(76,162,161),(77,164,163),(78,166,165),(79,168,167),(80,170,169),(81,172,171),(82,174,173),(83,176,175),(84,178,177),(85,180,179),(86,182,181),(87,184,183),(88,186,185),(89,188,187),(90,190,189),(91,192,191),(92,194,193),(93,196,195),(94,198,197),(95,200,199),(96,202,201),(97,204,203),(98,206,205),(99,208,207),(100,210,209),(101,212,211),(102,214,213),(103,216,215),(104,218,217),(105,220,219),(106,222,221),(107,224,223),(108,226,225),(109,228,227),(110,230,229),(111,232,231),(112,234,233),(113,236,235),(114,238,237),(115,240,239),(116,242,241),(117,244,243),(118,246,245),(119,248,247),(120,250,249),(121,252,251),(122,254,253),(123,256,255),(124,258,257),(125,260,259),(126,262,261),(127,264,263),(128,266,265),(129,268,267),(130,270,269),(131,272,271),(132,274,273),(133,276,275),(134,278,277),(135,280,279),(136,282,281),(137,284,283),(138,286,285),(139,288,287),(140,290,289),(141,292,291),(142,294,293),(143,296,295),(144,298,297),(145,300,299),(146,303,302),(147,304,302),(148,306,305),(149,307,305),(150,309,308),(151,310,308),(152,312,311),(153,313,311),(154,315,314),(155,316,314),(156,318,317),(157,319,317),(158,321,320),(159,322,320),(160,324,323),(161,325,323),(162,327,326),(163,328,326),(164,330,329),(165,331,329),(166,333,332),(167,334,332),(168,336,335),(169,337,335),(170,339,338),(171,340,338),(172,342,341),(173,343,341),(174,345,344),(175,346,344),(176,348,347),(177,349,347),(178,351,350),(179,352,350),(180,354,353),(181,355,353),(182,357,356),(183,358,356),(184,360,359),(185,361,359),(186,363,362),(187,364,362),(188,366,365),(189,367,365),(190,369,368),(191,370,368),(192,372,371),(193,373,371),(194,375,374),(195,376,374),(196,378,377),(197,379,377),(198,381,380),(199,382,380),(200,384,383),(201,385,383),(202,387,386),(203,388,386),(204,390,389),(205,391,389),(206,393,392),(207,394,392),(208,396,395),(209,397,395),(210,399,398),(211,400,398),(212,402,401),(213,403,401),(214,405,404),(215,406,404),(216,408,407),(217,409,407),(218,411,410),(219,412,410),(220,414,413),(221,415,413),(222,417,416),(223,418,416),(224,420,419),(225,421,419),(226,423,422),(227,424,422),(228,426,425),(229,427,425),(230,429,428),(231,430,428),(232,432,431),(233,433,431),(234,435,434),(235,436,434),(236,438,437),(237,439,437),(238,441,440),(239,442,440),(240,444,443),(241,445,443),(242,447,446),(243,448,446),(244,450,449),(245,451,449),(246,453,452),(247,454,452),(248,456,455),(249,457,455),(250,459,458),(251,460,458),(252,462,461),(253,463,461),(254,465,464),(255,466,464),(256,468,467),(257,469,467),(258,471,470),(259,472,470),(260,474,473),(261,475,473),(262,477,476),(263,478,476),(264,480,479),(265,481,479),(266,483,482),(267,484,482),(268,486,485),(269,487,485),(270,489,488),(271,490,488),(272,492,491),(273,493,491),(274,495,494),(275,496,494),(276,498,497),(277,499,497),(278,501,500),(279,502,500),(280,504,503),(281,505,503),(282,507,506),(283,508,506),(284,510,509),(285,511,509),(286,513,512),(287,514,512),(288,516,515),(289,517,515),(290,519,518),(291,520,518),(292,522,521),(293,523,521),(294,525,524),(295,526,524),(296,528,527),(297,529,527),(298,531,530),(299,532,530),(300,534,533),(301,535,533),(302,537,536),(303,538,536),(304,540,539),(305,541,539),(306,543,542),(307,544,542),(308,546,545),(309,547,545),(310,549,548),(311,550,548),(312,552,551),(313,553,551),(314,555,554),(315,556,554),(316,558,557),(317,559,557),(318,561,560),(319,562,560),(320,564,563),(321,565,563),(322,567,566),(323,568,566),(324,570,569),(325,571,569),(326,573,572),(327,574,572),(328,576,575),(329,577,575),(330,579,578),(331,580,578),(332,582,581),(333,583,581),(334,585,584),(335,586,584),(336,588,587),(337,589,587),(338,591,590),(339,592,590),(340,594,593),(341,595,593),(342,597,596),(343,598,596),(344,600,599),(345,601,599),(346,603,602),(347,604,602),(348,606,605),(349,607,605),(350,609,608),(351,610,608),(352,612,611),(353,613,611),(354,615,614),(355,616,614),(356,618,617),(357,619,617),(358,621,620),(359,622,620),(360,624,623),(361,625,623),(362,627,626),(363,628,626),(364,630,629),(365,631,629),(366,633,632),(367,634,632),(368,636,635),(369,637,635),(370,639,638),(371,640,638),(372,642,641),(373,643,641),(374,645,644),(375,646,644),(376,648,647),(377,649,647),(378,651,650),(379,652,650),(380,654,653),(381,655,653),(382,657,656),(383,658,656),(384,660,659),(385,661,659),(386,663,662),(387,664,662),(388,666,665),(389,667,665),(390,669,668),(391,670,668),(392,672,671),(393,673,671),(394,675,674),(395,676,674),(396,678,677),(397,679,677),(398,681,680),(399,682,680),(400,684,683),(401,685,683),(402,687,686),(403,688,686),(404,690,689),(405,691,689),(406,693,692),(407,694,692),(408,696,695),(409,697,695),(410,699,698),(411,700,698),(412,702,701),(413,703,701),(414,705,704),(415,706,704),(416,708,707),(417,709,707),(418,711,710),(419,712,710),(420,714,713),(421,715,713),(422,717,716),(423,718,716),(424,720,719),(425,721,719),(426,723,722),(427,724,722),(428,726,725),(429,727,725),(430,729,728),(431,730,728),(432,732,731),(433,733,731),(434,735,734),(435,736,734),(436,738,737),(437,739,737),(438,741,740),(439,742,740),(440,744,743),(441,745,743),(442,747,746),(443,748,746),(444,750,749),(445,751,749),(446,753,752),(447,754,752),(448,756,755),(449,757,755),(450,759,758),(451,760,758),(452,762,761),(453,763,761),(454,765,764),(455,766,764),(456,768,767),(457,769,767),(458,771,770),(459,772,770),(460,774,773),(461,775,773),(462,777,776),(463,778,776),(464,780,779),(465,781,779),(466,783,782),(467,784,782),(468,786,785),(469,787,785),(470,789,788),(471,790,788),(472,792,791),(473,793,791),(474,795,794),(475,796,794),(476,798,797),(477,799,797),(478,801,800),(479,802,800),(480,804,803),(481,805,803),(482,807,806),(483,808,806),(484,810,809),(485,811,809),(486,813,812),(487,814,812),(488,816,815),(489,817,815),(490,819,818),(491,820,818),(492,822,821),(493,823,821),(494,825,824),(495,826,824),(496,828,827),(497,829,827),(498,831,830),(499,832,830),(500,834,833),(501,835,833),(502,837,836),(503,838,836),(504,840,839),(505,841,839),(506,843,842),(507,844,842),(508,846,845),(509,847,845),(510,849,848),(511,850,848),(512,852,851),(513,853,851),(514,855,854),(515,856,854),(516,858,857),(517,859,857),(518,861,860),(519,862,860),(520,864,863),(521,865,863),(522,867,866),(523,868,866),(524,870,869),(525,871,869),(526,873,872),(527,874,872),(528,876,875),(529,877,875),(530,879,878),(531,880,878),(532,882,881),(533,883,881),(534,885,884),(535,886,884),(536,888,887),(537,889,887),(538,891,890),(539,892,890),(540,894,893),(541,895,893); -/*!40000 ALTER TABLE `ChangeSetItem_ReferencedBy` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ErrorPage` --- - -DROP TABLE IF EXISTS `ErrorPage`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ErrorPage` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ErrorCode` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ErrorPage` --- - -LOCK TABLES `ErrorPage` WRITE; -/*!40000 ALTER TABLE `ErrorPage` DISABLE KEYS */; -INSERT INTO `ErrorPage` VALUES (4,404),(5,500); -/*!40000 ALTER TABLE `ErrorPage` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ErrorPage_Live` --- - -DROP TABLE IF EXISTS `ErrorPage_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ErrorPage_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ErrorCode` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ErrorPage_Live` --- - -LOCK TABLES `ErrorPage_Live` WRITE; -/*!40000 ALTER TABLE `ErrorPage_Live` DISABLE KEYS */; -INSERT INTO `ErrorPage_Live` VALUES (4,404),(5,500); -/*!40000 ALTER TABLE `ErrorPage_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ErrorPage_Versions` --- - -DROP TABLE IF EXISTS `ErrorPage_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ErrorPage_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `ErrorCode` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ErrorPage_Versions` --- - -LOCK TABLES `ErrorPage_Versions` WRITE; -/*!40000 ALTER TABLE `ErrorPage_Versions` DISABLE KEYS */; -INSERT INTO `ErrorPage_Versions` VALUES (1,4,1,404),(2,5,1,500); -/*!40000 ALTER TABLE `ErrorPage_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `File` --- - -DROP TABLE IF EXISTS `File`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `File` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image') DEFAULT 'SilverStripe\\Assets\\File', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Name` varchar(255) DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '1', - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `Version` int(11) NOT NULL DEFAULT '0', - `ParentID` int(11) NOT NULL DEFAULT '0', - `OwnerID` int(11) NOT NULL DEFAULT '0', - `FileHash` varchar(255) DEFAULT NULL, - `FileFilename` varchar(255) DEFAULT NULL, - `FileVariant` varchar(255) DEFAULT NULL, - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`), - KEY `OwnerID` (`OwnerID`) -) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `File` --- - -LOCK TABLES `File` WRITE; -/*!40000 ALTER TABLE `File` DISABLE KEYS */; -INSERT INTO `File` VALUES (1,'SilverStripe\\Assets\\Folder','2017-09-14 14:09:04','2017-09-13 13:45:48','travel-photos','travel-photos',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(2,'SilverStripe\\Assets\\Folder','2017-09-14 14:09:05','2017-09-13 13:45:48','travel-brochures','travel-brochures',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(3,'SilverStripe\\Assets\\Image','2017-09-14 14:09:04','2017-09-13 13:46:24','mock_file_1.jpeg','mock file 1',1,'Inherit','Inherit',1,1,1,'df481bc37fcf2e9b686e2e8c34eec206ebaf6255','travel-photos/mock_file_1.jpeg',NULL),(4,'SilverStripe\\Assets\\File','2017-09-14 14:09:05','2017-09-13 13:48:43','example-pdf.pdf','example pdf',1,'Inherit','Inherit',1,2,1,'957e89b7197175fa055f968b6da870958e0b14c9','travel-brochures/example-pdf.pdf',NULL),(5,'SilverStripe\\Assets\\Image','2017-09-13 13:52:13','2017-09-13 13:48:59','mock_file_2.jpeg','mock file 2',1,'Inherit','Inherit',1,1,1,'e7d72e1c5ed5f953285586bc3ea48f197a1dfb2c','travel-photos/mock_file_2.jpeg',NULL),(6,'SilverStripe\\Assets\\File','2017-09-13 13:52:13','2017-09-13 13:49:03','example-pdf-v2.pdf','example pdf v2',1,'Inherit','Inherit',1,2,1,'957e89b7197175fa055f968b6da870958e0b14c9','travel-brochures/example-pdf-v2.pdf',NULL),(7,'SilverStripe\\Assets\\Folder','2017-09-14 14:12:17','2017-09-14 12:58:05','region-photos','region-photos',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(8,'SilverStripe\\Assets\\Image','2017-09-14 14:12:16','2017-09-14 12:58:36','mock_file_5.jpeg','mock file 5',1,'Inherit','Inherit',1,7,1,'99eb2e15329f3f387524310a3d439aab4b92a9a9','region-photos/mock_file_5.jpeg',NULL),(9,'SilverStripe\\Assets\\Image','2017-09-14 14:12:17','2017-09-14 12:58:36','mock_file_7.jpeg','mock file 7',1,'Inherit','Inherit',1,7,1,'e5b9b590f02f82fec9e0d5dae8d3be14563f6b57','region-photos/mock_file_7.jpeg',NULL),(10,'SilverStripe\\Assets\\Image','2017-09-14 14:12:17','2017-09-14 12:58:37','mock_file_10.jpeg','mock file 10',1,'Inherit','Inherit',1,7,1,'5e856cff3078b3b328bee136606de028aab67609','region-photos/mock_file_10.jpeg',NULL),(11,'SilverStripe\\Assets\\Image','2017-09-14 14:12:17','2017-09-14 12:58:37','mock-file-3.jpeg','mock file 3',1,'Inherit','Inherit',1,7,1,'9f0202c6cb0a29c46052feeb7f4880d1f048a9c2','region-photos/mock-file-3.jpeg',NULL),(12,'SilverStripe\\Assets\\Folder','2017-09-26 12:00:36','2017-09-25 15:17:54','property-photos','property-photos',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(13,'SilverStripe\\Assets\\Image','2017-09-26 12:00:34','2017-09-26 12:00:22','property-1.jpg','property 1',1,'Inherit','Inherit',1,12,1,'c210d26c1d374b448ea295661ab9a8deeb52489b','property-photos/property-1.jpg',NULL),(14,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:23','property-2.jpg','property 2',1,'Inherit','Inherit',1,12,1,'227e53bd7745069d5875b8d2dba4bea314321d46','property-photos/property-2.jpg',NULL),(15,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:23','property-3.jpg','property 3',1,'Inherit','Inherit',1,12,1,'a31d1df10f7d436161135a69acd28867010c6a31','property-photos/property-3.jpg',NULL),(16,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:23','property-4.jpg','property 4',1,'Inherit','Inherit',1,12,1,'fd2a19662fbfa3541b2c4d99bd1cffedc95c8396','property-photos/property-4.jpg',NULL),(17,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:24','property-5.jpg','property 5',1,'Inherit','Inherit',1,12,1,'2751e707322afce6685b5d82aa2d624b94d8df20','property-photos/property-5.jpg',NULL),(18,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:24','property-6.jpg','property 6',1,'Inherit','Inherit',1,12,1,'c649e9dea1ea8ffaa4ada09096e244060b1a0915','property-photos/property-6.jpg',NULL),(19,'SilverStripe\\Assets\\Image','2017-09-26 12:00:36','2017-09-26 12:00:25','property-7.jpg','property 7',1,'Inherit','Inherit',1,12,1,'7bb2595d100c267a7fbfbc7ffe682d9dfc6cc376','property-photos/property-7.jpg',NULL),(20,'SilverStripe\\Assets\\Image','2017-09-26 12:00:36','2017-09-26 12:00:25','property-8.jpg','property 8',1,'Inherit','Inherit',1,12,1,'6b0fdafe51f615025f8ab87ccc309b6699326f82','property-photos/property-8.jpg',NULL),(21,'SilverStripe\\Assets\\Image','2017-09-26 12:00:36','2017-09-26 12:00:26','property-9.jpg','property 9',1,'Inherit','Inherit',1,12,1,'7df8d7e49ffd34b388d6f71513758392dc8454ca','property-photos/property-9.jpg',NULL),(22,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:26','property-10.jpg','property 10',1,'Inherit','Inherit',1,12,1,'bf3b7b8ec124882058bde3dedcbf1073f2ac2386','property-photos/property-10.jpg',NULL),(23,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:27','property-11.jpg','property 11',1,'Inherit','Inherit',1,12,1,'a2b33a5f47c37eade3751815c10412e74b70123b','property-photos/property-11.jpg',NULL); -/*!40000 ALTER TABLE `File` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `File_EditorGroups` --- - -DROP TABLE IF EXISTS `File_EditorGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `File_EditorGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `FileID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `FileID` (`FileID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `File_EditorGroups` --- - -LOCK TABLES `File_EditorGroups` WRITE; -/*!40000 ALTER TABLE `File_EditorGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `File_EditorGroups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `File_Live` --- - -DROP TABLE IF EXISTS `File_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `File_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image') DEFAULT 'SilverStripe\\Assets\\File', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Name` varchar(255) DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '1', - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `Version` int(11) NOT NULL DEFAULT '0', - `ParentID` int(11) NOT NULL DEFAULT '0', - `OwnerID` int(11) NOT NULL DEFAULT '0', - `FileHash` varchar(255) DEFAULT NULL, - `FileFilename` varchar(255) DEFAULT NULL, - `FileVariant` varchar(255) DEFAULT NULL, - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`), - KEY `OwnerID` (`OwnerID`) -) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `File_Live` --- - -LOCK TABLES `File_Live` WRITE; -/*!40000 ALTER TABLE `File_Live` DISABLE KEYS */; -INSERT INTO `File_Live` VALUES (1,'SilverStripe\\Assets\\Folder','2017-09-14 14:09:04','2017-09-13 13:45:48','travel-photos','travel-photos',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(2,'SilverStripe\\Assets\\Folder','2017-09-14 14:09:05','2017-09-13 13:45:48','travel-brochures','travel-brochures',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(3,'SilverStripe\\Assets\\Image','2017-09-14 14:09:04','2017-09-13 13:46:24','mock_file_1.jpeg','mock file 1',1,'Inherit','Inherit',1,1,1,'df481bc37fcf2e9b686e2e8c34eec206ebaf6255','travel-photos/mock_file_1.jpeg',NULL),(4,'SilverStripe\\Assets\\File','2017-09-14 14:09:05','2017-09-13 13:48:43','example-pdf.pdf','example pdf',1,'Inherit','Inherit',1,2,1,'957e89b7197175fa055f968b6da870958e0b14c9','travel-brochures/example-pdf.pdf',NULL),(5,'SilverStripe\\Assets\\Image','2017-09-13 13:52:13','2017-09-13 13:48:59','mock_file_2.jpeg','mock file 2',1,'Inherit','Inherit',1,1,1,'e7d72e1c5ed5f953285586bc3ea48f197a1dfb2c','travel-photos/mock_file_2.jpeg',NULL),(6,'SilverStripe\\Assets\\File','2017-09-13 13:52:13','2017-09-13 13:49:03','example-pdf-v2.pdf','example pdf v2',1,'Inherit','Inherit',1,2,1,'957e89b7197175fa055f968b6da870958e0b14c9','travel-brochures/example-pdf-v2.pdf',NULL),(7,'SilverStripe\\Assets\\Folder','2017-09-14 14:12:17','2017-09-14 12:58:05','region-photos','region-photos',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(8,'SilverStripe\\Assets\\Image','2017-09-14 14:12:16','2017-09-14 12:58:36','mock_file_5.jpeg','mock file 5',1,'Inherit','Inherit',1,7,1,'99eb2e15329f3f387524310a3d439aab4b92a9a9','region-photos/mock_file_5.jpeg',NULL),(9,'SilverStripe\\Assets\\Image','2017-09-14 14:12:17','2017-09-14 12:58:36','mock_file_7.jpeg','mock file 7',1,'Inherit','Inherit',1,7,1,'e5b9b590f02f82fec9e0d5dae8d3be14563f6b57','region-photos/mock_file_7.jpeg',NULL),(10,'SilverStripe\\Assets\\Image','2017-09-14 14:12:17','2017-09-14 12:58:37','mock_file_10.jpeg','mock file 10',1,'Inherit','Inherit',1,7,1,'5e856cff3078b3b328bee136606de028aab67609','region-photos/mock_file_10.jpeg',NULL),(11,'SilverStripe\\Assets\\Image','2017-09-14 14:12:17','2017-09-14 12:58:37','mock-file-3.jpeg','mock file 3',1,'Inherit','Inherit',1,7,1,'9f0202c6cb0a29c46052feeb7f4880d1f048a9c2','region-photos/mock-file-3.jpeg',NULL),(12,'SilverStripe\\Assets\\Folder','2017-09-26 12:00:36','2017-09-25 15:17:54','property-photos','property-photos',1,'Inherit','Inherit',1,0,1,NULL,NULL,NULL),(13,'SilverStripe\\Assets\\Image','2017-09-26 12:00:34','2017-09-26 12:00:22','property-1.jpg','property 1',1,'Inherit','Inherit',1,12,1,'c210d26c1d374b448ea295661ab9a8deeb52489b','property-photos/property-1.jpg',NULL),(14,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:23','property-2.jpg','property 2',1,'Inherit','Inherit',1,12,1,'227e53bd7745069d5875b8d2dba4bea314321d46','property-photos/property-2.jpg',NULL),(15,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:23','property-3.jpg','property 3',1,'Inherit','Inherit',1,12,1,'a31d1df10f7d436161135a69acd28867010c6a31','property-photos/property-3.jpg',NULL),(16,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:23','property-4.jpg','property 4',1,'Inherit','Inherit',1,12,1,'fd2a19662fbfa3541b2c4d99bd1cffedc95c8396','property-photos/property-4.jpg',NULL),(17,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:24','property-5.jpg','property 5',1,'Inherit','Inherit',1,12,1,'2751e707322afce6685b5d82aa2d624b94d8df20','property-photos/property-5.jpg',NULL),(18,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:24','property-6.jpg','property 6',1,'Inherit','Inherit',1,12,1,'c649e9dea1ea8ffaa4ada09096e244060b1a0915','property-photos/property-6.jpg',NULL),(19,'SilverStripe\\Assets\\Image','2017-09-26 12:00:36','2017-09-26 12:00:25','property-7.jpg','property 7',1,'Inherit','Inherit',1,12,1,'7bb2595d100c267a7fbfbc7ffe682d9dfc6cc376','property-photos/property-7.jpg',NULL),(20,'SilverStripe\\Assets\\Image','2017-09-26 12:00:36','2017-09-26 12:00:25','property-8.jpg','property 8',1,'Inherit','Inherit',1,12,1,'6b0fdafe51f615025f8ab87ccc309b6699326f82','property-photos/property-8.jpg',NULL),(21,'SilverStripe\\Assets\\Image','2017-09-26 12:00:36','2017-09-26 12:00:26','property-9.jpg','property 9',1,'Inherit','Inherit',1,12,1,'7df8d7e49ffd34b388d6f71513758392dc8454ca','property-photos/property-9.jpg',NULL),(22,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:26','property-10.jpg','property 10',1,'Inherit','Inherit',1,12,1,'bf3b7b8ec124882058bde3dedcbf1073f2ac2386','property-photos/property-10.jpg',NULL),(23,'SilverStripe\\Assets\\Image','2017-09-26 12:00:35','2017-09-26 12:00:27','property-11.jpg','property 11',1,'Inherit','Inherit',1,12,1,'a2b33a5f47c37eade3751815c10412e74b70123b','property-photos/property-11.jpg',NULL); -/*!40000 ALTER TABLE `File_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `File_Versions` --- - -DROP TABLE IF EXISTS `File_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `File_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', - `AuthorID` int(11) NOT NULL DEFAULT '0', - `PublisherID` int(11) NOT NULL DEFAULT '0', - `ClassName` enum('SilverStripe\\Assets\\File','SilverStripe\\Assets\\Folder','SilverStripe\\Assets\\Image') DEFAULT 'SilverStripe\\Assets\\File', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Name` varchar(255) DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '1', - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `ParentID` int(11) NOT NULL DEFAULT '0', - `OwnerID` int(11) NOT NULL DEFAULT '0', - `FileHash` varchar(255) DEFAULT NULL, - `FileFilename` varchar(255) DEFAULT NULL, - `FileVariant` varchar(255) DEFAULT NULL, - PRIMARY KEY (`ID`), - KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `AuthorID` (`AuthorID`), - KEY `PublisherID` (`PublisherID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`), - KEY `OwnerID` (`OwnerID`) -) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `File_Versions` --- - -LOCK TABLES `File_Versions` WRITE; -/*!40000 ALTER TABLE `File_Versions` DISABLE KEYS */; -INSERT INTO `File_Versions` VALUES (1,1,1,1,1,1,'SilverStripe\\Assets\\Folder','2017-09-13 13:45:48','2017-09-13 13:45:48','travel-photos','travel-photos',1,'Inherit','Inherit',0,1,NULL,NULL,NULL),(2,2,1,1,1,1,'SilverStripe\\Assets\\Folder','2017-09-13 13:45:48','2017-09-13 13:45:48','travel-brochures','travel-brochures',1,'Inherit','Inherit',0,1,NULL,NULL,NULL),(3,3,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-13 13:46:24','2017-09-13 13:46:24','mock_file_1.jpeg','mock file 1',1,'Inherit','Inherit',1,1,'df481bc37fcf2e9b686e2e8c34eec206ebaf6255','travel-photos/mock_file_1.jpeg',NULL),(4,4,1,1,1,1,'SilverStripe\\Assets\\File','2017-09-13 13:48:43','2017-09-13 13:48:43','example-pdf.pdf','example pdf',1,'Inherit','Inherit',2,1,'957e89b7197175fa055f968b6da870958e0b14c9','travel-brochures/example-pdf.pdf',NULL),(5,5,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-13 13:48:59','2017-09-13 13:48:59','mock_file_2.jpeg','mock file 2',1,'Inherit','Inherit',1,1,'e7d72e1c5ed5f953285586bc3ea48f197a1dfb2c','travel-photos/mock_file_2.jpeg',NULL),(6,6,1,1,1,1,'SilverStripe\\Assets\\File','2017-09-13 13:49:03','2017-09-13 13:49:03','example-pdf-v2.pdf','example pdf v2',1,'Inherit','Inherit',2,1,'957e89b7197175fa055f968b6da870958e0b14c9','travel-brochures/example-pdf-v2.pdf',NULL),(7,7,1,1,1,1,'SilverStripe\\Assets\\Folder','2017-09-14 12:58:05','2017-09-14 12:58:05','region-photos','region-photos',1,'Inherit','Inherit',0,1,NULL,NULL,NULL),(8,8,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-14 12:58:36','2017-09-14 12:58:36','mock_file_5.jpeg','mock file 5',1,'Inherit','Inherit',7,1,'99eb2e15329f3f387524310a3d439aab4b92a9a9','region-photos/mock_file_5.jpeg',NULL),(9,9,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-14 12:58:36','2017-09-14 12:58:36','mock_file_7.jpeg','mock file 7',1,'Inherit','Inherit',7,1,'e5b9b590f02f82fec9e0d5dae8d3be14563f6b57','region-photos/mock_file_7.jpeg',NULL),(10,10,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-14 12:58:37','2017-09-14 12:58:37','mock_file_10.jpeg','mock file 10',1,'Inherit','Inherit',7,1,'5e856cff3078b3b328bee136606de028aab67609','region-photos/mock_file_10.jpeg',NULL),(11,11,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-14 12:58:37','2017-09-14 12:58:37','mock-file-3.jpeg','mock file 3',1,'Inherit','Inherit',7,1,'9f0202c6cb0a29c46052feeb7f4880d1f048a9c2','region-photos/mock-file-3.jpeg',NULL),(12,12,1,1,1,1,'SilverStripe\\Assets\\Folder','2017-09-25 15:17:54','2017-09-25 15:17:54','property-photos','property-photos',1,'Inherit','Inherit',0,1,NULL,NULL,NULL),(13,13,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:22','2017-09-26 12:00:22','property-1.jpg','property 1',1,'Inherit','Inherit',12,1,'c210d26c1d374b448ea295661ab9a8deeb52489b','property-photos/property-1.jpg',NULL),(14,14,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:23','2017-09-26 12:00:23','property-2.jpg','property 2',1,'Inherit','Inherit',12,1,'227e53bd7745069d5875b8d2dba4bea314321d46','property-photos/property-2.jpg',NULL),(15,15,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:23','2017-09-26 12:00:23','property-3.jpg','property 3',1,'Inherit','Inherit',12,1,'a31d1df10f7d436161135a69acd28867010c6a31','property-photos/property-3.jpg',NULL),(16,16,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:23','2017-09-26 12:00:23','property-4.jpg','property 4',1,'Inherit','Inherit',12,1,'fd2a19662fbfa3541b2c4d99bd1cffedc95c8396','property-photos/property-4.jpg',NULL),(17,17,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:24','2017-09-26 12:00:24','property-5.jpg','property 5',1,'Inherit','Inherit',12,1,'2751e707322afce6685b5d82aa2d624b94d8df20','property-photos/property-5.jpg',NULL),(18,18,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:24','2017-09-26 12:00:24','property-6.jpg','property 6',1,'Inherit','Inherit',12,1,'c649e9dea1ea8ffaa4ada09096e244060b1a0915','property-photos/property-6.jpg',NULL),(19,19,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:25','2017-09-26 12:00:25','property-7.jpg','property 7',1,'Inherit','Inherit',12,1,'7bb2595d100c267a7fbfbc7ffe682d9dfc6cc376','property-photos/property-7.jpg',NULL),(20,20,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:25','2017-09-26 12:00:25','property-8.jpg','property 8',1,'Inherit','Inherit',12,1,'6b0fdafe51f615025f8ab87ccc309b6699326f82','property-photos/property-8.jpg',NULL),(21,21,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:26','2017-09-26 12:00:26','property-9.jpg','property 9',1,'Inherit','Inherit',12,1,'7df8d7e49ffd34b388d6f71513758392dc8454ca','property-photos/property-9.jpg',NULL),(22,22,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:26','2017-09-26 12:00:26','property-10.jpg','property 10',1,'Inherit','Inherit',12,1,'bf3b7b8ec124882058bde3dedcbf1073f2ac2386','property-photos/property-10.jpg',NULL),(23,23,1,1,1,1,'SilverStripe\\Assets\\Image','2017-09-26 12:00:27','2017-09-26 12:00:27','property-11.jpg','property 11',1,'Inherit','Inherit',12,1,'a2b33a5f47c37eade3751815c10412e74b70123b','property-photos/property-11.jpg',NULL); -/*!40000 ALTER TABLE `File_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `File_ViewerGroups` --- - -DROP TABLE IF EXISTS `File_ViewerGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `File_ViewerGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `FileID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `FileID` (`FileID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `File_ViewerGroups` --- - -LOCK TABLES `File_ViewerGroups` WRITE; -/*!40000 ALTER TABLE `File_ViewerGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `File_ViewerGroups` 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` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\Group') DEFAULT 'SilverStripe\\Security\\Group', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `Description` mediumtext, - `Code` varchar(255) DEFAULT NULL, - `Locked` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Sort` int(11) NOT NULL DEFAULT '0', - `HtmlEditorConfig` mediumtext, - `ParentID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`) -) ENGINE=InnoDB AUTO_INCREMENT=3 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 (1,'SilverStripe\\Security\\Group','2017-09-12 11:04:00','2017-09-12 11:04:00','Content Authors',NULL,'content-authors',0,1,NULL,0),(2,'SilverStripe\\Security\\Group','2017-09-12 11:04:00','2017-09-12 11:04:00','Administrators',NULL,'administrators',0,0,NULL,0); -/*!40000 ALTER TABLE `Group` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Group_Members` --- - -DROP TABLE IF EXISTS `Group_Members`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Group_Members` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `GroupID` int(11) NOT NULL DEFAULT '0', - `MemberID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `GroupID` (`GroupID`), - KEY `MemberID` (`MemberID`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Group_Members` --- - -LOCK TABLES `Group_Members` WRITE; -/*!40000 ALTER TABLE `Group_Members` DISABLE KEYS */; -INSERT INTO `Group_Members` VALUES (1,2,1); -/*!40000 ALTER TABLE `Group_Members` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Group_Roles` --- - -DROP TABLE IF EXISTS `Group_Roles`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Group_Roles` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `GroupID` int(11) NOT NULL DEFAULT '0', - `PermissionRoleID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `GroupID` (`GroupID`), - KEY `PermissionRoleID` (`PermissionRoleID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Group_Roles` --- - -LOCK TABLES `Group_Roles` WRITE; -/*!40000 ALTER TABLE `Group_Roles` DISABLE KEYS */; -/*!40000 ALTER TABLE `Group_Roles` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `LoginAttempt` --- - -DROP TABLE IF EXISTS `LoginAttempt`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `LoginAttempt` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\LoginAttempt') DEFAULT 'SilverStripe\\Security\\LoginAttempt', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Email` varchar(255) DEFAULT NULL, - `Status` enum('Success','Failure') DEFAULT 'Success', - `IP` varchar(255) DEFAULT NULL, - `MemberID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `MemberID` (`MemberID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `LoginAttempt` --- - -LOCK TABLES `LoginAttempt` WRITE; -/*!40000 ALTER TABLE `LoginAttempt` DISABLE KEYS */; -/*!40000 ALTER TABLE `LoginAttempt` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Member` --- - -DROP TABLE IF EXISTS `Member`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Member` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\Member') DEFAULT 'SilverStripe\\Security\\Member', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `FirstName` varchar(255) DEFAULT NULL, - `Surname` varchar(255) DEFAULT NULL, - `Email` varchar(254) DEFAULT NULL, - `TempIDHash` varchar(160) DEFAULT NULL, - `TempIDExpired` datetime DEFAULT NULL, - `Password` varchar(160) DEFAULT NULL, - `AutoLoginHash` varchar(160) DEFAULT NULL, - `AutoLoginExpired` datetime DEFAULT NULL, - `PasswordEncryption` varchar(50) DEFAULT NULL, - `Salt` varchar(50) DEFAULT NULL, - `PasswordExpiry` date DEFAULT NULL, - `LockedOutUntil` datetime DEFAULT NULL, - `Locale` varchar(6) DEFAULT NULL, - `FailedLoginCount` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `Email` (`Email`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Member` --- - -LOCK TABLES `Member` WRITE; -/*!40000 ALTER TABLE `Member` DISABLE KEYS */; -INSERT INTO `Member` VALUES (1,'SilverStripe\\Security\\Member','2017-09-14 12:57:42','2017-09-12 11:04:00','Default Admin',NULL,'root','19c29b75a1c62d6b66c58cdf6df8710e029b34d8','2017-09-17 12:57:42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'en_US',0); -/*!40000 ALTER TABLE `Member` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `MemberPassword` --- - -DROP TABLE IF EXISTS `MemberPassword`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `MemberPassword` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\MemberPassword') DEFAULT 'SilverStripe\\Security\\MemberPassword', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Password` varchar(160) DEFAULT NULL, - `Salt` varchar(50) DEFAULT NULL, - `PasswordEncryption` varchar(50) DEFAULT NULL, - `MemberID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `MemberID` (`MemberID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `MemberPassword` --- - -LOCK TABLES `MemberPassword` WRITE; -/*!40000 ALTER TABLE `MemberPassword` DISABLE KEYS */; -/*!40000 ALTER TABLE `MemberPassword` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Permission` --- - -DROP TABLE IF EXISTS `Permission`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Permission` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\Permission') DEFAULT 'SilverStripe\\Security\\Permission', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Code` varchar(255) DEFAULT NULL, - `Arg` int(11) NOT NULL DEFAULT '0', - `Type` int(11) NOT NULL DEFAULT '1', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `GroupID` (`GroupID`), - KEY `Code` (`Code`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Permission` --- - -LOCK TABLES `Permission` WRITE; -/*!40000 ALTER TABLE `Permission` DISABLE KEYS */; -INSERT INTO `Permission` VALUES (1,'SilverStripe\\Security\\Permission','2017-09-12 11:04:00','2017-09-12 11:04:00','CMS_ACCESS_CMSMain',0,1,1),(2,'SilverStripe\\Security\\Permission','2017-09-12 11:04:00','2017-09-12 11:04:00','CMS_ACCESS_AssetAdmin',0,1,1),(3,'SilverStripe\\Security\\Permission','2017-09-12 11:04:00','2017-09-12 11:04:00','CMS_ACCESS_ReportAdmin',0,1,1),(4,'SilverStripe\\Security\\Permission','2017-09-12 11:04:00','2017-09-12 11:04:00','SITETREE_REORGANISE',0,1,1),(5,'SilverStripe\\Security\\Permission','2017-09-12 11:04:00','2017-09-12 11:04:00','ADMIN',0,1,2); -/*!40000 ALTER TABLE `Permission` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `PermissionRole` --- - -DROP TABLE IF EXISTS `PermissionRole`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `PermissionRole` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\PermissionRole') DEFAULT 'SilverStripe\\Security\\PermissionRole', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `OnlyAdminCanApply` tinyint(1) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `PermissionRole` --- - -LOCK TABLES `PermissionRole` WRITE; -/*!40000 ALTER TABLE `PermissionRole` DISABLE KEYS */; -/*!40000 ALTER TABLE `PermissionRole` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `PermissionRoleCode` --- - -DROP TABLE IF EXISTS `PermissionRoleCode`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `PermissionRoleCode` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\PermissionRoleCode') DEFAULT 'SilverStripe\\Security\\PermissionRoleCode', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Code` varchar(255) DEFAULT NULL, - `RoleID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `RoleID` (`RoleID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `PermissionRoleCode` --- - -LOCK TABLES `PermissionRoleCode` WRITE; -/*!40000 ALTER TABLE `PermissionRoleCode` DISABLE KEYS */; -/*!40000 ALTER TABLE `PermissionRoleCode` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `RedirectorPage` --- - -DROP TABLE IF EXISTS `RedirectorPage`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `RedirectorPage` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RedirectionType` enum('Internal','External') DEFAULT 'Internal', - `ExternalURL` varchar(2083) DEFAULT NULL, - `LinkToID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `LinkToID` (`LinkToID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `RedirectorPage` --- - -LOCK TABLES `RedirectorPage` WRITE; -/*!40000 ALTER TABLE `RedirectorPage` DISABLE KEYS */; -/*!40000 ALTER TABLE `RedirectorPage` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `RedirectorPage_Live` --- - -DROP TABLE IF EXISTS `RedirectorPage_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `RedirectorPage_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RedirectionType` enum('Internal','External') DEFAULT 'Internal', - `ExternalURL` varchar(2083) DEFAULT NULL, - `LinkToID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `LinkToID` (`LinkToID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `RedirectorPage_Live` --- - -LOCK TABLES `RedirectorPage_Live` WRITE; -/*!40000 ALTER TABLE `RedirectorPage_Live` DISABLE KEYS */; -/*!40000 ALTER TABLE `RedirectorPage_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `RedirectorPage_Versions` --- - -DROP TABLE IF EXISTS `RedirectorPage_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `RedirectorPage_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `RedirectionType` enum('Internal','External') DEFAULT 'Internal', - `ExternalURL` varchar(2083) DEFAULT NULL, - `LinkToID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `LinkToID` (`LinkToID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `RedirectorPage_Versions` --- - -LOCK TABLES `RedirectorPage_Versions` WRITE; -/*!40000 ALTER TABLE `RedirectorPage_Versions` DISABLE KEYS */; -/*!40000 ALTER TABLE `RedirectorPage_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `RememberLoginHash` --- - -DROP TABLE IF EXISTS `RememberLoginHash`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `RememberLoginHash` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Security\\RememberLoginHash') DEFAULT 'SilverStripe\\Security\\RememberLoginHash', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `DeviceID` varchar(40) DEFAULT NULL, - `Hash` varchar(160) DEFAULT NULL, - `ExpiryDate` datetime DEFAULT NULL, - `MemberID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `MemberID` (`MemberID`), - KEY `DeviceID` (`DeviceID`), - KEY `Hash` (`Hash`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `RememberLoginHash` --- - -LOCK TABLES `RememberLoginHash` WRITE; -/*!40000 ALTER TABLE `RememberLoginHash` DISABLE KEYS */; -/*!40000 ALTER TABLE `RememberLoginHash` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_ArticleCategory` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_ArticleCategory`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_ArticleCategory` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Lessons\\ArticleCategory') DEFAULT 'SilverStripe\\Lessons\\ArticleCategory', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `ArticleHolderID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ArticleHolderID` (`ArticleHolderID`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_ArticleCategory` --- - -LOCK TABLES `SilverStripe_Lessons_ArticleCategory` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticleCategory` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_ArticleCategory` VALUES (1,'SilverStripe\\Lessons\\ArticleCategory','2017-09-14 16:13:52','2017-09-14 16:13:52','Properties',9),(2,'SilverStripe\\Lessons\\ArticleCategory','2017-09-14 16:14:01','2017-09-14 16:14:01','Prices',9),(3,'SilverStripe\\Lessons\\ArticleCategory','2017-09-14 16:14:08','2017-09-14 16:14:08','Best deals',9); -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticleCategory` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_ArticleComment` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_ArticleComment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_ArticleComment` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Lessons\\ArticleComment') DEFAULT 'SilverStripe\\Lessons\\ArticleComment', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Name` varchar(255) DEFAULT NULL, - `Email` varchar(255) DEFAULT NULL, - `Comment` mediumtext, - `ArticlePageID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ArticlePageID` (`ArticlePageID`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_ArticleComment` --- - -LOCK TABLES `SilverStripe_Lessons_ArticleComment` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticleComment` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_ArticleComment` VALUES (1,'SilverStripe\\Lessons\\ArticleComment','2017-09-14 16:52:11','2017-09-14 16:52:11','Test Commenter','tester@example.com','This is a test comment.',10); -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticleComment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_ArticlePage` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_ArticlePage`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_ArticlePage` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `Date` date DEFAULT NULL, - `Teaser` mediumtext, - `Author` varchar(255) DEFAULT NULL, - `PhotoID` int(11) NOT NULL DEFAULT '0', - `BrochureID` int(11) NOT NULL DEFAULT '0', - `RegionID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `PhotoID` (`PhotoID`), - KEY `BrochureID` (`BrochureID`), - KEY `RegionID` (`RegionID`) -) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_ArticlePage` --- - -LOCK TABLES `SilverStripe_Lessons_ArticlePage` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_ArticlePage` VALUES (12,'2017-03-01','Cupiditate aut eaque.','Rashawn Pfannerstill',5,6,3),(13,'2017-07-27','Ut quia debitis.','Laron Franecki',5,6,2),(14,'2017-08-25','Aspernatur ut.','Alford McGlynn II',5,6,1),(15,'2017-04-06','Soluta qui dolores molestiae.','Camron Farrell',5,4,3),(16,'2017-04-15','Magni incidunt sit aut.','Avery Paucek Sr.',3,6,1),(17,'2017-06-17','Et recusandae sit.','Kamryn Kemmer MD',3,6,4),(18,'2017-04-09','Mollitia reprehenderit.','Prof. Rosemarie Halvorson PhD',5,4,1),(19,'2017-01-28','Adipisci cumque voluptas minus.','Louvenia Lehner',3,4,2),(20,'2016-12-20','Mollitia sed molestiae explicabo quo.','Delpha Okuneva',5,4,4),(21,'2017-08-28','Suscipit iusto.','Joy Lueilwitz',5,6,1),(22,'2016-10-26','Quis illo expedita nihil.','Retha Batz',3,4,2),(23,'2017-08-09','Ad adipisci fugit.','Zoey Toy',5,6,4),(24,'2017-01-02','Beatae perferendis quisquam est.','Prof. Presley Collier',5,6,1),(25,'2017-06-01','Doloribus ratione non.','Conner Mueller',3,6,3),(26,'2017-06-13','Eligendi adipisci neque dicta est.','Elnora Denesik',3,6,4),(27,'2016-10-10','Sit labore similique non.','Mathias Marvin',5,4,3),(28,'2017-06-03','Ipsam possimus qui.','Piper Sipes Jr.',5,4,3),(29,'2016-12-20','Quidem amet totam earum.','Gaylord Balistreri',3,4,1),(30,'2017-02-16','Ut numquam ipsum.','Maximillia Kozey',3,6,1),(31,'2017-04-10','Qui hic.','Cindy Kovacek',5,6,4),(32,'2016-12-06','Distinctio ut omnis.','Neil Trantow',5,4,4),(33,'2017-07-26','Placeat consequuntur.','Percival Runolfsdottir I',3,4,4),(34,'2017-05-21','Aut adipisci.','Maryjane Ortiz',5,6,4),(35,'2017-09-19','Maxime est cum.','Lori Harris',3,4,1),(36,'2016-11-05','Ipsam aut corrupti.','Guiseppe Kuphal',5,6,3),(37,'2017-01-08','Qui ad ipsa.','Leonard Casper DVM',5,4,3),(38,'2017-01-04','Voluptas vitae.','Mr. Carroll D\'Amore MD',5,6,3),(39,'2017-05-06','Quis nobis reiciendis.','Prof. Rosella Rowe DVM',3,6,2),(40,'2017-08-31','Similique ut at quis.','Dr. Corene Ryan PhD',5,4,4),(41,'2016-10-04','Iste enim iste repellendus.','Cristopher Yost',3,4,2),(42,'2017-05-08','Culpa rerum quia quis.','Francisco Balistreri',5,6,4),(43,'2016-12-27','Distinctio maiores.','Angus Dare',3,4,4),(44,'2017-08-16','Earum expedita omnis qui.','Dedrick Wisoky IV',5,4,2),(45,'2017-07-05','Ut et sit aut quia occaecati.','Leopoldo Monahan',3,6,3),(46,'2016-12-12','Nemo voluptas expedita officia quas quo.','Prof. Theodore Windler',3,4,3),(47,'2017-02-01','Non perspiciatis est voluptate.','Willa Monahan',3,6,4),(48,'2016-12-26','Ea maiores.','Mr. Rigoberto Armstrong',5,6,1),(49,'2017-05-30','Nulla earum est.','Marvin Nienow',5,6,4),(50,'2017-07-09','Laboriosam dolor molestias modi hic.','Khalid Streich',5,6,1),(51,'2017-07-03','Ut neque aliquid est assumenda.','Chelsie Ritchie I',3,4,4),(52,'2016-11-29','Debitis nulla vitae molestiae.','Miss Ollie Marks',3,4,1),(53,'2017-09-08','Error repudiandae doloribus.','Miss Kaci Parker III',3,4,3),(54,'2017-07-30','Iste sit atque.','Dr. Ora Bartoletti',5,6,4),(55,'2017-07-04','Natus nulla placeat ut eum.','Marquise Torp',5,4,3),(56,'2017-08-04','Reprehenderit accusantium harum consequatur.','Ilene Howe',3,4,2),(57,'2016-11-29','Consequatur ut architecto provident deserunt.','Alfred Pouros',5,4,3),(58,'2017-01-11','Voluptatibus beatae consequatur occaecati illum quia.','Mark Block IV',5,6,2),(59,'2016-09-30','Tempore voluptas temporibus.','Mitchel Upton',3,6,3),(60,'2016-12-18','Assumenda autem assumenda exercitationem nemo.','Dr. Bettie Reilly',5,4,1),(61,'2017-05-19','Ratione vel tempore.','Aaliyah Wunsch',5,4,2),(62,'2017-06-27','Qui voluptatibus illum.','Prof. Tyree Barton',5,6,2),(63,'2017-02-07','Ea reiciendis et autem quo dolorem.','Demario Jacobs Jr.',3,4,1),(64,'2017-02-07','Officiis laboriosam est.','Dion Waelchi',5,6,3),(65,'2017-04-06','Quis est quod.','Kiana Cronin DDS',5,4,1),(66,'2016-10-03','Vel totam et sed fugiat.','Mariano Macejkovic',5,6,4),(67,'2017-06-07','Ad fuga dolorem est.','Tyree Zieme',3,6,3),(68,'2017-09-01','Non illum consequuntur sed impedit ipsa.','Mr. Corbin Murazik',3,6,2),(69,'2017-02-13','Minus voluptatum ut laboriosam.','Amiya Feest DDS',3,4,4),(70,'2017-03-19','Eaque sed.','Prof. Orlo Nikolaus',5,6,2),(71,'2017-08-27','Architecto porro voluptatum natus.','Carmen Greenholt',3,4,2),(72,'2017-08-23','Et tempore autem.','Myrl Barrows Jr.',3,6,2),(73,'2017-03-13','At est est occaecati.','Mrs. Allene Kovacek',5,6,4),(74,'2017-06-24','Hic et.','Bartholome Prosacco',3,6,4),(75,'2016-10-10','Aut non qui.','Maximus Jacobson',5,6,3),(76,'2017-07-23','Nam dolore consequatur numquam.','Dr. Miller Huels I',5,4,3),(77,'2017-02-20','Eaque voluptas atque occaecati.','Rosanna Reynolds',3,4,4),(78,'2017-04-15','Fuga dolorem.','Audrey Moen DDS',5,6,4),(79,'2016-10-03','Est distinctio aut error.','Mr. Alfonzo Leannon DVM',5,6,4),(80,'2016-10-21','Aspernatur quia ut id voluptas et.','Marlee Dibbert',5,4,1),(81,'2017-08-28','Quod expedita in recusandae.','Manuela Welch',5,4,2),(82,'2016-10-25','Dolores ea repellendus.','Johnnie Smith III',3,4,1),(83,'2016-10-22','Alias ut provident sit tempore.','Lina Boehm',3,4,3),(84,'2017-06-25','Nemo officiis omnis rerum.','Aglae Kihn',3,6,4),(85,'2017-06-27','Est cumque nihil sit fugit est.','Louisa Botsford',3,4,1),(86,'2017-08-09','Dolores aliquid doloremque.','Maude Stroman DVM',5,6,2),(87,'2017-02-16','Dolores et optio in.','Prof. Harry Kessler',3,4,1),(88,'2016-11-04','Ex dolores qui debitis rem.','Tillman Yost PhD',5,4,2),(89,'2017-08-09','Provident dolorem at.','Elena Breitenberg',3,6,1),(90,'2017-01-13','Incidunt sapiente.','Shawna Hahn',5,4,4),(91,'2017-02-24','Aut aliquid non.','Parker Schaden DDS',3,4,3),(92,'2017-03-10','Debitis et eligendi a.','Marlen Swift',3,6,1),(93,'2016-12-21','Dolorem commodi.','Michele Schneider III',3,4,2),(94,'2017-06-11','Nisi id.','Allene Torphy',5,4,4),(95,'2017-02-16','Molestiae possimus occaecati aut.','Anibal Romaguera',5,6,3),(96,'2017-06-03','Repellendus dolores.','Dr. Kristoffer Kunze',5,6,3),(97,'2017-07-10','Alias eos.','Felicity Mohr',5,4,2),(98,'2016-11-14','Atque omnis et.','Adolfo Doyle',5,4,2),(99,'2017-01-30','Quia dolorem ullam.','Mattie Mohr',5,6,2),(100,'2016-10-09','Dolor molestiae quia.','Miss Mariam Denesik I',3,6,4),(101,'2017-05-29','Hic autem voluptate doloribus qui vero.','Mr. Jordon Schiller',3,6,2),(102,'2017-05-26','Sequi molestiae.','Carlee Kessler',3,4,4),(103,'2017-01-06','Quidem enim pariatur neque.','Gabe Tremblay IV',5,4,1),(104,'2017-05-13','Dolores eos nam ea.','Elizabeth Koelpin',3,4,1),(105,'2016-11-22','Quasi quia.','Evelyn Kerluke',3,4,4),(106,'2016-10-04','Eum minus a est.','Major Kris',3,6,3),(107,'2017-03-21','Corporis voluptatum illum incidunt non similique.','Dr. Sylvan Prosacco III',3,4,4),(108,'2017-01-19','Illum accusantium.','Ofelia Smitham',5,6,4),(109,'2017-07-08','Ut minus voluptate modi.','Forrest Murphy',5,6,3); -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_ArticlePage_Categories` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_ArticlePage_Categories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_ArticlePage_Categories` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SilverStripe_Lessons_ArticlePageID` int(11) NOT NULL DEFAULT '0', - `SilverStripe_Lessons_ArticleCategoryID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `SilverStripe_Lessons_ArticlePageID` (`SilverStripe_Lessons_ArticlePageID`), - KEY `SilverStripe_Lessons_ArticleCategoryID` (`SilverStripe_Lessons_ArticleCategoryID`) -) ENGINE=InnoDB AUTO_INCREMENT=185 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_ArticlePage_Categories` --- - -LOCK TABLES `SilverStripe_Lessons_ArticlePage_Categories` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage_Categories` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_ArticlePage_Categories` VALUES (1,11,2),(2,11,3),(3,10,1),(4,12,2),(5,13,3),(6,13,1),(7,13,2),(8,14,3),(9,14,1),(10,14,2),(11,15,2),(12,16,1),(13,17,1),(14,17,3),(15,17,2),(16,18,3),(17,19,2),(18,20,1),(19,21,2),(20,21,3),(21,21,1),(22,22,2),(23,23,2),(24,24,3),(25,24,1),(26,25,1),(27,25,2),(28,25,3),(29,26,2),(30,26,3),(31,26,1),(32,27,3),(33,27,2),(34,28,2),(35,28,3),(36,28,1),(37,29,1),(38,30,1),(39,30,2),(40,30,3),(41,31,3),(42,31,2),(43,31,1),(44,32,1),(45,32,3),(46,33,2),(47,33,3),(48,33,1),(49,34,2),(50,35,3),(51,35,2),(52,36,3),(53,37,2),(54,38,1),(55,39,2),(56,40,2),(57,40,1),(58,41,2),(59,41,1),(60,42,1),(61,42,2),(62,43,3),(63,43,1),(64,43,2),(65,44,3),(66,45,2),(67,46,2),(68,47,2),(69,47,3),(70,48,3),(71,48,1),(72,48,2),(73,49,3),(74,50,2),(75,51,1),(76,51,2),(77,52,3),(78,53,2),(79,53,1),(80,54,3),(81,54,2),(82,55,1),(83,56,2),(84,57,3),(85,57,2),(86,57,1),(87,58,3),(88,59,3),(89,59,1),(90,60,2),(91,61,3),(92,62,1),(93,62,3),(94,62,2),(95,63,3),(96,64,1),(97,64,2),(98,64,3),(99,65,2),(100,65,1),(101,66,1),(102,66,3),(103,67,3),(104,68,2),(105,69,3),(106,69,2),(107,70,1),(108,71,1),(109,72,1),(110,72,2),(111,72,3),(112,73,3),(113,73,1),(114,73,2),(115,74,3),(116,74,1),(117,74,2),(118,75,3),(119,76,1),(120,76,2),(121,76,3),(122,77,2),(123,77,1),(124,78,3),(125,79,1),(126,80,2),(127,80,3),(128,81,1),(129,82,3),(130,82,1),(131,83,3),(132,84,3),(133,84,1),(134,85,3),(135,85,1),(136,85,2),(137,86,2),(138,86,1),(139,86,3),(140,87,3),(141,88,3),(142,89,2),(143,89,3),(144,89,1),(145,90,1),(146,90,2),(147,91,2),(148,91,1),(149,92,2),(150,92,3),(151,92,1),(152,93,2),(153,94,3),(154,94,2),(155,94,1),(156,95,1),(157,95,2),(158,96,2),(159,96,1),(160,96,3),(161,97,1),(162,98,2),(163,98,1),(164,98,3),(165,99,3),(166,100,2),(167,101,3),(168,101,2),(169,101,1),(170,102,1),(171,102,2),(172,102,3),(173,103,2),(174,103,1),(175,103,3),(176,104,3),(177,105,2),(178,105,3),(179,105,1),(180,106,2),(181,107,2),(182,108,1),(183,108,2),(184,109,1); -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage_Categories` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_ArticlePage_Live` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_ArticlePage_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_ArticlePage_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `Date` date DEFAULT NULL, - `Teaser` mediumtext, - `Author` varchar(255) DEFAULT NULL, - `PhotoID` int(11) NOT NULL DEFAULT '0', - `BrochureID` int(11) NOT NULL DEFAULT '0', - `RegionID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `PhotoID` (`PhotoID`), - KEY `BrochureID` (`BrochureID`), - KEY `RegionID` (`RegionID`) -) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_ArticlePage_Live` --- - -LOCK TABLES `SilverStripe_Lessons_ArticlePage_Live` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage_Live` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_ArticlePage_Live` VALUES (12,'2017-03-01','Cupiditate aut eaque.','Rashawn Pfannerstill',5,6,3),(13,'2017-07-27','Ut quia debitis.','Laron Franecki',5,6,2),(14,'2017-08-25','Aspernatur ut.','Alford McGlynn II',5,6,1),(15,'2017-04-06','Soluta qui dolores molestiae.','Camron Farrell',5,4,3),(16,'2017-04-15','Magni incidunt sit aut.','Avery Paucek Sr.',3,6,1),(17,'2017-06-17','Et recusandae sit.','Kamryn Kemmer MD',3,6,4),(18,'2017-04-09','Mollitia reprehenderit.','Prof. Rosemarie Halvorson PhD',5,4,1),(19,'2017-01-28','Adipisci cumque voluptas minus.','Louvenia Lehner',3,4,2),(20,'2016-12-20','Mollitia sed molestiae explicabo quo.','Delpha Okuneva',5,4,4),(21,'2017-08-28','Suscipit iusto.','Joy Lueilwitz',5,6,1),(22,'2016-10-26','Quis illo expedita nihil.','Retha Batz',3,4,2),(23,'2017-08-09','Ad adipisci fugit.','Zoey Toy',5,6,4),(24,'2017-01-02','Beatae perferendis quisquam est.','Prof. Presley Collier',5,6,1),(25,'2017-06-01','Doloribus ratione non.','Conner Mueller',3,6,3),(26,'2017-06-13','Eligendi adipisci neque dicta est.','Elnora Denesik',3,6,4),(27,'2016-10-10','Sit labore similique non.','Mathias Marvin',5,4,3),(28,'2017-06-03','Ipsam possimus qui.','Piper Sipes Jr.',5,4,3),(29,'2016-12-20','Quidem amet totam earum.','Gaylord Balistreri',3,4,1),(30,'2017-02-16','Ut numquam ipsum.','Maximillia Kozey',3,6,1),(31,'2017-04-10','Qui hic.','Cindy Kovacek',5,6,4),(32,'2016-12-06','Distinctio ut omnis.','Neil Trantow',5,4,4),(33,'2017-07-26','Placeat consequuntur.','Percival Runolfsdottir I',3,4,4),(34,'2017-05-21','Aut adipisci.','Maryjane Ortiz',5,6,4),(35,'2017-09-19','Maxime est cum.','Lori Harris',3,4,1),(36,'2016-11-05','Ipsam aut corrupti.','Guiseppe Kuphal',5,6,3),(37,'2017-01-08','Qui ad ipsa.','Leonard Casper DVM',5,4,3),(38,'2017-01-04','Voluptas vitae.','Mr. Carroll D\'Amore MD',5,6,3),(39,'2017-05-06','Quis nobis reiciendis.','Prof. Rosella Rowe DVM',3,6,2),(40,'2017-08-31','Similique ut at quis.','Dr. Corene Ryan PhD',5,4,4),(41,'2016-10-04','Iste enim iste repellendus.','Cristopher Yost',3,4,2),(42,'2017-05-08','Culpa rerum quia quis.','Francisco Balistreri',5,6,4),(43,'2016-12-27','Distinctio maiores.','Angus Dare',3,4,4),(44,'2017-08-16','Earum expedita omnis qui.','Dedrick Wisoky IV',5,4,2),(45,'2017-07-05','Ut et sit aut quia occaecati.','Leopoldo Monahan',3,6,3),(46,'2016-12-12','Nemo voluptas expedita officia quas quo.','Prof. Theodore Windler',3,4,3),(47,'2017-02-01','Non perspiciatis est voluptate.','Willa Monahan',3,6,4),(48,'2016-12-26','Ea maiores.','Mr. Rigoberto Armstrong',5,6,1),(49,'2017-05-30','Nulla earum est.','Marvin Nienow',5,6,4),(50,'2017-07-09','Laboriosam dolor molestias modi hic.','Khalid Streich',5,6,1),(51,'2017-07-03','Ut neque aliquid est assumenda.','Chelsie Ritchie I',3,4,4),(52,'2016-11-29','Debitis nulla vitae molestiae.','Miss Ollie Marks',3,4,1),(53,'2017-09-08','Error repudiandae doloribus.','Miss Kaci Parker III',3,4,3),(54,'2017-07-30','Iste sit atque.','Dr. Ora Bartoletti',5,6,4),(55,'2017-07-04','Natus nulla placeat ut eum.','Marquise Torp',5,4,3),(56,'2017-08-04','Reprehenderit accusantium harum consequatur.','Ilene Howe',3,4,2),(57,'2016-11-29','Consequatur ut architecto provident deserunt.','Alfred Pouros',5,4,3),(58,'2017-01-11','Voluptatibus beatae consequatur occaecati illum quia.','Mark Block IV',5,6,2),(59,'2016-09-30','Tempore voluptas temporibus.','Mitchel Upton',3,6,3),(60,'2016-12-18','Assumenda autem assumenda exercitationem nemo.','Dr. Bettie Reilly',5,4,1),(61,'2017-05-19','Ratione vel tempore.','Aaliyah Wunsch',5,4,2),(62,'2017-06-27','Qui voluptatibus illum.','Prof. Tyree Barton',5,6,2),(63,'2017-02-07','Ea reiciendis et autem quo dolorem.','Demario Jacobs Jr.',3,4,1),(64,'2017-02-07','Officiis laboriosam est.','Dion Waelchi',5,6,3),(65,'2017-04-06','Quis est quod.','Kiana Cronin DDS',5,4,1),(66,'2016-10-03','Vel totam et sed fugiat.','Mariano Macejkovic',5,6,4),(67,'2017-06-07','Ad fuga dolorem est.','Tyree Zieme',3,6,3),(68,'2017-09-01','Non illum consequuntur sed impedit ipsa.','Mr. Corbin Murazik',3,6,2),(69,'2017-02-13','Minus voluptatum ut laboriosam.','Amiya Feest DDS',3,4,4),(70,'2017-03-19','Eaque sed.','Prof. Orlo Nikolaus',5,6,2),(71,'2017-08-27','Architecto porro voluptatum natus.','Carmen Greenholt',3,4,2),(72,'2017-08-23','Et tempore autem.','Myrl Barrows Jr.',3,6,2),(73,'2017-03-13','At est est occaecati.','Mrs. Allene Kovacek',5,6,4),(74,'2017-06-24','Hic et.','Bartholome Prosacco',3,6,4),(75,'2016-10-10','Aut non qui.','Maximus Jacobson',5,6,3),(76,'2017-07-23','Nam dolore consequatur numquam.','Dr. Miller Huels I',5,4,3),(77,'2017-02-20','Eaque voluptas atque occaecati.','Rosanna Reynolds',3,4,4),(78,'2017-04-15','Fuga dolorem.','Audrey Moen DDS',5,6,4),(79,'2016-10-03','Est distinctio aut error.','Mr. Alfonzo Leannon DVM',5,6,4),(80,'2016-10-21','Aspernatur quia ut id voluptas et.','Marlee Dibbert',5,4,1),(81,'2017-08-28','Quod expedita in recusandae.','Manuela Welch',5,4,2),(82,'2016-10-25','Dolores ea repellendus.','Johnnie Smith III',3,4,1),(83,'2016-10-22','Alias ut provident sit tempore.','Lina Boehm',3,4,3),(84,'2017-06-25','Nemo officiis omnis rerum.','Aglae Kihn',3,6,4),(85,'2017-06-27','Est cumque nihil sit fugit est.','Louisa Botsford',3,4,1),(86,'2017-08-09','Dolores aliquid doloremque.','Maude Stroman DVM',5,6,2),(87,'2017-02-16','Dolores et optio in.','Prof. Harry Kessler',3,4,1),(88,'2016-11-04','Ex dolores qui debitis rem.','Tillman Yost PhD',5,4,2),(89,'2017-08-09','Provident dolorem at.','Elena Breitenberg',3,6,1),(90,'2017-01-13','Incidunt sapiente.','Shawna Hahn',5,4,4),(91,'2017-02-24','Aut aliquid non.','Parker Schaden DDS',3,4,3),(92,'2017-03-10','Debitis et eligendi a.','Marlen Swift',3,6,1),(93,'2016-12-21','Dolorem commodi.','Michele Schneider III',3,4,2),(94,'2017-06-11','Nisi id.','Allene Torphy',5,4,4),(95,'2017-02-16','Molestiae possimus occaecati aut.','Anibal Romaguera',5,6,3),(96,'2017-06-03','Repellendus dolores.','Dr. Kristoffer Kunze',5,6,3),(97,'2017-07-10','Alias eos.','Felicity Mohr',5,4,2),(98,'2016-11-14','Atque omnis et.','Adolfo Doyle',5,4,2),(99,'2017-01-30','Quia dolorem ullam.','Mattie Mohr',5,6,2),(100,'2016-10-09','Dolor molestiae quia.','Miss Mariam Denesik I',3,6,4),(101,'2017-05-29','Hic autem voluptate doloribus qui vero.','Mr. Jordon Schiller',3,6,2),(102,'2017-05-26','Sequi molestiae.','Carlee Kessler',3,4,4),(103,'2017-01-06','Quidem enim pariatur neque.','Gabe Tremblay IV',5,4,1),(104,'2017-05-13','Dolores eos nam ea.','Elizabeth Koelpin',3,4,1),(105,'2016-11-22','Quasi quia.','Evelyn Kerluke',3,4,4),(106,'2016-10-04','Eum minus a est.','Major Kris',3,6,3),(107,'2017-03-21','Corporis voluptatum illum incidunt non similique.','Dr. Sylvan Prosacco III',3,4,4),(108,'2017-01-19','Illum accusantium.','Ofelia Smitham',5,6,4),(109,'2017-07-08','Ut minus voluptate modi.','Forrest Murphy',5,6,3); -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_ArticlePage_Versions` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_ArticlePage_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_ArticlePage_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `Date` date DEFAULT NULL, - `Teaser` mediumtext, - `Author` varchar(255) DEFAULT NULL, - `PhotoID` int(11) NOT NULL DEFAULT '0', - `BrochureID` int(11) NOT NULL DEFAULT '0', - `RegionID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `PhotoID` (`PhotoID`), - KEY `BrochureID` (`BrochureID`), - KEY `RegionID` (`RegionID`) -) ENGINE=InnoDB AUTO_INCREMENT=200 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_ArticlePage_Versions` --- - -LOCK TABLES `SilverStripe_Lessons_ArticlePage_Versions` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage_Versions` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_ArticlePage_Versions` VALUES (1,10,3,'2017-06-14','Summary of the first article.','Uncle Cheese',0,0,0),(2,10,4,'2017-06-14','Summary of the first article.','Uncle Cheese',3,4,0),(3,11,3,NULL,NULL,NULL,5,6,0),(4,12,1,'2017-03-01','Cupiditate aut eaque.','Rashawn Pfannerstill',5,6,3),(5,13,1,'2017-07-27','Ut quia debitis.','Laron Franecki',5,6,2),(6,14,1,'2017-08-25','Aspernatur ut.','Alford McGlynn II',5,6,1),(7,15,1,'2017-04-06','Soluta qui dolores molestiae.','Camron Farrell',5,4,3),(8,16,1,'2017-04-15','Magni incidunt sit aut.','Avery Paucek Sr.',3,6,1),(9,17,1,'2017-06-17','Et recusandae sit.','Kamryn Kemmer MD',3,6,4),(10,18,1,'2017-04-09','Mollitia reprehenderit.','Prof. Rosemarie Halvorson PhD',5,4,1),(11,19,1,'2017-01-28','Adipisci cumque voluptas minus.','Louvenia Lehner',3,4,2),(12,20,1,'2016-12-20','Mollitia sed molestiae explicabo quo.','Delpha Okuneva',5,4,4),(13,21,1,'2017-08-28','Suscipit iusto.','Joy Lueilwitz',5,6,1),(14,22,1,'2016-10-26','Quis illo expedita nihil.','Retha Batz',3,4,2),(15,23,1,'2017-08-09','Ad adipisci fugit.','Zoey Toy',5,6,4),(16,24,1,'2017-01-02','Beatae perferendis quisquam est.','Prof. Presley Collier',5,6,1),(17,25,1,'2017-06-01','Doloribus ratione non.','Conner Mueller',3,6,3),(18,26,1,'2017-06-13','Eligendi adipisci neque dicta est.','Elnora Denesik',3,6,4),(19,27,1,'2016-10-10','Sit labore similique non.','Mathias Marvin',5,4,3),(20,28,1,'2017-06-03','Ipsam possimus qui.','Piper Sipes Jr.',5,4,3),(21,29,1,'2016-12-20','Quidem amet totam earum.','Gaylord Balistreri',3,4,1),(22,30,1,'2017-02-16','Ut numquam ipsum.','Maximillia Kozey',3,6,1),(23,31,1,'2017-04-10','Qui hic.','Cindy Kovacek',5,6,4),(24,32,1,'2016-12-06','Distinctio ut omnis.','Neil Trantow',5,4,4),(25,33,1,'2017-07-26','Placeat consequuntur.','Percival Runolfsdottir I',3,4,4),(26,34,1,'2017-05-21','Aut adipisci.','Maryjane Ortiz',5,6,4),(27,35,1,'2017-09-19','Maxime est cum.','Lori Harris',3,4,1),(28,36,1,'2016-11-05','Ipsam aut corrupti.','Guiseppe Kuphal',5,6,3),(29,37,1,'2017-01-08','Qui ad ipsa.','Leonard Casper DVM',5,4,3),(30,38,1,'2017-01-04','Voluptas vitae.','Mr. Carroll D\'Amore MD',5,6,3),(31,39,1,'2017-05-06','Quis nobis reiciendis.','Prof. Rosella Rowe DVM',3,6,2),(32,40,1,'2017-08-31','Similique ut at quis.','Dr. Corene Ryan PhD',5,4,4),(33,41,1,'2016-10-04','Iste enim iste repellendus.','Cristopher Yost',3,4,2),(34,42,1,'2017-05-08','Culpa rerum quia quis.','Francisco Balistreri',5,6,4),(35,43,1,'2016-12-27','Distinctio maiores.','Angus Dare',3,4,4),(36,44,1,'2017-08-16','Earum expedita omnis qui.','Dedrick Wisoky IV',5,4,2),(37,45,1,'2017-07-05','Ut et sit aut quia occaecati.','Leopoldo Monahan',3,6,3),(38,46,1,'2016-12-12','Nemo voluptas expedita officia quas quo.','Prof. Theodore Windler',3,4,3),(39,47,1,'2017-02-01','Non perspiciatis est voluptate.','Willa Monahan',3,6,4),(40,48,1,'2016-12-26','Ea maiores.','Mr. Rigoberto Armstrong',5,6,1),(41,49,1,'2017-05-30','Nulla earum est.','Marvin Nienow',5,6,4),(42,50,1,'2017-07-09','Laboriosam dolor molestias modi hic.','Khalid Streich',5,6,1),(43,51,1,'2017-07-03','Ut neque aliquid est assumenda.','Chelsie Ritchie I',3,4,4),(44,52,1,'2016-11-29','Debitis nulla vitae molestiae.','Miss Ollie Marks',3,4,1),(45,53,1,'2017-09-08','Error repudiandae doloribus.','Miss Kaci Parker III',3,4,3),(46,54,1,'2017-07-30','Iste sit atque.','Dr. Ora Bartoletti',5,6,4),(47,55,1,'2017-07-04','Natus nulla placeat ut eum.','Marquise Torp',5,4,3),(48,56,1,'2017-08-04','Reprehenderit accusantium harum consequatur.','Ilene Howe',3,4,2),(49,57,1,'2016-11-29','Consequatur ut architecto provident deserunt.','Alfred Pouros',5,4,3),(50,58,1,'2017-01-11','Voluptatibus beatae consequatur occaecati illum quia.','Mark Block IV',5,6,2),(51,59,1,'2016-09-30','Tempore voluptas temporibus.','Mitchel Upton',3,6,3),(52,60,1,'2016-12-18','Assumenda autem assumenda exercitationem nemo.','Dr. Bettie Reilly',5,4,1),(53,61,1,'2017-05-19','Ratione vel tempore.','Aaliyah Wunsch',5,4,2),(54,62,1,'2017-06-27','Qui voluptatibus illum.','Prof. Tyree Barton',5,6,2),(55,63,1,'2017-02-07','Ea reiciendis et autem quo dolorem.','Demario Jacobs Jr.',3,4,1),(56,64,1,'2017-02-07','Officiis laboriosam est.','Dion Waelchi',5,6,3),(57,65,1,'2017-04-06','Quis est quod.','Kiana Cronin DDS',5,4,1),(58,66,1,'2016-10-03','Vel totam et sed fugiat.','Mariano Macejkovic',5,6,4),(59,67,1,'2017-06-07','Ad fuga dolorem est.','Tyree Zieme',3,6,3),(60,68,1,'2017-09-01','Non illum consequuntur sed impedit ipsa.','Mr. Corbin Murazik',3,6,2),(61,69,1,'2017-02-13','Minus voluptatum ut laboriosam.','Amiya Feest DDS',3,4,4),(62,70,1,'2017-03-19','Eaque sed.','Prof. Orlo Nikolaus',5,6,2),(63,71,1,'2017-08-27','Architecto porro voluptatum natus.','Carmen Greenholt',3,4,2),(64,72,1,'2017-08-23','Et tempore autem.','Myrl Barrows Jr.',3,6,2),(65,73,1,'2017-03-13','At est est occaecati.','Mrs. Allene Kovacek',5,6,4),(66,74,1,'2017-06-24','Hic et.','Bartholome Prosacco',3,6,4),(67,75,1,'2016-10-10','Aut non qui.','Maximus Jacobson',5,6,3),(68,76,1,'2017-07-23','Nam dolore consequatur numquam.','Dr. Miller Huels I',5,4,3),(69,77,1,'2017-02-20','Eaque voluptas atque occaecati.','Rosanna Reynolds',3,4,4),(70,78,1,'2017-04-15','Fuga dolorem.','Audrey Moen DDS',5,6,4),(71,79,1,'2016-10-03','Est distinctio aut error.','Mr. Alfonzo Leannon DVM',5,6,4),(72,80,1,'2016-10-21','Aspernatur quia ut id voluptas et.','Marlee Dibbert',5,4,1),(73,81,1,'2017-08-28','Quod expedita in recusandae.','Manuela Welch',5,4,2),(74,82,1,'2016-10-25','Dolores ea repellendus.','Johnnie Smith III',3,4,1),(75,83,1,'2016-10-22','Alias ut provident sit tempore.','Lina Boehm',3,4,3),(76,84,1,'2017-06-25','Nemo officiis omnis rerum.','Aglae Kihn',3,6,4),(77,85,1,'2017-06-27','Est cumque nihil sit fugit est.','Louisa Botsford',3,4,1),(78,86,1,'2017-08-09','Dolores aliquid doloremque.','Maude Stroman DVM',5,6,2),(79,87,1,'2017-02-16','Dolores et optio in.','Prof. Harry Kessler',3,4,1),(80,88,1,'2016-11-04','Ex dolores qui debitis rem.','Tillman Yost PhD',5,4,2),(81,89,1,'2017-08-09','Provident dolorem at.','Elena Breitenberg',3,6,1),(82,90,1,'2017-01-13','Incidunt sapiente.','Shawna Hahn',5,4,4),(83,91,1,'2017-02-24','Aut aliquid non.','Parker Schaden DDS',3,4,3),(84,92,1,'2017-03-10','Debitis et eligendi a.','Marlen Swift',3,6,1),(85,93,1,'2016-12-21','Dolorem commodi.','Michele Schneider III',3,4,2),(86,94,1,'2017-06-11','Nisi id.','Allene Torphy',5,4,4),(87,95,1,'2017-02-16','Molestiae possimus occaecati aut.','Anibal Romaguera',5,6,3),(88,96,1,'2017-06-03','Repellendus dolores.','Dr. Kristoffer Kunze',5,6,3),(89,97,1,'2017-07-10','Alias eos.','Felicity Mohr',5,4,2),(90,98,1,'2016-11-14','Atque omnis et.','Adolfo Doyle',5,4,2),(91,99,1,'2017-01-30','Quia dolorem ullam.','Mattie Mohr',5,6,2),(92,100,1,'2016-10-09','Dolor molestiae quia.','Miss Mariam Denesik I',3,6,4),(93,101,1,'2017-05-29','Hic autem voluptate doloribus qui vero.','Mr. Jordon Schiller',3,6,2),(94,102,1,'2017-05-26','Sequi molestiae.','Carlee Kessler',3,4,4),(95,103,1,'2017-01-06','Quidem enim pariatur neque.','Gabe Tremblay IV',5,4,1),(96,104,1,'2017-05-13','Dolores eos nam ea.','Elizabeth Koelpin',3,4,1),(97,105,1,'2016-11-22','Quasi quia.','Evelyn Kerluke',3,4,4),(98,106,1,'2016-10-04','Eum minus a est.','Major Kris',3,6,3),(99,107,1,'2017-03-21','Corporis voluptatum illum incidunt non similique.','Dr. Sylvan Prosacco III',3,4,4),(100,108,1,'2017-01-19','Illum accusantium.','Ofelia Smitham',5,6,4),(101,109,1,'2017-07-08','Ut minus voluptate modi.','Forrest Murphy',5,6,3),(102,12,2,'2017-03-01','Cupiditate aut eaque.','Rashawn Pfannerstill',5,6,3),(103,13,2,'2017-07-27','Ut quia debitis.','Laron Franecki',5,6,2),(104,14,2,'2017-08-25','Aspernatur ut.','Alford McGlynn II',5,6,1),(105,15,2,'2017-04-06','Soluta qui dolores molestiae.','Camron Farrell',5,4,3),(106,16,2,'2017-04-15','Magni incidunt sit aut.','Avery Paucek Sr.',3,6,1),(107,17,2,'2017-06-17','Et recusandae sit.','Kamryn Kemmer MD',3,6,4),(108,18,2,'2017-04-09','Mollitia reprehenderit.','Prof. Rosemarie Halvorson PhD',5,4,1),(109,19,2,'2017-01-28','Adipisci cumque voluptas minus.','Louvenia Lehner',3,4,2),(110,20,2,'2016-12-20','Mollitia sed molestiae explicabo quo.','Delpha Okuneva',5,4,4),(111,21,2,'2017-08-28','Suscipit iusto.','Joy Lueilwitz',5,6,1),(112,22,2,'2016-10-26','Quis illo expedita nihil.','Retha Batz',3,4,2),(113,23,2,'2017-08-09','Ad adipisci fugit.','Zoey Toy',5,6,4),(114,24,2,'2017-01-02','Beatae perferendis quisquam est.','Prof. Presley Collier',5,6,1),(115,25,2,'2017-06-01','Doloribus ratione non.','Conner Mueller',3,6,3),(116,26,2,'2017-06-13','Eligendi adipisci neque dicta est.','Elnora Denesik',3,6,4),(117,27,2,'2016-10-10','Sit labore similique non.','Mathias Marvin',5,4,3),(118,28,2,'2017-06-03','Ipsam possimus qui.','Piper Sipes Jr.',5,4,3),(119,29,2,'2016-12-20','Quidem amet totam earum.','Gaylord Balistreri',3,4,1),(120,30,2,'2017-02-16','Ut numquam ipsum.','Maximillia Kozey',3,6,1),(121,31,2,'2017-04-10','Qui hic.','Cindy Kovacek',5,6,4),(122,32,2,'2016-12-06','Distinctio ut omnis.','Neil Trantow',5,4,4),(123,33,2,'2017-07-26','Placeat consequuntur.','Percival Runolfsdottir I',3,4,4),(124,34,2,'2017-05-21','Aut adipisci.','Maryjane Ortiz',5,6,4),(125,35,2,'2017-09-19','Maxime est cum.','Lori Harris',3,4,1),(126,36,2,'2016-11-05','Ipsam aut corrupti.','Guiseppe Kuphal',5,6,3),(127,37,2,'2017-01-08','Qui ad ipsa.','Leonard Casper DVM',5,4,3),(128,38,2,'2017-01-04','Voluptas vitae.','Mr. Carroll D\'Amore MD',5,6,3),(129,39,2,'2017-05-06','Quis nobis reiciendis.','Prof. Rosella Rowe DVM',3,6,2),(130,40,2,'2017-08-31','Similique ut at quis.','Dr. Corene Ryan PhD',5,4,4),(131,41,2,'2016-10-04','Iste enim iste repellendus.','Cristopher Yost',3,4,2),(132,42,2,'2017-05-08','Culpa rerum quia quis.','Francisco Balistreri',5,6,4),(133,43,2,'2016-12-27','Distinctio maiores.','Angus Dare',3,4,4),(134,44,2,'2017-08-16','Earum expedita omnis qui.','Dedrick Wisoky IV',5,4,2),(135,45,2,'2017-07-05','Ut et sit aut quia occaecati.','Leopoldo Monahan',3,6,3),(136,46,2,'2016-12-12','Nemo voluptas expedita officia quas quo.','Prof. Theodore Windler',3,4,3),(137,47,2,'2017-02-01','Non perspiciatis est voluptate.','Willa Monahan',3,6,4),(138,48,2,'2016-12-26','Ea maiores.','Mr. Rigoberto Armstrong',5,6,1),(139,49,2,'2017-05-30','Nulla earum est.','Marvin Nienow',5,6,4),(140,50,2,'2017-07-09','Laboriosam dolor molestias modi hic.','Khalid Streich',5,6,1),(141,51,2,'2017-07-03','Ut neque aliquid est assumenda.','Chelsie Ritchie I',3,4,4),(142,52,2,'2016-11-29','Debitis nulla vitae molestiae.','Miss Ollie Marks',3,4,1),(143,53,2,'2017-09-08','Error repudiandae doloribus.','Miss Kaci Parker III',3,4,3),(144,54,2,'2017-07-30','Iste sit atque.','Dr. Ora Bartoletti',5,6,4),(145,55,2,'2017-07-04','Natus nulla placeat ut eum.','Marquise Torp',5,4,3),(146,56,2,'2017-08-04','Reprehenderit accusantium harum consequatur.','Ilene Howe',3,4,2),(147,57,2,'2016-11-29','Consequatur ut architecto provident deserunt.','Alfred Pouros',5,4,3),(148,58,2,'2017-01-11','Voluptatibus beatae consequatur occaecati illum quia.','Mark Block IV',5,6,2),(149,59,2,'2016-09-30','Tempore voluptas temporibus.','Mitchel Upton',3,6,3),(150,60,2,'2016-12-18','Assumenda autem assumenda exercitationem nemo.','Dr. Bettie Reilly',5,4,1),(151,61,2,'2017-05-19','Ratione vel tempore.','Aaliyah Wunsch',5,4,2),(152,62,2,'2017-06-27','Qui voluptatibus illum.','Prof. Tyree Barton',5,6,2),(153,63,2,'2017-02-07','Ea reiciendis et autem quo dolorem.','Demario Jacobs Jr.',3,4,1),(154,64,2,'2017-02-07','Officiis laboriosam est.','Dion Waelchi',5,6,3),(155,65,2,'2017-04-06','Quis est quod.','Kiana Cronin DDS',5,4,1),(156,66,2,'2016-10-03','Vel totam et sed fugiat.','Mariano Macejkovic',5,6,4),(157,67,2,'2017-06-07','Ad fuga dolorem est.','Tyree Zieme',3,6,3),(158,68,2,'2017-09-01','Non illum consequuntur sed impedit ipsa.','Mr. Corbin Murazik',3,6,2),(159,69,2,'2017-02-13','Minus voluptatum ut laboriosam.','Amiya Feest DDS',3,4,4),(160,70,2,'2017-03-19','Eaque sed.','Prof. Orlo Nikolaus',5,6,2),(161,71,2,'2017-08-27','Architecto porro voluptatum natus.','Carmen Greenholt',3,4,2),(162,72,2,'2017-08-23','Et tempore autem.','Myrl Barrows Jr.',3,6,2),(163,73,2,'2017-03-13','At est est occaecati.','Mrs. Allene Kovacek',5,6,4),(164,74,2,'2017-06-24','Hic et.','Bartholome Prosacco',3,6,4),(165,75,2,'2016-10-10','Aut non qui.','Maximus Jacobson',5,6,3),(166,76,2,'2017-07-23','Nam dolore consequatur numquam.','Dr. Miller Huels I',5,4,3),(167,77,2,'2017-02-20','Eaque voluptas atque occaecati.','Rosanna Reynolds',3,4,4),(168,78,2,'2017-04-15','Fuga dolorem.','Audrey Moen DDS',5,6,4),(169,79,2,'2016-10-03','Est distinctio aut error.','Mr. Alfonzo Leannon DVM',5,6,4),(170,80,2,'2016-10-21','Aspernatur quia ut id voluptas et.','Marlee Dibbert',5,4,1),(171,81,2,'2017-08-28','Quod expedita in recusandae.','Manuela Welch',5,4,2),(172,82,2,'2016-10-25','Dolores ea repellendus.','Johnnie Smith III',3,4,1),(173,83,2,'2016-10-22','Alias ut provident sit tempore.','Lina Boehm',3,4,3),(174,84,2,'2017-06-25','Nemo officiis omnis rerum.','Aglae Kihn',3,6,4),(175,85,2,'2017-06-27','Est cumque nihil sit fugit est.','Louisa Botsford',3,4,1),(176,86,2,'2017-08-09','Dolores aliquid doloremque.','Maude Stroman DVM',5,6,2),(177,87,2,'2017-02-16','Dolores et optio in.','Prof. Harry Kessler',3,4,1),(178,88,2,'2016-11-04','Ex dolores qui debitis rem.','Tillman Yost PhD',5,4,2),(179,89,2,'2017-08-09','Provident dolorem at.','Elena Breitenberg',3,6,1),(180,90,2,'2017-01-13','Incidunt sapiente.','Shawna Hahn',5,4,4),(181,91,2,'2017-02-24','Aut aliquid non.','Parker Schaden DDS',3,4,3),(182,92,2,'2017-03-10','Debitis et eligendi a.','Marlen Swift',3,6,1),(183,93,2,'2016-12-21','Dolorem commodi.','Michele Schneider III',3,4,2),(184,94,2,'2017-06-11','Nisi id.','Allene Torphy',5,4,4),(185,95,2,'2017-02-16','Molestiae possimus occaecati aut.','Anibal Romaguera',5,6,3),(186,96,2,'2017-06-03','Repellendus dolores.','Dr. Kristoffer Kunze',5,6,3),(187,97,2,'2017-07-10','Alias eos.','Felicity Mohr',5,4,2),(188,98,2,'2016-11-14','Atque omnis et.','Adolfo Doyle',5,4,2),(189,99,2,'2017-01-30','Quia dolorem ullam.','Mattie Mohr',5,6,2),(190,100,2,'2016-10-09','Dolor molestiae quia.','Miss Mariam Denesik I',3,6,4),(191,101,2,'2017-05-29','Hic autem voluptate doloribus qui vero.','Mr. Jordon Schiller',3,6,2),(192,102,2,'2017-05-26','Sequi molestiae.','Carlee Kessler',3,4,4),(193,103,2,'2017-01-06','Quidem enim pariatur neque.','Gabe Tremblay IV',5,4,1),(194,104,2,'2017-05-13','Dolores eos nam ea.','Elizabeth Koelpin',3,4,1),(195,105,2,'2016-11-22','Quasi quia.','Evelyn Kerluke',3,4,4),(196,106,2,'2016-10-04','Eum minus a est.','Major Kris',3,6,3),(197,107,2,'2017-03-21','Corporis voluptatum illum incidunt non similique.','Dr. Sylvan Prosacco III',3,4,4),(198,108,2,'2017-01-19','Illum accusantium.','Ofelia Smitham',5,6,4),(199,109,2,'2017-07-08','Ut minus voluptate modi.','Forrest Murphy',5,6,3); -/*!40000 ALTER TABLE `SilverStripe_Lessons_ArticlePage_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_Property` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_Property`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_Property` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Lessons\\Property') DEFAULT 'SilverStripe\\Lessons\\Property', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `PricePerNight` decimal(9,2) NOT NULL DEFAULT '0.00', - `Bedrooms` int(11) NOT NULL DEFAULT '0', - `Bathrooms` int(11) NOT NULL DEFAULT '0', - `FeaturedOnHomepage` tinyint(1) unsigned NOT NULL DEFAULT '0', - `RegionID` int(11) NOT NULL DEFAULT '0', - `PrimaryPhotoID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `AvailableStart` date DEFAULT NULL, - `AvailableEnd` date DEFAULT NULL, - `Description` mediumtext, - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `RegionID` (`RegionID`), - KEY `PrimaryPhotoID` (`PrimaryPhotoID`) -) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_Property` --- - -LOCK TABLES `SilverStripe_Lessons_Property` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_Property` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_Property` VALUES (101,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sed fusce vehicula',700.00,2,1,0,1,22,1,'2018-09-16','2018-09-24',NULL),(102,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sagittis elementum',100.00,3,1,0,4,14,1,'2018-07-20','2018-07-25',NULL),(103,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Tortor vehicula',600.00,2,1,1,3,20,1,'2017-11-17','2017-11-29',NULL),(104,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Cubilia efficitur',100.00,3,3,0,3,23,1,'2018-01-05','2018-01-11',NULL),(105,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Consectetur mollis fringilla dui',900.00,1,1,0,1,16,1,'2018-09-11','2018-09-21',NULL),(106,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Praesent placerat eu',100.00,5,2,0,2,17,1,'2018-09-10','2018-09-13',NULL),(107,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sit fermentum congue',100.00,3,3,1,1,17,1,'2018-08-25','2018-09-07',NULL),(108,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Dictum aliquet netus',400.00,3,3,0,4,15,1,'2018-06-05','2018-06-08',NULL),(109,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Facilisis ullamcorper',500.00,3,3,1,3,14,1,'2018-06-15','2018-06-18',NULL),(110,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Ut proin magna, elit phasellus et',200.00,1,1,0,2,18,1,'2018-04-03','2018-04-08',NULL),(111,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Fringilla urna per',200.00,2,1,1,4,21,1,'2018-03-06','2018-03-08',NULL),(112,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Ipsum adipiscing torquent nam',300.00,3,3,0,3,13,1,'2018-05-18','2018-05-30',NULL),(113,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Quisque habitant',300.00,1,1,1,3,20,1,'2018-08-16','2018-08-16',NULL),(114,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Volutpat rhoncus, nec pulvinar',600.00,1,1,1,3,13,1,'2018-04-04','2018-04-07',NULL),(115,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Interdum cubilia commodo porta, interdum eget dictumst cras',200.00,3,1,1,1,17,1,'2018-08-31','2018-09-03',NULL),(116,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Venenatis class',100.00,5,2,0,2,23,1,'2017-10-29','2017-11-06',NULL),(117,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Leo phasellus inceptos',500.00,2,1,0,1,19,1,'2018-05-27','2018-05-29',NULL),(118,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Sit tincidunt ut felis',600.00,2,1,0,3,17,1,'2017-10-15','2017-10-28',NULL),(119,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Quis ex curae urna, convallis sollicitudin libero ad',300.00,5,2,1,2,14,1,'2018-01-03','2018-01-08',NULL),(120,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Viverra tortor vulputate odio, adipiscing dapibus vel aliquet',500.00,4,2,0,1,19,1,'2017-12-06','2017-12-06',NULL),(121,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Faucibus ornare, convallis risus',200.00,2,3,0,3,19,1,'2017-11-24','2017-12-07',NULL),(122,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Auctor augue dictumst conubia',100.00,1,2,1,1,19,1,'2017-12-16','2017-12-27',NULL),(123,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Malesuada fusce imperdiet',900.00,3,1,1,1,19,1,'2018-05-13','2018-05-13',NULL),(124,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Sapien varius pretium inceptos',400.00,1,2,0,4,17,1,'2018-03-17','2018-03-29',NULL),(125,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Vestibulum conubia tristique',100.00,5,2,1,3,16,1,'2018-03-18','2018-03-23',NULL),(126,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Tortor bibendum diam, velit quis pharetra',700.00,5,2,0,2,17,1,'2018-09-08','2018-09-10',NULL),(127,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Potenti laoreet, eu litora',200.00,5,2,1,4,16,1,'2018-01-28','2018-02-07',NULL),(128,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Convallis sagittis gravida',500.00,3,3,0,2,19,1,'2018-07-31','2018-07-31',NULL),(129,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Suspendisse netus',400.00,5,2,0,4,22,1,'2017-12-07','2017-12-08',NULL),(130,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Cursus dictumst, quis congue',800.00,1,3,1,4,15,1,'2018-03-13','2018-03-20',NULL),(131,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Sed tortor elementum',200.00,1,2,1,1,22,1,'2018-06-10','2018-06-13',NULL),(132,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Dictumst elementum',500.00,4,1,1,4,23,1,'2017-11-19','2017-11-28',NULL),(133,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Posuere sollicitudin, ipsum senectus',200.00,2,2,0,2,21,1,'2018-05-10','2018-05-17',NULL),(134,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Erat leo taciti',900.00,3,2,1,3,14,1,'2018-05-21','2018-05-29',NULL),(135,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Nibh convallis et libero',900.00,4,2,1,3,13,1,'2018-02-17','2018-02-24',NULL),(136,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Justo suspendisse pretium',700.00,5,3,1,4,21,1,'2017-10-03','2017-10-14',NULL),(137,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Donec laoreet',400.00,4,1,1,3,22,1,'2018-08-25','2018-08-31',NULL),(138,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Interdum integer ultricies consequat',500.00,5,2,0,2,20,1,'2018-03-31','2018-04-11',NULL),(139,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Fusce arcu vivamus, at facilisis ligula',100.00,3,1,0,4,15,1,'2018-07-19','2018-07-31',NULL),(140,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Erat convallis primis consequat',500.00,4,3,0,2,14,1,'2018-04-03','2018-04-15',NULL),(141,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Adipiscing eleifend quam ullamcorper',500.00,1,1,1,4,19,1,'2017-11-26','2017-12-08',NULL),(142,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Metus et, vel cras',500.00,2,1,0,2,16,1,'2018-01-04','2018-01-12',NULL),(143,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Dictum erat metus odio',600.00,4,2,1,4,21,1,'2018-08-12','2018-08-18',NULL),(144,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Sed habitasse fermentum',100.00,2,3,0,3,17,1,'2018-04-16','2018-04-22',NULL),(145,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Metus maximus, maecenas tempus',100.00,1,1,1,1,19,1,'2017-11-15','2017-11-15',NULL),(146,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Maecenas condimentum magna',500.00,4,1,0,2,17,1,'2017-10-06','2017-10-17',NULL),(147,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Id eleifend risus, facilisis tempor ante',600.00,3,3,1,3,17,1,'2018-06-19','2018-07-02',NULL),(148,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Viverra taciti enim',200.00,1,2,0,1,20,1,'2018-04-17','2018-04-23',NULL),(149,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Sociosqu vehicula',200.00,4,1,1,2,14,1,'2018-04-30','2018-05-04',NULL),(150,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Felis orci',200.00,5,2,1,1,14,1,'2018-01-13','2018-01-16',NULL),(151,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Convallis eros netus, condimentum himenaeos magna',300.00,2,1,1,4,21,1,'2018-06-13','2018-06-18',NULL),(152,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Ultricies fames',200.00,1,3,1,3,13,1,'2018-05-26','2018-05-26',NULL),(153,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Tortor nisi litora, litora conubia neque',400.00,1,3,1,2,18,1,'2017-11-30','2017-12-02',NULL),(154,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Euismod himenaeos donec, maecenas tincidunt fusce',100.00,4,3,1,1,16,1,'2018-08-23','2018-09-03',NULL),(155,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lorem mattis nunc orci',100.00,4,1,1,2,17,1,'2017-09-27','2017-10-05',NULL),(156,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lacinia eleifend eu',500.00,4,1,1,4,15,1,'2018-01-10','2018-01-17',NULL),(157,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lobortis porttitor condimentum ad',800.00,2,3,0,1,16,1,'2018-03-08','2018-03-17',NULL),(158,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Nulla varius et class',200.00,2,3,1,2,18,1,'2018-02-05','2018-02-17',NULL),(159,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Suspendisse ante',700.00,5,3,0,1,16,1,'2018-03-15','2018-03-19',NULL),(160,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Viverra pulvinar cursus blandit',300.00,3,2,0,2,18,1,'2017-12-23','2017-12-23',NULL),(161,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Etiam velit',300.00,1,2,1,4,21,1,'2018-07-17','2018-07-19',NULL),(162,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Tortor turpis',100.00,1,2,0,3,13,1,'2018-01-18','2018-01-30',NULL),(163,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Etiam aliquam',400.00,3,3,1,2,13,1,'2017-11-15','2017-11-27',NULL),(164,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Eleifend cubilia enim',800.00,5,1,0,2,20,1,'2018-06-27','2018-07-07',NULL),(165,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Feugiat purus',300.00,1,2,1,3,22,1,'2018-01-28','2018-01-29',NULL),(166,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Nostra netus',800.00,4,1,1,4,20,1,'2018-03-10','2018-03-11',NULL),(167,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Mattis laoreet imperdiet',600.00,1,3,0,3,23,1,'2017-12-21','2017-12-27',NULL),(168,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Eleifend nunc tempor et',400.00,1,2,1,4,22,1,'2018-07-26','2018-08-07',NULL),(169,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Praesent auctor',700.00,5,2,0,2,22,1,'2018-03-04','2018-03-04',NULL),(170,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Integer sem, himenaeos blandit',500.00,1,2,1,3,22,1,'2018-06-05','2018-06-12',NULL),(171,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Erat augue vivamus fermentum',300.00,4,2,1,2,18,1,'2017-11-17','2017-11-23',NULL),(172,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Egestas posuere magna, justo nisi libero',800.00,3,2,0,2,20,1,'2018-05-16','2018-05-25',NULL),(173,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Et magna congue eros',600.00,4,3,1,4,21,1,'2018-07-01','2018-07-14',NULL),(174,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Sed phasellus nullam cras',400.00,5,3,1,1,18,1,'2018-08-19','2018-08-31',NULL),(175,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Venenatis ad diam',600.00,2,1,1,3,18,1,'2017-12-08','2017-12-15',NULL),(176,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Vestibulum congue, fusce donec',500.00,1,2,1,2,20,1,'2018-01-16','2018-01-29',NULL),(177,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Integer vel',400.00,5,2,0,3,19,1,'2018-09-04','2018-09-06',NULL),(178,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Mi primis',800.00,2,2,0,4,13,1,'2018-07-04','2018-07-04',NULL),(179,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Mi molestie commodo maximus',500.00,1,3,1,3,22,1,'2017-10-10','2017-10-19',NULL),(180,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Sit semper molestie eros',600.00,5,2,1,3,19,1,'2018-08-13','2018-08-14',NULL),(181,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Condimentum habitasse',500.00,3,3,1,4,13,1,'2018-01-06','2018-01-15',NULL),(182,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Sapien nunc duis',600.00,3,2,0,2,20,1,'2018-06-30','2018-07-02',NULL),(183,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Malesuada id',800.00,1,2,0,1,13,1,'2018-09-12','2018-09-21',NULL),(184,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','At suspendisse pretium',500.00,1,1,1,2,14,1,'2018-04-08','2018-04-19',NULL),(185,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Elit in',200.00,4,1,1,1,22,1,'2018-07-03','2018-07-05',NULL),(186,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Porttitor inceptos',200.00,4,1,1,2,19,1,'2017-12-22','2017-12-28',NULL),(187,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Id metus',100.00,1,3,1,1,17,1,'2018-08-18','2018-08-30',NULL),(188,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Integer aliquet habitant',200.00,5,3,1,2,19,1,'2018-06-26','2018-07-09',NULL),(189,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Tempor platea',200.00,3,1,1,2,23,1,'2017-10-17','2017-10-18',NULL),(190,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Scelerisque ultricies dictumst',800.00,3,2,0,4,14,1,'2017-10-14','2017-10-22',NULL),(191,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ligula vehicula',500.00,3,3,1,3,21,1,'2017-10-23','2017-10-31',NULL),(192,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Viverra proin hendrerit',700.00,2,1,1,1,23,1,'2017-12-14','2017-12-20',NULL),(193,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Malesuada ut est ad, justo pretium aptent imperdiet, ac semper arcu accumsan',200.00,2,2,0,3,15,1,'2018-08-06','2018-08-11',NULL),(194,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ante ornare sagittis donec',800.00,5,2,0,4,22,1,'2018-05-24','2018-06-02',NULL),(195,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ornare sollicitudin gravida ad, sit euismod commodo vehicula',400.00,1,1,0,1,13,1,'2018-06-11','2018-06-11',NULL),(196,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Nulla orci',100.00,5,1,0,3,17,1,'2018-04-19','2018-04-22',NULL),(197,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Quis phasellus, et nostra',300.00,2,1,0,1,22,1,'2018-06-06','2018-06-08',NULL),(198,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Praesent eleifend tempor',300.00,2,2,1,2,17,1,'2018-07-05','2018-07-06',NULL),(199,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Egestas convallis enim bibendum',700.00,3,3,1,1,13,1,'2018-07-08','2018-07-20',NULL),(200,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Sed auctor tempus',200.00,4,2,0,4,13,1,'2018-05-01','2018-05-05',NULL); -/*!40000 ALTER TABLE `SilverStripe_Lessons_Property` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_Property_Live` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_Property_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_Property_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Lessons\\Property') DEFAULT 'SilverStripe\\Lessons\\Property', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `PricePerNight` decimal(9,2) NOT NULL DEFAULT '0.00', - `Bedrooms` int(11) NOT NULL DEFAULT '0', - `Bathrooms` int(11) NOT NULL DEFAULT '0', - `FeaturedOnHomepage` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `RegionID` int(11) NOT NULL DEFAULT '0', - `PrimaryPhotoID` int(11) NOT NULL DEFAULT '0', - `AvailableStart` date DEFAULT NULL, - `AvailableEnd` date DEFAULT NULL, - `Description` mediumtext, - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `RegionID` (`RegionID`), - KEY `PrimaryPhotoID` (`PrimaryPhotoID`) -) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_Property_Live` --- - -LOCK TABLES `SilverStripe_Lessons_Property_Live` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_Property_Live` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_Property_Live` VALUES (101,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sed fusce vehicula',700.00,2,1,0,1,1,22,'2018-09-16','2018-09-24',NULL),(102,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sagittis elementum',100.00,3,1,0,1,4,14,'2018-07-20','2018-07-25',NULL),(103,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Tortor vehicula',600.00,2,1,1,1,3,20,'2017-11-17','2017-11-29',NULL),(104,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Cubilia efficitur',100.00,3,3,0,1,3,23,'2018-01-05','2018-01-11',NULL),(105,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Consectetur mollis fringilla dui',900.00,1,1,0,1,1,16,'2018-09-11','2018-09-21',NULL),(106,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Praesent placerat eu',100.00,5,2,0,1,2,17,'2018-09-10','2018-09-13',NULL),(107,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sit fermentum congue',100.00,3,3,1,1,1,17,'2018-08-25','2018-09-07',NULL),(108,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Dictum aliquet netus',400.00,3,3,0,1,4,15,'2018-06-05','2018-06-08',NULL),(109,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Facilisis ullamcorper',500.00,3,3,1,1,3,14,'2018-06-15','2018-06-18',NULL),(110,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Ut proin magna, elit phasellus et',200.00,1,1,0,1,2,18,'2018-04-03','2018-04-08',NULL),(111,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Fringilla urna per',200.00,2,1,1,1,4,21,'2018-03-06','2018-03-08',NULL),(112,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Ipsum adipiscing torquent nam',300.00,3,3,0,1,3,13,'2018-05-18','2018-05-30',NULL),(113,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Quisque habitant',300.00,1,1,1,1,3,20,'2018-08-16','2018-08-16',NULL),(114,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Volutpat rhoncus, nec pulvinar',600.00,1,1,1,1,3,13,'2018-04-04','2018-04-07',NULL),(115,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Interdum cubilia commodo porta, interdum eget dictumst cras',200.00,3,1,1,1,1,17,'2018-08-31','2018-09-03',NULL),(116,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Venenatis class',100.00,5,2,0,1,2,23,'2017-10-29','2017-11-06',NULL),(117,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Leo phasellus inceptos',500.00,2,1,0,1,1,19,'2018-05-27','2018-05-29',NULL),(118,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Sit tincidunt ut felis',600.00,2,1,0,1,3,17,'2017-10-15','2017-10-28',NULL),(119,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Quis ex curae urna, convallis sollicitudin libero ad',300.00,5,2,1,1,2,14,'2018-01-03','2018-01-08',NULL),(120,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Viverra tortor vulputate odio, adipiscing dapibus vel aliquet',500.00,4,2,0,1,1,19,'2017-12-06','2017-12-06',NULL),(121,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Faucibus ornare, convallis risus',200.00,2,3,0,1,3,19,'2017-11-24','2017-12-07',NULL),(122,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Auctor augue dictumst conubia',100.00,1,2,1,1,1,19,'2017-12-16','2017-12-27',NULL),(123,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Malesuada fusce imperdiet',900.00,3,1,1,1,1,19,'2018-05-13','2018-05-13',NULL),(124,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Sapien varius pretium inceptos',400.00,1,2,0,1,4,17,'2018-03-17','2018-03-29',NULL),(125,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Vestibulum conubia tristique',100.00,5,2,1,1,3,16,'2018-03-18','2018-03-23',NULL),(126,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Tortor bibendum diam, velit quis pharetra',700.00,5,2,0,1,2,17,'2018-09-08','2018-09-10',NULL),(127,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Potenti laoreet, eu litora',200.00,5,2,1,1,4,16,'2018-01-28','2018-02-07',NULL),(128,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Convallis sagittis gravida',500.00,3,3,0,1,2,19,'2018-07-31','2018-07-31',NULL),(129,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Suspendisse netus',400.00,5,2,0,1,4,22,'2017-12-07','2017-12-08',NULL),(130,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Cursus dictumst, quis congue',800.00,1,3,1,1,4,15,'2018-03-13','2018-03-20',NULL),(131,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Sed tortor elementum',200.00,1,2,1,1,1,22,'2018-06-10','2018-06-13',NULL),(132,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Dictumst elementum',500.00,4,1,1,1,4,23,'2017-11-19','2017-11-28',NULL),(133,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Posuere sollicitudin, ipsum senectus',200.00,2,2,0,1,2,21,'2018-05-10','2018-05-17',NULL),(134,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Erat leo taciti',900.00,3,2,1,1,3,14,'2018-05-21','2018-05-29',NULL),(135,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Nibh convallis et libero',900.00,4,2,1,1,3,13,'2018-02-17','2018-02-24',NULL),(136,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Justo suspendisse pretium',700.00,5,3,1,1,4,21,'2017-10-03','2017-10-14',NULL),(137,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Donec laoreet',400.00,4,1,1,1,3,22,'2018-08-25','2018-08-31',NULL),(138,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Interdum integer ultricies consequat',500.00,5,2,0,1,2,20,'2018-03-31','2018-04-11',NULL),(139,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Fusce arcu vivamus, at facilisis ligula',100.00,3,1,0,1,4,15,'2018-07-19','2018-07-31',NULL),(140,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Erat convallis primis consequat',500.00,4,3,0,1,2,14,'2018-04-03','2018-04-15',NULL),(141,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Adipiscing eleifend quam ullamcorper',500.00,1,1,1,1,4,19,'2017-11-26','2017-12-08',NULL),(142,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Metus et, vel cras',500.00,2,1,0,1,2,16,'2018-01-04','2018-01-12',NULL),(143,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Dictum erat metus odio',600.00,4,2,1,1,4,21,'2018-08-12','2018-08-18',NULL),(144,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Sed habitasse fermentum',100.00,2,3,0,1,3,17,'2018-04-16','2018-04-22',NULL),(145,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Metus maximus, maecenas tempus',100.00,1,1,1,1,1,19,'2017-11-15','2017-11-15',NULL),(146,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Maecenas condimentum magna',500.00,4,1,0,1,2,17,'2017-10-06','2017-10-17',NULL),(147,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Id eleifend risus, facilisis tempor ante',600.00,3,3,1,1,3,17,'2018-06-19','2018-07-02',NULL),(148,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Viverra taciti enim',200.00,1,2,0,1,1,20,'2018-04-17','2018-04-23',NULL),(149,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Sociosqu vehicula',200.00,4,1,1,1,2,14,'2018-04-30','2018-05-04',NULL),(150,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Felis orci',200.00,5,2,1,1,1,14,'2018-01-13','2018-01-16',NULL),(151,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Convallis eros netus, condimentum himenaeos magna',300.00,2,1,1,1,4,21,'2018-06-13','2018-06-18',NULL),(152,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Ultricies fames',200.00,1,3,1,1,3,13,'2018-05-26','2018-05-26',NULL),(153,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Tortor nisi litora, litora conubia neque',400.00,1,3,1,1,2,18,'2017-11-30','2017-12-02',NULL),(154,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Euismod himenaeos donec, maecenas tincidunt fusce',100.00,4,3,1,1,1,16,'2018-08-23','2018-09-03',NULL),(155,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lorem mattis nunc orci',100.00,4,1,1,1,2,17,'2017-09-27','2017-10-05',NULL),(156,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lacinia eleifend eu',500.00,4,1,1,1,4,15,'2018-01-10','2018-01-17',NULL),(157,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lobortis porttitor condimentum ad',800.00,2,3,0,1,1,16,'2018-03-08','2018-03-17',NULL),(158,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Nulla varius et class',200.00,2,3,1,1,2,18,'2018-02-05','2018-02-17',NULL),(159,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Suspendisse ante',700.00,5,3,0,1,1,16,'2018-03-15','2018-03-19',NULL),(160,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Viverra pulvinar cursus blandit',300.00,3,2,0,1,2,18,'2017-12-23','2017-12-23',NULL),(161,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Etiam velit',300.00,1,2,1,1,4,21,'2018-07-17','2018-07-19',NULL),(162,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Tortor turpis',100.00,1,2,0,1,3,13,'2018-01-18','2018-01-30',NULL),(163,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Etiam aliquam',400.00,3,3,1,1,2,13,'2017-11-15','2017-11-27',NULL),(164,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Eleifend cubilia enim',800.00,5,1,0,1,2,20,'2018-06-27','2018-07-07',NULL),(165,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Feugiat purus',300.00,1,2,1,1,3,22,'2018-01-28','2018-01-29',NULL),(166,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Nostra netus',800.00,4,1,1,1,4,20,'2018-03-10','2018-03-11',NULL),(167,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Mattis laoreet imperdiet',600.00,1,3,0,1,3,23,'2017-12-21','2017-12-27',NULL),(168,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Eleifend nunc tempor et',400.00,1,2,1,1,4,22,'2018-07-26','2018-08-07',NULL),(169,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Praesent auctor',700.00,5,2,0,1,2,22,'2018-03-04','2018-03-04',NULL),(170,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Integer sem, himenaeos blandit',500.00,1,2,1,1,3,22,'2018-06-05','2018-06-12',NULL),(171,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Erat augue vivamus fermentum',300.00,4,2,1,1,2,18,'2017-11-17','2017-11-23',NULL),(172,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Egestas posuere magna, justo nisi libero',800.00,3,2,0,1,2,20,'2018-05-16','2018-05-25',NULL),(173,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Et magna congue eros',600.00,4,3,1,1,4,21,'2018-07-01','2018-07-14',NULL),(174,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Sed phasellus nullam cras',400.00,5,3,1,1,1,18,'2018-08-19','2018-08-31',NULL),(175,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Venenatis ad diam',600.00,2,1,1,1,3,18,'2017-12-08','2017-12-15',NULL),(176,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Vestibulum congue, fusce donec',500.00,1,2,1,1,2,20,'2018-01-16','2018-01-29',NULL),(177,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Integer vel',400.00,5,2,0,1,3,19,'2018-09-04','2018-09-06',NULL),(178,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Mi primis',800.00,2,2,0,1,4,13,'2018-07-04','2018-07-04',NULL),(179,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Mi molestie commodo maximus',500.00,1,3,1,1,3,22,'2017-10-10','2017-10-19',NULL),(180,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Sit semper molestie eros',600.00,5,2,1,1,3,19,'2018-08-13','2018-08-14',NULL),(181,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Condimentum habitasse',500.00,3,3,1,1,4,13,'2018-01-06','2018-01-15',NULL),(182,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Sapien nunc duis',600.00,3,2,0,1,2,20,'2018-06-30','2018-07-02',NULL),(183,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Malesuada id',800.00,1,2,0,1,1,13,'2018-09-12','2018-09-21',NULL),(184,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','At suspendisse pretium',500.00,1,1,1,1,2,14,'2018-04-08','2018-04-19',NULL),(185,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Elit in',200.00,4,1,1,1,1,22,'2018-07-03','2018-07-05',NULL),(186,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Porttitor inceptos',200.00,4,1,1,1,2,19,'2017-12-22','2017-12-28',NULL),(187,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Id metus',100.00,1,3,1,1,1,17,'2018-08-18','2018-08-30',NULL),(188,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Integer aliquet habitant',200.00,5,3,1,1,2,19,'2018-06-26','2018-07-09',NULL),(189,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Tempor platea',200.00,3,1,1,1,2,23,'2017-10-17','2017-10-18',NULL),(190,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Scelerisque ultricies dictumst',800.00,3,2,0,1,4,14,'2017-10-14','2017-10-22',NULL),(191,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ligula vehicula',500.00,3,3,1,1,3,21,'2017-10-23','2017-10-31',NULL),(192,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Viverra proin hendrerit',700.00,2,1,1,1,1,23,'2017-12-14','2017-12-20',NULL),(193,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Malesuada ut est ad, justo pretium aptent imperdiet, ac semper arcu accumsan',200.00,2,2,0,1,3,15,'2018-08-06','2018-08-11',NULL),(194,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ante ornare sagittis donec',800.00,5,2,0,1,4,22,'2018-05-24','2018-06-02',NULL),(195,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ornare sollicitudin gravida ad, sit euismod commodo vehicula',400.00,1,1,0,1,1,13,'2018-06-11','2018-06-11',NULL),(196,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Nulla orci',100.00,5,1,0,1,3,17,'2018-04-19','2018-04-22',NULL),(197,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Quis phasellus, et nostra',300.00,2,1,0,1,1,22,'2018-06-06','2018-06-08',NULL),(198,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Praesent eleifend tempor',300.00,2,2,1,1,2,17,'2018-07-05','2018-07-06',NULL),(199,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Egestas convallis enim bibendum',700.00,3,3,1,1,1,13,'2018-07-08','2018-07-20',NULL),(200,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Sed auctor tempus',200.00,4,2,0,1,4,13,'2018-05-01','2018-05-05',NULL); -/*!40000 ALTER TABLE `SilverStripe_Lessons_Property_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_Property_Versions` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_Property_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_Property_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', - `AuthorID` int(11) NOT NULL DEFAULT '0', - `PublisherID` int(11) NOT NULL DEFAULT '0', - `ClassName` enum('SilverStripe\\Lessons\\Property') DEFAULT 'SilverStripe\\Lessons\\Property', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `PricePerNight` decimal(9,2) NOT NULL DEFAULT '0.00', - `Bedrooms` int(11) NOT NULL DEFAULT '0', - `Bathrooms` int(11) NOT NULL DEFAULT '0', - `FeaturedOnHomepage` tinyint(1) unsigned NOT NULL DEFAULT '0', - `RegionID` int(11) NOT NULL DEFAULT '0', - `PrimaryPhotoID` int(11) NOT NULL DEFAULT '0', - `AvailableStart` date DEFAULT NULL, - `AvailableEnd` date DEFAULT NULL, - `Description` mediumtext, - PRIMARY KEY (`ID`), - KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `AuthorID` (`AuthorID`), - KEY `PublisherID` (`PublisherID`), - KEY `ClassName` (`ClassName`), - KEY `RegionID` (`RegionID`), - KEY `PrimaryPhotoID` (`PrimaryPhotoID`) -) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_Property_Versions` --- - -LOCK TABLES `SilverStripe_Lessons_Property_Versions` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_Property_Versions` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_Property_Versions` VALUES (1,101,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sed fusce vehicula',700.00,2,1,0,1,22,NULL,NULL,NULL),(2,102,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sagittis elementum',100.00,3,1,0,4,14,NULL,NULL,NULL),(3,103,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Tortor vehicula',600.00,2,1,1,3,20,NULL,NULL,NULL),(4,104,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Cubilia efficitur',100.00,3,3,0,3,23,NULL,NULL,NULL),(5,105,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Consectetur mollis fringilla dui',900.00,1,1,0,1,16,NULL,NULL,NULL),(6,106,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Praesent placerat eu',100.00,5,2,0,2,17,NULL,NULL,NULL),(7,107,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Sit fermentum congue',100.00,3,3,1,1,17,NULL,NULL,NULL),(8,108,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Dictum aliquet netus',400.00,3,3,0,4,15,NULL,NULL,NULL),(9,109,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Facilisis ullamcorper',500.00,3,3,1,3,14,NULL,NULL,NULL),(10,110,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Ut proin magna, elit phasellus et',200.00,1,1,0,2,18,NULL,NULL,NULL),(11,111,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Fringilla urna per',200.00,2,1,1,4,21,NULL,NULL,NULL),(12,112,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Ipsum adipiscing torquent nam',300.00,3,3,0,3,13,NULL,NULL,NULL),(13,113,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:14','2017-09-25 15:34:34','Quisque habitant',300.00,1,1,1,3,20,NULL,NULL,NULL),(14,114,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Volutpat rhoncus, nec pulvinar',600.00,1,1,1,3,13,NULL,NULL,NULL),(15,115,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Interdum cubilia commodo porta, interdum eget dictumst cras',200.00,3,1,1,1,17,NULL,NULL,NULL),(16,116,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Venenatis class',100.00,5,2,0,2,23,NULL,NULL,NULL),(17,117,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Leo phasellus inceptos',500.00,2,1,0,1,19,NULL,NULL,NULL),(18,118,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Sit tincidunt ut felis',600.00,2,1,0,3,17,NULL,NULL,NULL),(19,119,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Quis ex curae urna, convallis sollicitudin libero ad',300.00,5,2,1,2,14,NULL,NULL,NULL),(20,120,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Viverra tortor vulputate odio, adipiscing dapibus vel aliquet',500.00,4,2,0,1,19,NULL,NULL,NULL),(21,121,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:34','Faucibus ornare, convallis risus',200.00,2,3,0,3,19,NULL,NULL,NULL),(22,122,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Auctor augue dictumst conubia',100.00,1,2,1,1,19,NULL,NULL,NULL),(23,123,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Malesuada fusce imperdiet',900.00,3,1,1,1,19,NULL,NULL,NULL),(24,124,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Sapien varius pretium inceptos',400.00,1,2,0,4,17,NULL,NULL,NULL),(25,125,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Vestibulum conubia tristique',100.00,5,2,1,3,16,NULL,NULL,NULL),(26,126,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Tortor bibendum diam, velit quis pharetra',700.00,5,2,0,2,17,NULL,NULL,NULL),(27,127,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Potenti laoreet, eu litora',200.00,5,2,1,4,16,NULL,NULL,NULL),(28,128,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Convallis sagittis gravida',500.00,3,3,0,2,19,NULL,NULL,NULL),(29,129,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Suspendisse netus',400.00,5,2,0,4,22,NULL,NULL,NULL),(30,130,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Cursus dictumst, quis congue',800.00,1,3,1,4,15,NULL,NULL,NULL),(31,131,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Sed tortor elementum',200.00,1,2,1,1,22,NULL,NULL,NULL),(32,132,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Dictumst elementum',500.00,4,1,1,4,23,NULL,NULL,NULL),(33,133,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Posuere sollicitudin, ipsum senectus',200.00,2,2,0,2,21,NULL,NULL,NULL),(34,134,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:15','2017-09-25 15:34:35','Erat leo taciti',900.00,3,2,1,3,14,NULL,NULL,NULL),(35,135,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Nibh convallis et libero',900.00,4,2,1,3,13,NULL,NULL,NULL),(36,136,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Justo suspendisse pretium',700.00,5,3,1,4,21,NULL,NULL,NULL),(37,137,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Donec laoreet',400.00,4,1,1,3,22,NULL,NULL,NULL),(38,138,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Interdum integer ultricies consequat',500.00,5,2,0,2,20,NULL,NULL,NULL),(39,139,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Fusce arcu vivamus, at facilisis ligula',100.00,3,1,0,4,15,NULL,NULL,NULL),(40,140,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Erat convallis primis consequat',500.00,4,3,0,2,14,NULL,NULL,NULL),(41,141,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Adipiscing eleifend quam ullamcorper',500.00,1,1,1,4,19,NULL,NULL,NULL),(42,142,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Metus et, vel cras',500.00,2,1,0,2,16,NULL,NULL,NULL),(43,143,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Dictum erat metus odio',600.00,4,2,1,4,21,NULL,NULL,NULL),(44,144,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Sed habitasse fermentum',100.00,2,3,0,3,17,NULL,NULL,NULL),(45,145,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Metus maximus, maecenas tempus',100.00,1,1,1,1,19,NULL,NULL,NULL),(46,146,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Maecenas condimentum magna',500.00,4,1,0,2,17,NULL,NULL,NULL),(47,147,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Id eleifend risus, facilisis tempor ante',600.00,3,3,1,3,17,NULL,NULL,NULL),(48,148,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Viverra taciti enim',200.00,1,2,0,1,20,NULL,NULL,NULL),(49,149,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Sociosqu vehicula',200.00,4,1,1,2,14,NULL,NULL,NULL),(50,150,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Felis orci',200.00,5,2,1,1,14,NULL,NULL,NULL),(51,151,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Convallis eros netus, condimentum himenaeos magna',300.00,2,1,1,4,21,NULL,NULL,NULL),(52,152,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Ultricies fames',200.00,1,3,1,3,13,NULL,NULL,NULL),(53,153,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Tortor nisi litora, litora conubia neque',400.00,1,3,1,2,18,NULL,NULL,NULL),(54,154,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Euismod himenaeos donec, maecenas tincidunt fusce',100.00,4,3,1,1,16,NULL,NULL,NULL),(55,155,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:16','2017-09-25 15:34:35','Lorem mattis nunc orci',100.00,4,1,1,2,17,NULL,NULL,NULL),(56,156,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lacinia eleifend eu',500.00,4,1,1,4,15,NULL,NULL,NULL),(57,157,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Lobortis porttitor condimentum ad',800.00,2,3,0,1,16,NULL,NULL,NULL),(58,158,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Nulla varius et class',200.00,2,3,1,2,18,NULL,NULL,NULL),(59,159,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Suspendisse ante',700.00,5,3,0,1,16,NULL,NULL,NULL),(60,160,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Viverra pulvinar cursus blandit',300.00,3,2,0,2,18,NULL,NULL,NULL),(61,161,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Etiam velit',300.00,1,2,1,4,21,NULL,NULL,NULL),(62,162,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Tortor turpis',100.00,1,2,0,3,13,NULL,NULL,NULL),(63,163,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Etiam aliquam',400.00,3,3,1,2,13,NULL,NULL,NULL),(64,164,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Eleifend cubilia enim',800.00,5,1,0,2,20,NULL,NULL,NULL),(65,165,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Feugiat purus',300.00,1,2,1,3,22,NULL,NULL,NULL),(66,166,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Nostra netus',800.00,4,1,1,4,20,NULL,NULL,NULL),(67,167,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Mattis laoreet imperdiet',600.00,1,3,0,3,23,NULL,NULL,NULL),(68,168,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Eleifend nunc tempor et',400.00,1,2,1,4,22,NULL,NULL,NULL),(69,169,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Praesent auctor',700.00,5,2,0,2,22,NULL,NULL,NULL),(70,170,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Integer sem, himenaeos blandit',500.00,1,2,1,3,22,NULL,NULL,NULL),(71,171,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Erat augue vivamus fermentum',300.00,4,2,1,2,18,NULL,NULL,NULL),(72,172,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Egestas posuere magna, justo nisi libero',800.00,3,2,0,2,20,NULL,NULL,NULL),(73,173,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Et magna congue eros',600.00,4,3,1,4,21,NULL,NULL,NULL),(74,174,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Sed phasellus nullam cras',400.00,5,3,1,1,18,NULL,NULL,NULL),(75,175,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Venenatis ad diam',600.00,2,1,1,3,18,NULL,NULL,NULL),(76,176,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:17','2017-09-25 15:34:35','Vestibulum congue, fusce donec',500.00,1,2,1,2,20,NULL,NULL,NULL),(77,177,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Integer vel',400.00,5,2,0,3,19,NULL,NULL,NULL),(78,178,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Mi primis',800.00,2,2,0,4,13,NULL,NULL,NULL),(79,179,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Mi molestie commodo maximus',500.00,1,3,1,3,22,NULL,NULL,NULL),(80,180,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Sit semper molestie eros',600.00,5,2,1,3,19,NULL,NULL,NULL),(81,181,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Condimentum habitasse',500.00,3,3,1,4,13,NULL,NULL,NULL),(82,182,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Sapien nunc duis',600.00,3,2,0,2,20,NULL,NULL,NULL),(83,183,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Malesuada id',800.00,1,2,0,1,13,NULL,NULL,NULL),(84,184,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','At suspendisse pretium',500.00,1,1,1,2,14,NULL,NULL,NULL),(85,185,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Elit in',200.00,4,1,1,1,22,NULL,NULL,NULL),(86,186,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Porttitor inceptos',200.00,4,1,1,2,19,NULL,NULL,NULL),(87,187,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Id metus',100.00,1,3,1,1,17,NULL,NULL,NULL),(88,188,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Integer aliquet habitant',200.00,5,3,1,2,19,NULL,NULL,NULL),(89,189,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Tempor platea',200.00,3,1,1,2,23,NULL,NULL,NULL),(90,190,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Scelerisque ultricies dictumst',800.00,3,2,0,4,14,NULL,NULL,NULL),(91,191,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ligula vehicula',500.00,3,3,1,3,21,NULL,NULL,NULL),(92,192,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Viverra proin hendrerit',700.00,2,1,1,1,23,NULL,NULL,NULL),(93,193,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Malesuada ut est ad, justo pretium aptent imperdiet, ac semper arcu accumsan',200.00,2,2,0,3,15,NULL,NULL,NULL),(94,194,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ante ornare sagittis donec',800.00,5,2,0,4,22,NULL,NULL,NULL),(95,195,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Ornare sollicitudin gravida ad, sit euismod commodo vehicula',400.00,1,1,0,1,13,NULL,NULL,NULL),(96,196,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Nulla orci',100.00,5,1,0,3,17,NULL,NULL,NULL),(97,197,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:18','2017-09-25 15:34:35','Quis phasellus, et nostra',300.00,2,1,0,1,22,NULL,NULL,NULL),(98,198,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Praesent eleifend tempor',300.00,2,2,1,2,17,NULL,NULL,NULL),(99,199,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Egestas convallis enim bibendum',700.00,3,3,1,1,13,NULL,NULL,NULL),(100,200,1,1,1,1,'SilverStripe\\Lessons\\Property','2017-09-26 12:01:19','2017-09-25 15:34:35','Sed auctor tempus',200.00,4,2,0,4,13,NULL,NULL,NULL); -/*!40000 ALTER TABLE `SilverStripe_Lessons_Property_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_Region` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_Region`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_Region` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Lessons\\Region') DEFAULT 'SilverStripe\\Lessons\\Region', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `Description` mediumtext, - `Version` int(11) NOT NULL DEFAULT '0', - `PhotoID` int(11) NOT NULL DEFAULT '0', - `RegionsPageID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `PhotoID` (`PhotoID`), - KEY `RegionsPageID` (`RegionsPageID`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_Region` --- - -LOCK TABLES `SilverStripe_Lessons_Region` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_Region` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_Region` VALUES (1,'SilverStripe\\Lessons\\Region','2017-09-26 12:27:46','2017-09-14 15:26:25','The Northeast','

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque massa felis, hendrerit non tempor quis, hendrerit non sem. Praesent ornare arcu mattis libero sollicitudin, vel dignissim enim placerat. Proin nec risus nulla. Pellentesque quis nulla vitae lorem porta cursus. Aliquam egestas mi ut sem molestie feugiat. Donec maximus facilisis nibh, ultricies placerat lacus cursus eget. Aliquam facilisis est et est bibendum, sed convallis neque cursus. Cras posuere accumsan nibh nec interdum. Vestibulum quam ligula, dignissim vitae tincidunt sit amet, efficitur eleifend libero. Duis quis faucibus tortor. Mauris et scelerisque orci. Phasellus eu neque viverra, pulvinar urna sit amet, hendrerit felis. Morbi id finibus arcu. Etiam nulla felis, auctor quis ultrices in, iaculis sed libero. Phasellus commodo libero vel elit mattis, ac consectetur leo euismod. Nullam feugiat eget nunc tristique vehicula.

Aliquam leo augue, tempor scelerisque nisi at, gravida pharetra leo. Phasellus tincidunt velit lectus, ac ullamcorper augue bibendum eu. Nulla eu mauris purus. Praesent purus turpis, iaculis in ligula sed, lobortis ornare leo. Suspendisse tincidunt, dolor at feugiat ornare, magna nibh blandit turpis, eget placerat nunc mauris quis ante. Phasellus est ante, commodo et massa at, aliquam bibendum nunc. Nulla facilisi. Nulla sagittis est vitae diam fringilla, vitae posuere orci dictum.

',2,11,8),(2,'SilverStripe\\Lessons\\Region','2017-09-26 12:28:06','2017-09-14 15:26:48','The Southeast','

Maecenas fringilla nisl eu orci molestie, euismod pretium velit egestas. Aenean ut tortor luctus, vehicula mauris sit amet, mollis libero. Phasellus sit amet tortor et odio semper congue id eu velit. Aliquam cursus pharetra lectus, et tristique felis elementum id. Vestibulum vel porttitor nisl. Duis blandit nibh risus, id sodales magna consectetur sit amet. Maecenas eget congue lorem. Donec quis magna neque. Aliquam in cursus tortor.

Integer eget fringilla sem, quis faucibus dui. Fusce pretium nunc sit amet magna faucibus, faucibus ornare diam bibendum. Aenean tristique maximus justo, semper interdum odio pellentesque vel. Aenean et condimentum nibh, in congue enim. Aenean erat lorem, rutrum nec lorem vel, euismod dignissim odio. Nullam vitae leo purus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec tincidunt sapien at molestie venenatis. In vehicula faucibus arcu. Maecenas eget dolor ullamcorper, ultricies diam condimentum, rhoncus enim. Aliquam rutrum odio turpis. Aenean eu ligula odio. Maecenas non facilisis enim. Maecenas cursus a sapien non feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

',2,10,8),(3,'SilverStripe\\Lessons\\Region','2017-09-26 12:28:42','2017-09-14 15:27:19','The Southwest','

Praesent a sagittis diam. Mauris fermentum urna eget molestie tincidunt. Praesent in pharetra urna, eget faucibus ligula. Donec velit augue, tincidunt vitae nulla a, rhoncus blandit odio. Suspendisse rutrum metus non leo scelerisque, vel dictum ipsum maximus. Pellentesque eu eros imperdiet, sollicitudin orci vel, aliquet odio. In feugiat scelerisque augue quis mollis. Donec sit amet mi eu arcu sodales fringilla nec vitae nisi. Fusce pretium, urna non consectetur pulvinar, enim justo porttitor ligula, vitae malesuada mauris nisl ut sem. Praesent nibh nunc, porta in pharetra a, pretium tincidunt tortor. Quisque ac dictum arcu. Quisque lacinia rutrum consectetur. Fusce tristique turpis metus, ut tristique enim eleifend a. Curabitur imperdiet dapibus felis in mollis. In blandit a augue volutpat venenatis.

Sed viverra id dui a dictum. Ut id mauris elementum, mollis urna ac, ultrices arcu. Vivamus ac nibh non turpis convallis mattis. Integer vitae volutpat mi. Quisque mi lectus, ornare eu lacinia nec, tincidunt id orci. Nam dictum risus nisl, a pulvinar quam tempor sit amet. Suspendisse eu orci elit. Maecenas cursus fringilla felis, eu dapibus magna blandit ut. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer sollicitudin ipsum quis enim luctus lobortis. Phasellus at pharetra justo.

Fusce at magna turpis. Vivamus varius posuere tortor. Donec fermentum velit eget nisl mattis sollicitudin. Suspendisse sagittis augue in lectus finibus pulvinar. Donec placerat tellus at accumsan cursus. Vestibulum nec rhoncus odio, sed feugiat lectus. Phasellus euismod pretium finibus. In rutrum nisl efficitur dapibus malesuada. Duis et eros tempor mauris tristique feugiat. Nulla quis mi sed lacus volutpat commodo.

',2,8,8),(4,'SilverStripe\\Lessons\\Region','2017-09-26 12:29:14','2017-09-14 15:27:38','The Northwest','

Cras ultricies sagittis ante, et sodales eros tempor id. Maecenas et dapibus velit. Nunc lobortis commodo blandit. Proin ullamcorper dignissim nisi quis posuere. Praesent augue elit, vulputate eget odio eu, ultrices venenatis leo. Donec finibus sem id est imperdiet, id imperdiet felis tempor. Quisque feugiat purus a feugiat suscipit. Phasellus ornare id turpis et suscipit. Nulla scelerisque ipsum porta, vestibulum enim ac, semper lacus. In varius et leo sit amet lobortis. Mauris elementum ut felis eget accumsan. Morbi dictum nunc eget sem aliquam, id tempus velit placerat. Vestibulum scelerisque ligula tristique arcu varius dapibus.

Nulla faucibus ante ut urna laoreet sodales. Nam congue arcu eu elit varius, vitae aliquet lacus tempus. Sed et leo hendrerit, aliquam ipsum a, aliquet massa. Suspendisse pellentesque, massa sed viverra pharetra, turpis orci dapibus lorem, eu sodales tortor sapien ac justo. Nullam lacus ex, commodo eu odio vel, pellentesque gravida nibh. Donec ut fringilla felis. Sed id metus id neque euismod euismod. Aliquam eget dui eleifend, tincidunt orci et, tempor nisl. Nunc a odio libero. Suspendisse mollis erat id pellentesque ullamcorper. Fusce nec magna eu nunc efficitur finibus.

Nunc vel vehicula nunc, non lacinia elit. Proin gravida tristique odio non gravida. Sed molestie fermentum congue. Vivamus vestibulum aliquet nunc sit amet finibus. Ut rhoncus mauris at felis aliquet, mollis euismod massa egestas. Cras maximus in velit et auctor. Vivamus in venenatis eros. Etiam rhoncus erat auctor velit eleifend eleifend. Fusce lectus erat, blandit et felis vitae, sagittis sodales erat. Donec non congue est. Etiam commodo ante ac dui viverra, volutpat tincidunt felis venenatis. Sed a nisi sed lorem porta gravida tincidunt et ex.

',2,9,8); -/*!40000 ALTER TABLE `SilverStripe_Lessons_Region` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_Region_Live` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_Region_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_Region_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\Lessons\\Region') DEFAULT 'SilverStripe\\Lessons\\Region', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `Description` mediumtext, - `Version` int(11) NOT NULL DEFAULT '0', - `PhotoID` int(11) NOT NULL DEFAULT '0', - `RegionsPageID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `PhotoID` (`PhotoID`), - KEY `RegionsPageID` (`RegionsPageID`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_Region_Live` --- - -LOCK TABLES `SilverStripe_Lessons_Region_Live` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_Region_Live` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_Region_Live` VALUES (1,'SilverStripe\\Lessons\\Region','2017-09-26 12:27:46','2017-09-14 15:26:25','The Northeast','

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque massa felis, hendrerit non tempor quis, hendrerit non sem. Praesent ornare arcu mattis libero sollicitudin, vel dignissim enim placerat. Proin nec risus nulla. Pellentesque quis nulla vitae lorem porta cursus. Aliquam egestas mi ut sem molestie feugiat. Donec maximus facilisis nibh, ultricies placerat lacus cursus eget. Aliquam facilisis est et est bibendum, sed convallis neque cursus. Cras posuere accumsan nibh nec interdum. Vestibulum quam ligula, dignissim vitae tincidunt sit amet, efficitur eleifend libero. Duis quis faucibus tortor. Mauris et scelerisque orci. Phasellus eu neque viverra, pulvinar urna sit amet, hendrerit felis. Morbi id finibus arcu. Etiam nulla felis, auctor quis ultrices in, iaculis sed libero. Phasellus commodo libero vel elit mattis, ac consectetur leo euismod. Nullam feugiat eget nunc tristique vehicula.

Aliquam leo augue, tempor scelerisque nisi at, gravida pharetra leo. Phasellus tincidunt velit lectus, ac ullamcorper augue bibendum eu. Nulla eu mauris purus. Praesent purus turpis, iaculis in ligula sed, lobortis ornare leo. Suspendisse tincidunt, dolor at feugiat ornare, magna nibh blandit turpis, eget placerat nunc mauris quis ante. Phasellus est ante, commodo et massa at, aliquam bibendum nunc. Nulla facilisi. Nulla sagittis est vitae diam fringilla, vitae posuere orci dictum.

',2,11,8),(2,'SilverStripe\\Lessons\\Region','2017-09-26 12:28:06','2017-09-14 15:26:48','The Southeast','

Maecenas fringilla nisl eu orci molestie, euismod pretium velit egestas. Aenean ut tortor luctus, vehicula mauris sit amet, mollis libero. Phasellus sit amet tortor et odio semper congue id eu velit. Aliquam cursus pharetra lectus, et tristique felis elementum id. Vestibulum vel porttitor nisl. Duis blandit nibh risus, id sodales magna consectetur sit amet. Maecenas eget congue lorem. Donec quis magna neque. Aliquam in cursus tortor.

Integer eget fringilla sem, quis faucibus dui. Fusce pretium nunc sit amet magna faucibus, faucibus ornare diam bibendum. Aenean tristique maximus justo, semper interdum odio pellentesque vel. Aenean et condimentum nibh, in congue enim. Aenean erat lorem, rutrum nec lorem vel, euismod dignissim odio. Nullam vitae leo purus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec tincidunt sapien at molestie venenatis. In vehicula faucibus arcu. Maecenas eget dolor ullamcorper, ultricies diam condimentum, rhoncus enim. Aliquam rutrum odio turpis. Aenean eu ligula odio. Maecenas non facilisis enim. Maecenas cursus a sapien non feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

',2,10,8),(3,'SilverStripe\\Lessons\\Region','2017-09-26 12:28:42','2017-09-14 15:27:19','The Southwest','

Praesent a sagittis diam. Mauris fermentum urna eget molestie tincidunt. Praesent in pharetra urna, eget faucibus ligula. Donec velit augue, tincidunt vitae nulla a, rhoncus blandit odio. Suspendisse rutrum metus non leo scelerisque, vel dictum ipsum maximus. Pellentesque eu eros imperdiet, sollicitudin orci vel, aliquet odio. In feugiat scelerisque augue quis mollis. Donec sit amet mi eu arcu sodales fringilla nec vitae nisi. Fusce pretium, urna non consectetur pulvinar, enim justo porttitor ligula, vitae malesuada mauris nisl ut sem. Praesent nibh nunc, porta in pharetra a, pretium tincidunt tortor. Quisque ac dictum arcu. Quisque lacinia rutrum consectetur. Fusce tristique turpis metus, ut tristique enim eleifend a. Curabitur imperdiet dapibus felis in mollis. In blandit a augue volutpat venenatis.

Sed viverra id dui a dictum. Ut id mauris elementum, mollis urna ac, ultrices arcu. Vivamus ac nibh non turpis convallis mattis. Integer vitae volutpat mi. Quisque mi lectus, ornare eu lacinia nec, tincidunt id orci. Nam dictum risus nisl, a pulvinar quam tempor sit amet. Suspendisse eu orci elit. Maecenas cursus fringilla felis, eu dapibus magna blandit ut. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer sollicitudin ipsum quis enim luctus lobortis. Phasellus at pharetra justo.

Fusce at magna turpis. Vivamus varius posuere tortor. Donec fermentum velit eget nisl mattis sollicitudin. Suspendisse sagittis augue in lectus finibus pulvinar. Donec placerat tellus at accumsan cursus. Vestibulum nec rhoncus odio, sed feugiat lectus. Phasellus euismod pretium finibus. In rutrum nisl efficitur dapibus malesuada. Duis et eros tempor mauris tristique feugiat. Nulla quis mi sed lacus volutpat commodo.

',2,8,8),(4,'SilverStripe\\Lessons\\Region','2017-09-26 12:29:14','2017-09-14 15:27:38','The Northwest','

Cras ultricies sagittis ante, et sodales eros tempor id. Maecenas et dapibus velit. Nunc lobortis commodo blandit. Proin ullamcorper dignissim nisi quis posuere. Praesent augue elit, vulputate eget odio eu, ultrices venenatis leo. Donec finibus sem id est imperdiet, id imperdiet felis tempor. Quisque feugiat purus a feugiat suscipit. Phasellus ornare id turpis et suscipit. Nulla scelerisque ipsum porta, vestibulum enim ac, semper lacus. In varius et leo sit amet lobortis. Mauris elementum ut felis eget accumsan. Morbi dictum nunc eget sem aliquam, id tempus velit placerat. Vestibulum scelerisque ligula tristique arcu varius dapibus.

Nulla faucibus ante ut urna laoreet sodales. Nam congue arcu eu elit varius, vitae aliquet lacus tempus. Sed et leo hendrerit, aliquam ipsum a, aliquet massa. Suspendisse pellentesque, massa sed viverra pharetra, turpis orci dapibus lorem, eu sodales tortor sapien ac justo. Nullam lacus ex, commodo eu odio vel, pellentesque gravida nibh. Donec ut fringilla felis. Sed id metus id neque euismod euismod. Aliquam eget dui eleifend, tincidunt orci et, tempor nisl. Nunc a odio libero. Suspendisse mollis erat id pellentesque ullamcorper. Fusce nec magna eu nunc efficitur finibus.

Nunc vel vehicula nunc, non lacinia elit. Proin gravida tristique odio non gravida. Sed molestie fermentum congue. Vivamus vestibulum aliquet nunc sit amet finibus. Ut rhoncus mauris at felis aliquet, mollis euismod massa egestas. Cras maximus in velit et auctor. Vivamus in venenatis eros. Etiam rhoncus erat auctor velit eleifend eleifend. Fusce lectus erat, blandit et felis vitae, sagittis sodales erat. Donec non congue est. Etiam commodo ante ac dui viverra, volutpat tincidunt felis venenatis. Sed a nisi sed lorem porta gravida tincidunt et ex.

',2,9,8); -/*!40000 ALTER TABLE `SilverStripe_Lessons_Region_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SilverStripe_Lessons_Region_Versions` --- - -DROP TABLE IF EXISTS `SilverStripe_Lessons_Region_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SilverStripe_Lessons_Region_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', - `AuthorID` int(11) NOT NULL DEFAULT '0', - `PublisherID` int(11) NOT NULL DEFAULT '0', - `ClassName` enum('SilverStripe\\Lessons\\Region') DEFAULT 'SilverStripe\\Lessons\\Region', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `Description` mediumtext, - `PhotoID` int(11) NOT NULL DEFAULT '0', - `RegionsPageID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `AuthorID` (`AuthorID`), - KEY `PublisherID` (`PublisherID`), - KEY `ClassName` (`ClassName`), - KEY `PhotoID` (`PhotoID`), - KEY `RegionsPageID` (`RegionsPageID`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SilverStripe_Lessons_Region_Versions` --- - -LOCK TABLES `SilverStripe_Lessons_Region_Versions` WRITE; -/*!40000 ALTER TABLE `SilverStripe_Lessons_Region_Versions` DISABLE KEYS */; -INSERT INTO `SilverStripe_Lessons_Region_Versions` VALUES (1,1,1,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-14 15:26:25','2017-09-14 15:26:25','The Northeast','This is the description of the northeast.',11,8),(2,2,1,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-14 15:26:48','2017-09-14 15:26:48','The Southeast','This is a description of the southeast.',10,8),(3,3,1,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-14 15:27:19','2017-09-14 15:27:19','The Southwest','This is the description of the southwest.',8,8),(4,4,1,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-14 15:27:38','2017-09-14 15:27:38','The Northwest','This is the description of the northwest.',9,8),(5,1,2,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-26 12:27:46','2017-09-14 15:26:25','The Northeast','

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque massa felis, hendrerit non tempor quis, hendrerit non sem. Praesent ornare arcu mattis libero sollicitudin, vel dignissim enim placerat. Proin nec risus nulla. Pellentesque quis nulla vitae lorem porta cursus. Aliquam egestas mi ut sem molestie feugiat. Donec maximus facilisis nibh, ultricies placerat lacus cursus eget. Aliquam facilisis est et est bibendum, sed convallis neque cursus. Cras posuere accumsan nibh nec interdum. Vestibulum quam ligula, dignissim vitae tincidunt sit amet, efficitur eleifend libero. Duis quis faucibus tortor. Mauris et scelerisque orci. Phasellus eu neque viverra, pulvinar urna sit amet, hendrerit felis. Morbi id finibus arcu. Etiam nulla felis, auctor quis ultrices in, iaculis sed libero. Phasellus commodo libero vel elit mattis, ac consectetur leo euismod. Nullam feugiat eget nunc tristique vehicula.

Aliquam leo augue, tempor scelerisque nisi at, gravida pharetra leo. Phasellus tincidunt velit lectus, ac ullamcorper augue bibendum eu. Nulla eu mauris purus. Praesent purus turpis, iaculis in ligula sed, lobortis ornare leo. Suspendisse tincidunt, dolor at feugiat ornare, magna nibh blandit turpis, eget placerat nunc mauris quis ante. Phasellus est ante, commodo et massa at, aliquam bibendum nunc. Nulla facilisi. Nulla sagittis est vitae diam fringilla, vitae posuere orci dictum.

',11,8),(6,2,2,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-26 12:28:06','2017-09-14 15:26:48','The Southeast','

Maecenas fringilla nisl eu orci molestie, euismod pretium velit egestas. Aenean ut tortor luctus, vehicula mauris sit amet, mollis libero. Phasellus sit amet tortor et odio semper congue id eu velit. Aliquam cursus pharetra lectus, et tristique felis elementum id. Vestibulum vel porttitor nisl. Duis blandit nibh risus, id sodales magna consectetur sit amet. Maecenas eget congue lorem. Donec quis magna neque. Aliquam in cursus tortor.

Integer eget fringilla sem, quis faucibus dui. Fusce pretium nunc sit amet magna faucibus, faucibus ornare diam bibendum. Aenean tristique maximus justo, semper interdum odio pellentesque vel. Aenean et condimentum nibh, in congue enim. Aenean erat lorem, rutrum nec lorem vel, euismod dignissim odio. Nullam vitae leo purus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec tincidunt sapien at molestie venenatis. In vehicula faucibus arcu. Maecenas eget dolor ullamcorper, ultricies diam condimentum, rhoncus enim. Aliquam rutrum odio turpis. Aenean eu ligula odio. Maecenas non facilisis enim. Maecenas cursus a sapien non feugiat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

',10,8),(7,3,2,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-26 12:28:42','2017-09-14 15:27:19','The Southwest','

Praesent a sagittis diam. Mauris fermentum urna eget molestie tincidunt. Praesent in pharetra urna, eget faucibus ligula. Donec velit augue, tincidunt vitae nulla a, rhoncus blandit odio. Suspendisse rutrum metus non leo scelerisque, vel dictum ipsum maximus. Pellentesque eu eros imperdiet, sollicitudin orci vel, aliquet odio. In feugiat scelerisque augue quis mollis. Donec sit amet mi eu arcu sodales fringilla nec vitae nisi. Fusce pretium, urna non consectetur pulvinar, enim justo porttitor ligula, vitae malesuada mauris nisl ut sem. Praesent nibh nunc, porta in pharetra a, pretium tincidunt tortor. Quisque ac dictum arcu. Quisque lacinia rutrum consectetur. Fusce tristique turpis metus, ut tristique enim eleifend a. Curabitur imperdiet dapibus felis in mollis. In blandit a augue volutpat venenatis.

Sed viverra id dui a dictum. Ut id mauris elementum, mollis urna ac, ultrices arcu. Vivamus ac nibh non turpis convallis mattis. Integer vitae volutpat mi. Quisque mi lectus, ornare eu lacinia nec, tincidunt id orci. Nam dictum risus nisl, a pulvinar quam tempor sit amet. Suspendisse eu orci elit. Maecenas cursus fringilla felis, eu dapibus magna blandit ut. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer sollicitudin ipsum quis enim luctus lobortis. Phasellus at pharetra justo.

Fusce at magna turpis. Vivamus varius posuere tortor. Donec fermentum velit eget nisl mattis sollicitudin. Suspendisse sagittis augue in lectus finibus pulvinar. Donec placerat tellus at accumsan cursus. Vestibulum nec rhoncus odio, sed feugiat lectus. Phasellus euismod pretium finibus. In rutrum nisl efficitur dapibus malesuada. Duis et eros tempor mauris tristique feugiat. Nulla quis mi sed lacus volutpat commodo.

',8,8),(8,4,2,1,1,1,'SilverStripe\\Lessons\\Region','2017-09-26 12:29:14','2017-09-14 15:27:38','The Northwest','

Cras ultricies sagittis ante, et sodales eros tempor id. Maecenas et dapibus velit. Nunc lobortis commodo blandit. Proin ullamcorper dignissim nisi quis posuere. Praesent augue elit, vulputate eget odio eu, ultrices venenatis leo. Donec finibus sem id est imperdiet, id imperdiet felis tempor. Quisque feugiat purus a feugiat suscipit. Phasellus ornare id turpis et suscipit. Nulla scelerisque ipsum porta, vestibulum enim ac, semper lacus. In varius et leo sit amet lobortis. Mauris elementum ut felis eget accumsan. Morbi dictum nunc eget sem aliquam, id tempus velit placerat. Vestibulum scelerisque ligula tristique arcu varius dapibus.

Nulla faucibus ante ut urna laoreet sodales. Nam congue arcu eu elit varius, vitae aliquet lacus tempus. Sed et leo hendrerit, aliquam ipsum a, aliquet massa. Suspendisse pellentesque, massa sed viverra pharetra, turpis orci dapibus lorem, eu sodales tortor sapien ac justo. Nullam lacus ex, commodo eu odio vel, pellentesque gravida nibh. Donec ut fringilla felis. Sed id metus id neque euismod euismod. Aliquam eget dui eleifend, tincidunt orci et, tempor nisl. Nunc a odio libero. Suspendisse mollis erat id pellentesque ullamcorper. Fusce nec magna eu nunc efficitur finibus.

Nunc vel vehicula nunc, non lacinia elit. Proin gravida tristique odio non gravida. Sed molestie fermentum congue. Vivamus vestibulum aliquet nunc sit amet finibus. Ut rhoncus mauris at felis aliquet, mollis euismod massa egestas. Cras maximus in velit et auctor. Vivamus in venenatis eros. Etiam rhoncus erat auctor velit eleifend eleifend. Fusce lectus erat, blandit et felis vitae, sagittis sodales erat. Donec non congue est. Etiam commodo ante ac dui viverra, volutpat tincidunt felis venenatis. Sed a nisi sed lorem porta gravida tincidunt et ex.

',9,8); -/*!40000 ALTER TABLE `SilverStripe_Lessons_Region_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteConfig` --- - -DROP TABLE IF EXISTS `SiteConfig`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteConfig` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\SiteConfig\\SiteConfig') DEFAULT 'SilverStripe\\SiteConfig\\SiteConfig', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `Tagline` varchar(255) DEFAULT NULL, - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers') DEFAULT 'Anyone', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers') DEFAULT 'LoggedInUsers', - `CanCreateTopLevelType` enum('LoggedInUsers','OnlyTheseUsers') DEFAULT 'LoggedInUsers', - `FacebookLink` varchar(255) DEFAULT NULL, - `TwitterLink` varchar(255) DEFAULT NULL, - `GoogleLink` varchar(255) DEFAULT NULL, - `YouTubeLink` varchar(255) DEFAULT NULL, - `FooterContent` mediumtext, - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteConfig` --- - -LOCK TABLES `SiteConfig` WRITE; -/*!40000 ALTER TABLE `SiteConfig` DISABLE KEYS */; -INSERT INTO `SiteConfig` VALUES (1,'SilverStripe\\SiteConfig\\SiteConfig','2017-09-25 13:56:01','2017-09-12 11:04:00','Your Site Name','your tagline here','Anyone','LoggedInUsers','LoggedInUsers','https://facebook.com','https://twitter.com','https://google.com','https://youtube.com',NULL); -/*!40000 ALTER TABLE `SiteConfig` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteConfig_CreateTopLevelGroups` --- - -DROP TABLE IF EXISTS `SiteConfig_CreateTopLevelGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteConfig_CreateTopLevelGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteConfigID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `SiteConfigID` (`SiteConfigID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteConfig_CreateTopLevelGroups` --- - -LOCK TABLES `SiteConfig_CreateTopLevelGroups` WRITE; -/*!40000 ALTER TABLE `SiteConfig_CreateTopLevelGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteConfig_CreateTopLevelGroups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteConfig_EditorGroups` --- - -DROP TABLE IF EXISTS `SiteConfig_EditorGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteConfig_EditorGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteConfigID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `SiteConfigID` (`SiteConfigID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteConfig_EditorGroups` --- - -LOCK TABLES `SiteConfig_EditorGroups` WRITE; -/*!40000 ALTER TABLE `SiteConfig_EditorGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteConfig_EditorGroups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteConfig_ViewerGroups` --- - -DROP TABLE IF EXISTS `SiteConfig_ViewerGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteConfig_ViewerGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteConfigID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `SiteConfigID` (`SiteConfigID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteConfig_ViewerGroups` --- - -LOCK TABLES `SiteConfig_ViewerGroups` WRITE; -/*!40000 ALTER TABLE `SiteConfig_ViewerGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteConfig_ViewerGroups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree` --- - -DROP TABLE IF EXISTS `SiteTree`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Lessons\\ArticleHolder','SilverStripe\\Lessons\\ArticlePage','SilverStripe\\Lessons\\HomePage','SilverStripe\\Lessons\\PropertySearchPage','SilverStripe\\Lessons\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'Page', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `URLSegment` varchar(255) DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `MenuTitle` varchar(100) DEFAULT NULL, - `Content` mediumtext, - `MetaDescription` mediumtext, - `ExtraMeta` mediumtext, - `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT '0', - `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Sort` int(11) NOT NULL DEFAULT '0', - `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT '0', - `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT '0', - `ReportClass` varchar(255) DEFAULT NULL, - `Version` int(11) NOT NULL DEFAULT '0', - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `ParentID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`), - KEY `URLSegment` (`URLSegment`) -) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree` --- - -LOCK TABLES `SiteTree` WRITE; -/*!40000 ALTER TABLE `SiteTree` DISABLE KEYS */; -INSERT INTO `SiteTree` VALUES (1,'SilverStripe\\Lessons\\HomePage','2017-09-12 15:51:23','2017-09-12 11:04:00','home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,2,'Inherit','Inherit',0),(2,'Page','2017-09-13 11:40:37','2017-09-12 11:04:00','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,3,'Inherit','Inherit',0),(4,'SilverStripe\\ErrorPage\\ErrorPage','2017-09-12 11:04:00','2017-09-12 11:04:00','page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,8,0,0,NULL,1,'Inherit','Inherit',0),(5,'SilverStripe\\ErrorPage\\ErrorPage','2017-09-12 11:04:00','2017-09-12 11:04:00','server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,9,0,0,NULL,1,'Inherit','Inherit',0),(6,'SilverStripe\\Lessons\\PropertySearchPage','2017-09-26 12:48:23','2017-09-13 11:36:49','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,4,'Inherit','Inherit',0),(7,'Page','2017-09-13 11:40:30','2017-09-13 11:38:12','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,4,'Inherit','Inherit',0),(8,'SilverStripe\\Lessons\\RegionsPage','2017-09-14 14:12:16','2017-09-13 11:38:38','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,5,'Inherit','Inherit',0),(9,'SilverStripe\\Lessons\\ArticleHolder','2017-09-13 11:40:30','2017-09-13 11:38:51','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,5,'Inherit','Inherit',0),(12,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:22','2017-09-27 11:57:15','expedita-nam-facilis-velit-provident-consectetur','Expedita nam facilis velit provident consectetur',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,2,'Inherit','Inherit',9),(13,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:22','2017-09-27 11:57:16','qui-ea','Qui ea',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,2,'Inherit','Inherit',9),(14,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','non-dignissimos-molestiae','Non dignissimos molestiae',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,2,'Inherit','Inherit',9),(15,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','rerum-delectus-qui-a-eum-enim','Rerum delectus qui a eum enim',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,2,'Inherit','Inherit',9),(16,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','expedita-excepturi-placeat-excepturi','Expedita excepturi placeat excepturi',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,2,'Inherit','Inherit',9),(17,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','nemo-adipisci-molestiae-autem-beatae-atque','Nemo adipisci molestiae autem beatae atque',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,2,'Inherit','Inherit',9),(18,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','ut-hic-laboriosam-laborum','Ut hic laboriosam laborum',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,2,'Inherit','Inherit',9),(19,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','vitae-vel-itaque-perferendis','Vitae vel itaque perferendis',NULL,NULL,NULL,NULL,1,1,10,0,0,NULL,2,'Inherit','Inherit',9),(20,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','inventore-labore-reprehenderit-quia-iste','Inventore labore reprehenderit quia iste',NULL,NULL,NULL,NULL,1,1,11,0,0,NULL,2,'Inherit','Inherit',9),(21,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','consequatur-ab-voluptatem-excepturi','Consequatur ab voluptatem excepturi',NULL,NULL,NULL,NULL,1,1,12,0,0,NULL,2,'Inherit','Inherit',9),(22,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','eaque-dolores-facere-totam-non-sed','Eaque dolores facere totam non sed',NULL,NULL,NULL,NULL,1,1,13,0,0,NULL,2,'Inherit','Inherit',9),(23,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','sequi-enim-sit','Sequi enim sit',NULL,NULL,NULL,NULL,1,1,14,0,0,NULL,2,'Inherit','Inherit',9),(24,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','alias-quia','Alias quia',NULL,NULL,NULL,NULL,1,1,15,0,0,NULL,2,'Inherit','Inherit',9),(25,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','non-nesciunt-voluptatem-beatae-placeat-aut','Non nesciunt voluptatem beatae placeat aut',NULL,NULL,NULL,NULL,1,1,16,0,0,NULL,2,'Inherit','Inherit',9),(26,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','et-dolorem-sint-consectetur-aut-similique','Et dolorem sint consectetur aut similique',NULL,NULL,NULL,NULL,1,1,17,0,0,NULL,2,'Inherit','Inherit',9),(27,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','repellat-consequatur','Repellat consequatur',NULL,NULL,NULL,NULL,1,1,18,0,0,NULL,2,'Inherit','Inherit',9),(28,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','dicta-ea-qui-quae-sunt-aut','Dicta ea qui quae sunt aut',NULL,NULL,NULL,NULL,1,1,19,0,0,NULL,2,'Inherit','Inherit',9),(29,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','accusamus-laborum-eius','Accusamus laborum eius',NULL,NULL,NULL,NULL,1,1,20,0,0,NULL,2,'Inherit','Inherit',9),(30,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','repellat-aperiam-ipsum-voluptatem','Repellat aperiam ipsum voluptatem',NULL,NULL,NULL,NULL,1,1,21,0,0,NULL,2,'Inherit','Inherit',9),(31,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','recusandae-magnam-iste-qui','Recusandae magnam iste qui',NULL,NULL,NULL,NULL,1,1,22,0,0,NULL,2,'Inherit','Inherit',9),(32,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','ut-est-dolor-eveniet','Ut est dolor eveniet',NULL,NULL,NULL,NULL,1,1,23,0,0,NULL,2,'Inherit','Inherit',9),(33,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','illo-repellat-suscipit-esse','Illo repellat suscipit esse',NULL,NULL,NULL,NULL,1,1,24,0,0,NULL,2,'Inherit','Inherit',9),(34,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','nihil-itaque-et-beatae','Nihil itaque et beatae',NULL,NULL,NULL,NULL,1,1,25,0,0,NULL,2,'Inherit','Inherit',9),(35,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','et-eveniet','Et eveniet',NULL,NULL,NULL,NULL,1,1,26,0,0,NULL,2,'Inherit','Inherit',9),(36,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','et-ullam-quis-magni-quod-deleniti','Et ullam quis magni quod deleniti',NULL,NULL,NULL,NULL,1,1,27,0,0,NULL,2,'Inherit','Inherit',9),(37,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','maiores-optio-quaerat-a-ad-facere','Maiores optio quaerat a ad facere',NULL,NULL,NULL,NULL,1,1,28,0,0,NULL,2,'Inherit','Inherit',9),(38,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','explicabo-tempora-non-velit','Explicabo tempora non velit',NULL,NULL,NULL,NULL,1,1,29,0,0,NULL,2,'Inherit','Inherit',9),(39,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','dolorem-quis','Dolorem quis',NULL,NULL,NULL,NULL,1,1,30,0,0,NULL,2,'Inherit','Inherit',9),(40,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','ipsa-et-enim-eum','Ipsa et enim eum',NULL,NULL,NULL,NULL,1,1,31,0,0,NULL,2,'Inherit','Inherit',9),(41,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','et-qui','Et qui',NULL,NULL,NULL,NULL,1,1,32,0,0,NULL,2,'Inherit','Inherit',9),(42,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','architecto-repellat-suscipit-accusantium-magni-hic','Architecto repellat suscipit accusantium magni hic',NULL,NULL,NULL,NULL,1,1,33,0,0,NULL,2,'Inherit','Inherit',9),(43,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','repudiandae-ipsam-incidunt-modi','Repudiandae ipsam incidunt modi',NULL,NULL,NULL,NULL,1,1,34,0,0,NULL,2,'Inherit','Inherit',9),(44,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','dolore-sequi-iste','Dolore sequi iste',NULL,NULL,NULL,NULL,1,1,35,0,0,NULL,2,'Inherit','Inherit',9),(45,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','modi-sit-voluptas','Modi sit voluptas',NULL,NULL,NULL,NULL,1,1,36,0,0,NULL,2,'Inherit','Inherit',9),(46,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','et-autem-quidem-est-culpa-sint','Et autem quidem est culpa sint',NULL,NULL,NULL,NULL,1,1,37,0,0,NULL,2,'Inherit','Inherit',9),(47,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','vel-ea','Vel ea',NULL,NULL,NULL,NULL,1,1,38,0,0,NULL,2,'Inherit','Inherit',9),(48,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','quis-qui','Quis qui',NULL,NULL,NULL,NULL,1,1,39,0,0,NULL,2,'Inherit','Inherit',9),(49,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','cum-quis-blanditiis','Cum quis blanditiis',NULL,NULL,NULL,NULL,1,1,40,0,0,NULL,2,'Inherit','Inherit',9),(50,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','iste-provident-aperiam-accusamus','Iste provident aperiam accusamus',NULL,NULL,NULL,NULL,1,1,41,0,0,NULL,2,'Inherit','Inherit',9),(51,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','explicabo-et','Explicabo et',NULL,NULL,NULL,NULL,1,1,42,0,0,NULL,2,'Inherit','Inherit',9),(52,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','excepturi-neque-ut-labore-nemo','Excepturi neque ut labore nemo',NULL,NULL,NULL,NULL,1,1,43,0,0,NULL,2,'Inherit','Inherit',9),(53,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','ea-eligendi-consectetur','Ea eligendi consectetur',NULL,NULL,NULL,NULL,1,1,44,0,0,NULL,2,'Inherit','Inherit',9),(54,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','autem-sunt','Autem sunt',NULL,NULL,NULL,NULL,1,1,45,0,0,NULL,2,'Inherit','Inherit',9),(55,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','voluptatem-nobis-itaque','Voluptatem nobis itaque',NULL,NULL,NULL,NULL,1,1,46,0,0,NULL,2,'Inherit','Inherit',9),(56,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','nesciunt-quia-porro-sapiente','Nesciunt quia porro sapiente',NULL,NULL,NULL,NULL,1,1,47,0,0,NULL,2,'Inherit','Inherit',9),(57,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','possimus-fugit-molestiae-est-et','Possimus fugit molestiae est et',NULL,NULL,NULL,NULL,1,1,48,0,0,NULL,2,'Inherit','Inherit',9),(58,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','id-sequi-facere','Id sequi facere',NULL,NULL,NULL,NULL,1,1,49,0,0,NULL,2,'Inherit','Inherit',9),(59,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','porro-natus','Porro natus',NULL,NULL,NULL,NULL,1,1,50,0,0,NULL,2,'Inherit','Inherit',9),(60,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','eaque-sunt-doloribus','Eaque sunt doloribus',NULL,NULL,NULL,NULL,1,1,51,0,0,NULL,2,'Inherit','Inherit',9),(61,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','vitae-in-ipsa','Vitae in ipsa',NULL,NULL,NULL,NULL,1,1,52,0,0,NULL,2,'Inherit','Inherit',9),(62,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','perferendis-sapiente-voluptatem-ea-dolorum-tempora','Perferendis sapiente voluptatem ea dolorum tempora',NULL,NULL,NULL,NULL,1,1,53,0,0,NULL,2,'Inherit','Inherit',9),(63,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','architecto-quisquam','Architecto quisquam',NULL,NULL,NULL,NULL,1,1,54,0,0,NULL,2,'Inherit','Inherit',9),(64,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','aspernatur-sit-maiores-numquam-odit','Aspernatur sit maiores numquam odit',NULL,NULL,NULL,NULL,1,1,55,0,0,NULL,2,'Inherit','Inherit',9),(65,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','sit-ea','Sit ea',NULL,NULL,NULL,NULL,1,1,56,0,0,NULL,2,'Inherit','Inherit',9),(66,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','odio-natus-tempore-omnis','Odio natus tempore omnis',NULL,NULL,NULL,NULL,1,1,57,0,0,NULL,2,'Inherit','Inherit',9),(67,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','ex-aut-et-ut-animi','Ex aut et ut animi',NULL,NULL,NULL,NULL,1,1,58,0,0,NULL,2,'Inherit','Inherit',9),(68,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','sapiente-placeat-nihil-consequuntur','Sapiente placeat nihil consequuntur',NULL,NULL,NULL,NULL,1,1,59,0,0,NULL,2,'Inherit','Inherit',9),(69,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','voluptatem-quia-inventore-sequi-quam','Voluptatem quia inventore sequi quam',NULL,NULL,NULL,NULL,1,1,60,0,0,NULL,2,'Inherit','Inherit',9),(70,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','rerum-asperiores','Rerum asperiores',NULL,NULL,NULL,NULL,1,1,61,0,0,NULL,2,'Inherit','Inherit',9),(71,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','non-dignissimos-illum','Non dignissimos illum',NULL,NULL,NULL,NULL,1,1,62,0,0,NULL,2,'Inherit','Inherit',9),(72,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','neque-molestias-ipsa','Neque molestias ipsa',NULL,NULL,NULL,NULL,1,1,63,0,0,NULL,2,'Inherit','Inherit',9),(73,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','maxime-dolores','Maxime dolores',NULL,NULL,NULL,NULL,1,1,64,0,0,NULL,2,'Inherit','Inherit',9),(74,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','sed-labore-iure','Sed labore iure',NULL,NULL,NULL,NULL,1,1,65,0,0,NULL,2,'Inherit','Inherit',9),(75,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','eligendi-nulla-eveniet-voluptatum-eius-sint','Eligendi nulla eveniet voluptatum eius sint',NULL,NULL,NULL,NULL,1,1,66,0,0,NULL,2,'Inherit','Inherit',9),(76,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','consectetur-est-alias-repellat-fugit','Consectetur est alias repellat fugit',NULL,NULL,NULL,NULL,1,1,67,0,0,NULL,2,'Inherit','Inherit',9),(77,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','aut-esse','Aut esse',NULL,NULL,NULL,NULL,1,1,68,0,0,NULL,2,'Inherit','Inherit',9),(78,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','nesciunt-rerum-voluptas','Nesciunt rerum voluptas',NULL,NULL,NULL,NULL,1,1,69,0,0,NULL,2,'Inherit','Inherit',9),(79,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','doloribus-soluta-eius-optio','Doloribus soluta eius optio',NULL,NULL,NULL,NULL,1,1,70,0,0,NULL,2,'Inherit','Inherit',9),(80,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','ratione-est','Ratione est',NULL,NULL,NULL,NULL,1,1,71,0,0,NULL,2,'Inherit','Inherit',9),(81,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','officiis-ipsam-eius','Officiis ipsam eius',NULL,NULL,NULL,NULL,1,1,72,0,0,NULL,2,'Inherit','Inherit',9),(82,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','itaque-molestiae-aperiam-soluta','Itaque molestiae aperiam soluta',NULL,NULL,NULL,NULL,1,1,73,0,0,NULL,2,'Inherit','Inherit',9),(83,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','debitis-id-reprehenderit','Debitis id reprehenderit',NULL,NULL,NULL,NULL,1,1,74,0,0,NULL,2,'Inherit','Inherit',9),(84,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','reiciendis-optio-error-eum-omnis-vel','Reiciendis optio error eum omnis vel',NULL,NULL,NULL,NULL,1,1,75,0,0,NULL,2,'Inherit','Inherit',9),(85,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','cumque-et-commodi-blanditiis-culpa-ad','Cumque et commodi blanditiis culpa ad',NULL,NULL,NULL,NULL,1,1,76,0,0,NULL,2,'Inherit','Inherit',9),(86,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','eveniet-debitis','Eveniet debitis',NULL,NULL,NULL,NULL,1,1,77,0,0,NULL,2,'Inherit','Inherit',9),(87,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','omnis-dignissimos','Omnis dignissimos',NULL,NULL,NULL,NULL,1,1,78,0,0,NULL,2,'Inherit','Inherit',9),(88,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','facere-qui-suscipit-et','Facere qui suscipit et',NULL,NULL,NULL,NULL,1,1,79,0,0,NULL,2,'Inherit','Inherit',9),(89,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','sapiente-autem-est-alias-veniam','Sapiente autem est alias veniam',NULL,NULL,NULL,NULL,1,1,80,0,0,NULL,2,'Inherit','Inherit',9),(90,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','similique-rerum-assumenda-quaerat-officiis-consequatur','Similique rerum assumenda quaerat officiis consequatur',NULL,NULL,NULL,NULL,1,1,81,0,0,NULL,2,'Inherit','Inherit',9),(91,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','autem-libero-molestiae-quod','Autem libero molestiae quod',NULL,NULL,NULL,NULL,1,1,82,0,0,NULL,2,'Inherit','Inherit',9),(92,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','culpa-tempore-ullam-ipsum','Culpa tempore ullam ipsum',NULL,NULL,NULL,NULL,1,1,83,0,0,NULL,2,'Inherit','Inherit',9),(93,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','debitis-nihil','Debitis nihil',NULL,NULL,NULL,NULL,1,1,84,0,0,NULL,2,'Inherit','Inherit',9),(94,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','et-consequatur-laboriosam','Et consequatur laboriosam',NULL,NULL,NULL,NULL,1,1,85,0,0,NULL,2,'Inherit','Inherit',9),(95,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','repellat-sed-a-ut-cumque','Repellat sed a ut cumque',NULL,NULL,NULL,NULL,1,1,86,0,0,NULL,2,'Inherit','Inherit',9),(96,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','voluptas-dolor-voluptatem-adipisci','Voluptas dolor voluptatem adipisci',NULL,NULL,NULL,NULL,1,1,87,0,0,NULL,2,'Inherit','Inherit',9),(97,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','cupiditate-voluptas','Cupiditate voluptas',NULL,NULL,NULL,NULL,1,1,88,0,0,NULL,2,'Inherit','Inherit',9),(98,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','consequatur-sit-praesentium','Consequatur sit praesentium',NULL,NULL,NULL,NULL,1,1,89,0,0,NULL,2,'Inherit','Inherit',9),(99,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','similique-sit-et-dolor','Similique sit et dolor',NULL,NULL,NULL,NULL,1,1,90,0,0,NULL,2,'Inherit','Inherit',9),(100,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','ut-perferendis-aut','Ut perferendis aut',NULL,NULL,NULL,NULL,1,1,91,0,0,NULL,2,'Inherit','Inherit',9),(101,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','dolorem-cumque-eligendi-nesciunt-animi-et','Dolorem cumque eligendi nesciunt animi et',NULL,NULL,NULL,NULL,1,1,92,0,0,NULL,2,'Inherit','Inherit',9),(102,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','ducimus-quia-veritatis','Ducimus quia veritatis',NULL,NULL,NULL,NULL,1,1,93,0,0,NULL,2,'Inherit','Inherit',9),(103,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','dignissimos-mollitia','Dignissimos mollitia',NULL,NULL,NULL,NULL,1,1,94,0,0,NULL,2,'Inherit','Inherit',9),(104,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','error-ut-culpa','Error ut culpa',NULL,NULL,NULL,NULL,1,1,95,0,0,NULL,2,'Inherit','Inherit',9),(105,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','nam-repudiandae-accusamus','Nam repudiandae accusamus',NULL,NULL,NULL,NULL,1,1,96,0,0,NULL,2,'Inherit','Inherit',9),(106,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','et-laborum-voluptatum-quo-ratione-a','Et laborum voluptatum quo ratione a',NULL,NULL,NULL,NULL,1,1,97,0,0,NULL,2,'Inherit','Inherit',9),(107,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','autem-animi-omnis-laborum-aliquam','Autem animi omnis laborum aliquam',NULL,NULL,NULL,NULL,1,1,98,0,0,NULL,2,'Inherit','Inherit',9),(108,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','a-dignissimos','A dignissimos',NULL,NULL,NULL,NULL,1,1,99,0,0,NULL,2,'Inherit','Inherit',9),(109,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','unde-officiis','Unde officiis',NULL,NULL,NULL,NULL,1,1,100,0,0,NULL,2,'Inherit','Inherit',9); -/*!40000 ALTER TABLE `SiteTree` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree_EditorGroups` --- - -DROP TABLE IF EXISTS `SiteTree_EditorGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree_EditorGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteTreeID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `SiteTreeID` (`SiteTreeID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree_EditorGroups` --- - -LOCK TABLES `SiteTree_EditorGroups` WRITE; -/*!40000 ALTER TABLE `SiteTree_EditorGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteTree_EditorGroups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree_ImageTracking` --- - -DROP TABLE IF EXISTS `SiteTree_ImageTracking`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree_ImageTracking` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteTreeID` int(11) NOT NULL DEFAULT '0', - `FileID` int(11) NOT NULL DEFAULT '0', - `FieldName` varchar(255) DEFAULT NULL, - PRIMARY KEY (`ID`), - KEY `SiteTreeID` (`SiteTreeID`), - KEY `FileID` (`FileID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree_ImageTracking` --- - -LOCK TABLES `SiteTree_ImageTracking` WRITE; -/*!40000 ALTER TABLE `SiteTree_ImageTracking` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteTree_ImageTracking` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree_LinkTracking` --- - -DROP TABLE IF EXISTS `SiteTree_LinkTracking`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree_LinkTracking` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteTreeID` int(11) NOT NULL DEFAULT '0', - `ChildID` int(11) NOT NULL DEFAULT '0', - `FieldName` varchar(255) DEFAULT NULL, - PRIMARY KEY (`ID`), - KEY `SiteTreeID` (`SiteTreeID`), - KEY `ChildID` (`ChildID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree_LinkTracking` --- - -LOCK TABLES `SiteTree_LinkTracking` WRITE; -/*!40000 ALTER TABLE `SiteTree_LinkTracking` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteTree_LinkTracking` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree_Live` --- - -DROP TABLE IF EXISTS `SiteTree_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Lessons\\ArticleHolder','SilverStripe\\Lessons\\ArticlePage','SilverStripe\\Lessons\\HomePage','SilverStripe\\Lessons\\PropertySearchPage','SilverStripe\\Lessons\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'Page', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `URLSegment` varchar(255) DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `MenuTitle` varchar(100) DEFAULT NULL, - `Content` mediumtext, - `MetaDescription` mediumtext, - `ExtraMeta` mediumtext, - `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT '0', - `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Sort` int(11) NOT NULL DEFAULT '0', - `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT '0', - `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT '0', - `ReportClass` varchar(255) DEFAULT NULL, - `Version` int(11) NOT NULL DEFAULT '0', - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `ParentID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`), - KEY `URLSegment` (`URLSegment`) -) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree_Live` --- - -LOCK TABLES `SiteTree_Live` WRITE; -/*!40000 ALTER TABLE `SiteTree_Live` DISABLE KEYS */; -INSERT INTO `SiteTree_Live` VALUES (1,'SilverStripe\\Lessons\\HomePage','2017-09-12 15:51:23','2017-09-12 11:04:00','home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,2,'Inherit','Inherit',0),(2,'Page','2017-09-13 11:40:37','2017-09-12 11:04:00','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,3,'Inherit','Inherit',0),(4,'SilverStripe\\ErrorPage\\ErrorPage','2017-09-12 11:04:00','2017-09-12 11:04:00','page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,8,0,0,NULL,1,'Inherit','Inherit',0),(5,'SilverStripe\\ErrorPage\\ErrorPage','2017-09-12 11:04:00','2017-09-12 11:04:00','server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,9,0,0,NULL,1,'Inherit','Inherit',0),(6,'SilverStripe\\Lessons\\PropertySearchPage','2017-09-26 12:48:23','2017-09-13 11:36:49','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,4,'Inherit','Inherit',0),(7,'Page','2017-09-13 11:40:30','2017-09-13 11:38:12','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,4,'Inherit','Inherit',0),(8,'SilverStripe\\Lessons\\RegionsPage','2017-09-14 12:57:55','2017-09-13 11:38:38','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,5,'Inherit','Inherit',0),(9,'SilverStripe\\Lessons\\ArticleHolder','2017-09-13 11:40:30','2017-09-13 11:38:51','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,5,'Inherit','Inherit',0),(12,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:22','2017-09-27 11:57:15','expedita-nam-facilis-velit-provident-consectetur','Expedita nam facilis velit provident consectetur',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,2,'Inherit','Inherit',9),(13,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:22','2017-09-27 11:57:16','qui-ea','Qui ea',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,2,'Inherit','Inherit',9),(14,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','non-dignissimos-molestiae','Non dignissimos molestiae',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,2,'Inherit','Inherit',9),(15,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','rerum-delectus-qui-a-eum-enim','Rerum delectus qui a eum enim',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,2,'Inherit','Inherit',9),(16,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','expedita-excepturi-placeat-excepturi','Expedita excepturi placeat excepturi',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,2,'Inherit','Inherit',9),(17,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','nemo-adipisci-molestiae-autem-beatae-atque','Nemo adipisci molestiae autem beatae atque',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,2,'Inherit','Inherit',9),(18,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','ut-hic-laboriosam-laborum','Ut hic laboriosam laborum',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,2,'Inherit','Inherit',9),(19,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','vitae-vel-itaque-perferendis','Vitae vel itaque perferendis',NULL,NULL,NULL,NULL,1,1,10,0,0,NULL,2,'Inherit','Inherit',9),(20,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','inventore-labore-reprehenderit-quia-iste','Inventore labore reprehenderit quia iste',NULL,NULL,NULL,NULL,1,1,11,0,0,NULL,2,'Inherit','Inherit',9),(21,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','consequatur-ab-voluptatem-excepturi','Consequatur ab voluptatem excepturi',NULL,NULL,NULL,NULL,1,1,12,0,0,NULL,2,'Inherit','Inherit',9),(22,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','eaque-dolores-facere-totam-non-sed','Eaque dolores facere totam non sed',NULL,NULL,NULL,NULL,1,1,13,0,0,NULL,2,'Inherit','Inherit',9),(23,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','sequi-enim-sit','Sequi enim sit',NULL,NULL,NULL,NULL,1,1,14,0,0,NULL,2,'Inherit','Inherit',9),(24,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','alias-quia','Alias quia',NULL,NULL,NULL,NULL,1,1,15,0,0,NULL,2,'Inherit','Inherit',9),(25,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','non-nesciunt-voluptatem-beatae-placeat-aut','Non nesciunt voluptatem beatae placeat aut',NULL,NULL,NULL,NULL,1,1,16,0,0,NULL,2,'Inherit','Inherit',9),(26,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','et-dolorem-sint-consectetur-aut-similique','Et dolorem sint consectetur aut similique',NULL,NULL,NULL,NULL,1,1,17,0,0,NULL,2,'Inherit','Inherit',9),(27,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','repellat-consequatur','Repellat consequatur',NULL,NULL,NULL,NULL,1,1,18,0,0,NULL,2,'Inherit','Inherit',9),(28,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','dicta-ea-qui-quae-sunt-aut','Dicta ea qui quae sunt aut',NULL,NULL,NULL,NULL,1,1,19,0,0,NULL,2,'Inherit','Inherit',9),(29,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','accusamus-laborum-eius','Accusamus laborum eius',NULL,NULL,NULL,NULL,1,1,20,0,0,NULL,2,'Inherit','Inherit',9),(30,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','repellat-aperiam-ipsum-voluptatem','Repellat aperiam ipsum voluptatem',NULL,NULL,NULL,NULL,1,1,21,0,0,NULL,2,'Inherit','Inherit',9),(31,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','recusandae-magnam-iste-qui','Recusandae magnam iste qui',NULL,NULL,NULL,NULL,1,1,22,0,0,NULL,2,'Inherit','Inherit',9),(32,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','ut-est-dolor-eveniet','Ut est dolor eveniet',NULL,NULL,NULL,NULL,1,1,23,0,0,NULL,2,'Inherit','Inherit',9),(33,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','illo-repellat-suscipit-esse','Illo repellat suscipit esse',NULL,NULL,NULL,NULL,1,1,24,0,0,NULL,2,'Inherit','Inherit',9),(34,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','nihil-itaque-et-beatae','Nihil itaque et beatae',NULL,NULL,NULL,NULL,1,1,25,0,0,NULL,2,'Inherit','Inherit',9),(35,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','et-eveniet','Et eveniet',NULL,NULL,NULL,NULL,1,1,26,0,0,NULL,2,'Inherit','Inherit',9),(36,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','et-ullam-quis-magni-quod-deleniti','Et ullam quis magni quod deleniti',NULL,NULL,NULL,NULL,1,1,27,0,0,NULL,2,'Inherit','Inherit',9),(37,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','maiores-optio-quaerat-a-ad-facere','Maiores optio quaerat a ad facere',NULL,NULL,NULL,NULL,1,1,28,0,0,NULL,2,'Inherit','Inherit',9),(38,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','explicabo-tempora-non-velit','Explicabo tempora non velit',NULL,NULL,NULL,NULL,1,1,29,0,0,NULL,2,'Inherit','Inherit',9),(39,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','dolorem-quis','Dolorem quis',NULL,NULL,NULL,NULL,1,1,30,0,0,NULL,2,'Inherit','Inherit',9),(40,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','ipsa-et-enim-eum','Ipsa et enim eum',NULL,NULL,NULL,NULL,1,1,31,0,0,NULL,2,'Inherit','Inherit',9),(41,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','et-qui','Et qui',NULL,NULL,NULL,NULL,1,1,32,0,0,NULL,2,'Inherit','Inherit',9),(42,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','architecto-repellat-suscipit-accusantium-magni-hic','Architecto repellat suscipit accusantium magni hic',NULL,NULL,NULL,NULL,1,1,33,0,0,NULL,2,'Inherit','Inherit',9),(43,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','repudiandae-ipsam-incidunt-modi','Repudiandae ipsam incidunt modi',NULL,NULL,NULL,NULL,1,1,34,0,0,NULL,2,'Inherit','Inherit',9),(44,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','dolore-sequi-iste','Dolore sequi iste',NULL,NULL,NULL,NULL,1,1,35,0,0,NULL,2,'Inherit','Inherit',9),(45,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','modi-sit-voluptas','Modi sit voluptas',NULL,NULL,NULL,NULL,1,1,36,0,0,NULL,2,'Inherit','Inherit',9),(46,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','et-autem-quidem-est-culpa-sint','Et autem quidem est culpa sint',NULL,NULL,NULL,NULL,1,1,37,0,0,NULL,2,'Inherit','Inherit',9),(47,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','vel-ea','Vel ea',NULL,NULL,NULL,NULL,1,1,38,0,0,NULL,2,'Inherit','Inherit',9),(48,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','quis-qui','Quis qui',NULL,NULL,NULL,NULL,1,1,39,0,0,NULL,2,'Inherit','Inherit',9),(49,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','cum-quis-blanditiis','Cum quis blanditiis',NULL,NULL,NULL,NULL,1,1,40,0,0,NULL,2,'Inherit','Inherit',9),(50,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','iste-provident-aperiam-accusamus','Iste provident aperiam accusamus',NULL,NULL,NULL,NULL,1,1,41,0,0,NULL,2,'Inherit','Inherit',9),(51,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','explicabo-et','Explicabo et',NULL,NULL,NULL,NULL,1,1,42,0,0,NULL,2,'Inherit','Inherit',9),(52,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','excepturi-neque-ut-labore-nemo','Excepturi neque ut labore nemo',NULL,NULL,NULL,NULL,1,1,43,0,0,NULL,2,'Inherit','Inherit',9),(53,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','ea-eligendi-consectetur','Ea eligendi consectetur',NULL,NULL,NULL,NULL,1,1,44,0,0,NULL,2,'Inherit','Inherit',9),(54,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','autem-sunt','Autem sunt',NULL,NULL,NULL,NULL,1,1,45,0,0,NULL,2,'Inherit','Inherit',9),(55,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','voluptatem-nobis-itaque','Voluptatem nobis itaque',NULL,NULL,NULL,NULL,1,1,46,0,0,NULL,2,'Inherit','Inherit',9),(56,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','nesciunt-quia-porro-sapiente','Nesciunt quia porro sapiente',NULL,NULL,NULL,NULL,1,1,47,0,0,NULL,2,'Inherit','Inherit',9),(57,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','possimus-fugit-molestiae-est-et','Possimus fugit molestiae est et',NULL,NULL,NULL,NULL,1,1,48,0,0,NULL,2,'Inherit','Inherit',9),(58,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','id-sequi-facere','Id sequi facere',NULL,NULL,NULL,NULL,1,1,49,0,0,NULL,2,'Inherit','Inherit',9),(59,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','porro-natus','Porro natus',NULL,NULL,NULL,NULL,1,1,50,0,0,NULL,2,'Inherit','Inherit',9),(60,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','eaque-sunt-doloribus','Eaque sunt doloribus',NULL,NULL,NULL,NULL,1,1,51,0,0,NULL,2,'Inherit','Inherit',9),(61,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','vitae-in-ipsa','Vitae in ipsa',NULL,NULL,NULL,NULL,1,1,52,0,0,NULL,2,'Inherit','Inherit',9),(62,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','perferendis-sapiente-voluptatem-ea-dolorum-tempora','Perferendis sapiente voluptatem ea dolorum tempora',NULL,NULL,NULL,NULL,1,1,53,0,0,NULL,2,'Inherit','Inherit',9),(63,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','architecto-quisquam','Architecto quisquam',NULL,NULL,NULL,NULL,1,1,54,0,0,NULL,2,'Inherit','Inherit',9),(64,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','aspernatur-sit-maiores-numquam-odit','Aspernatur sit maiores numquam odit',NULL,NULL,NULL,NULL,1,1,55,0,0,NULL,2,'Inherit','Inherit',9),(65,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','sit-ea','Sit ea',NULL,NULL,NULL,NULL,1,1,56,0,0,NULL,2,'Inherit','Inherit',9),(66,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','odio-natus-tempore-omnis','Odio natus tempore omnis',NULL,NULL,NULL,NULL,1,1,57,0,0,NULL,2,'Inherit','Inherit',9),(67,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','ex-aut-et-ut-animi','Ex aut et ut animi',NULL,NULL,NULL,NULL,1,1,58,0,0,NULL,2,'Inherit','Inherit',9),(68,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','sapiente-placeat-nihil-consequuntur','Sapiente placeat nihil consequuntur',NULL,NULL,NULL,NULL,1,1,59,0,0,NULL,2,'Inherit','Inherit',9),(69,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','voluptatem-quia-inventore-sequi-quam','Voluptatem quia inventore sequi quam',NULL,NULL,NULL,NULL,1,1,60,0,0,NULL,2,'Inherit','Inherit',9),(70,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','rerum-asperiores','Rerum asperiores',NULL,NULL,NULL,NULL,1,1,61,0,0,NULL,2,'Inherit','Inherit',9),(71,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','non-dignissimos-illum','Non dignissimos illum',NULL,NULL,NULL,NULL,1,1,62,0,0,NULL,2,'Inherit','Inherit',9),(72,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','neque-molestias-ipsa','Neque molestias ipsa',NULL,NULL,NULL,NULL,1,1,63,0,0,NULL,2,'Inherit','Inherit',9),(73,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','maxime-dolores','Maxime dolores',NULL,NULL,NULL,NULL,1,1,64,0,0,NULL,2,'Inherit','Inherit',9),(74,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','sed-labore-iure','Sed labore iure',NULL,NULL,NULL,NULL,1,1,65,0,0,NULL,2,'Inherit','Inherit',9),(75,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','eligendi-nulla-eveniet-voluptatum-eius-sint','Eligendi nulla eveniet voluptatum eius sint',NULL,NULL,NULL,NULL,1,1,66,0,0,NULL,2,'Inherit','Inherit',9),(76,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','consectetur-est-alias-repellat-fugit','Consectetur est alias repellat fugit',NULL,NULL,NULL,NULL,1,1,67,0,0,NULL,2,'Inherit','Inherit',9),(77,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','aut-esse','Aut esse',NULL,NULL,NULL,NULL,1,1,68,0,0,NULL,2,'Inherit','Inherit',9),(78,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','nesciunt-rerum-voluptas','Nesciunt rerum voluptas',NULL,NULL,NULL,NULL,1,1,69,0,0,NULL,2,'Inherit','Inherit',9),(79,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','doloribus-soluta-eius-optio','Doloribus soluta eius optio',NULL,NULL,NULL,NULL,1,1,70,0,0,NULL,2,'Inherit','Inherit',9),(80,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','ratione-est','Ratione est',NULL,NULL,NULL,NULL,1,1,71,0,0,NULL,2,'Inherit','Inherit',9),(81,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','officiis-ipsam-eius','Officiis ipsam eius',NULL,NULL,NULL,NULL,1,1,72,0,0,NULL,2,'Inherit','Inherit',9),(82,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','itaque-molestiae-aperiam-soluta','Itaque molestiae aperiam soluta',NULL,NULL,NULL,NULL,1,1,73,0,0,NULL,2,'Inherit','Inherit',9),(83,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','debitis-id-reprehenderit','Debitis id reprehenderit',NULL,NULL,NULL,NULL,1,1,74,0,0,NULL,2,'Inherit','Inherit',9),(84,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','reiciendis-optio-error-eum-omnis-vel','Reiciendis optio error eum omnis vel',NULL,NULL,NULL,NULL,1,1,75,0,0,NULL,2,'Inherit','Inherit',9),(85,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','cumque-et-commodi-blanditiis-culpa-ad','Cumque et commodi blanditiis culpa ad',NULL,NULL,NULL,NULL,1,1,76,0,0,NULL,2,'Inherit','Inherit',9),(86,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','eveniet-debitis','Eveniet debitis',NULL,NULL,NULL,NULL,1,1,77,0,0,NULL,2,'Inherit','Inherit',9),(87,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','omnis-dignissimos','Omnis dignissimos',NULL,NULL,NULL,NULL,1,1,78,0,0,NULL,2,'Inherit','Inherit',9),(88,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','facere-qui-suscipit-et','Facere qui suscipit et',NULL,NULL,NULL,NULL,1,1,79,0,0,NULL,2,'Inherit','Inherit',9),(89,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','sapiente-autem-est-alias-veniam','Sapiente autem est alias veniam',NULL,NULL,NULL,NULL,1,1,80,0,0,NULL,2,'Inherit','Inherit',9),(90,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','similique-rerum-assumenda-quaerat-officiis-consequatur','Similique rerum assumenda quaerat officiis consequatur',NULL,NULL,NULL,NULL,1,1,81,0,0,NULL,2,'Inherit','Inherit',9),(91,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','autem-libero-molestiae-quod','Autem libero molestiae quod',NULL,NULL,NULL,NULL,1,1,82,0,0,NULL,2,'Inherit','Inherit',9),(92,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','culpa-tempore-ullam-ipsum','Culpa tempore ullam ipsum',NULL,NULL,NULL,NULL,1,1,83,0,0,NULL,2,'Inherit','Inherit',9),(93,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','debitis-nihil','Debitis nihil',NULL,NULL,NULL,NULL,1,1,84,0,0,NULL,2,'Inherit','Inherit',9),(94,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','et-consequatur-laboriosam','Et consequatur laboriosam',NULL,NULL,NULL,NULL,1,1,85,0,0,NULL,2,'Inherit','Inherit',9),(95,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','repellat-sed-a-ut-cumque','Repellat sed a ut cumque',NULL,NULL,NULL,NULL,1,1,86,0,0,NULL,2,'Inherit','Inherit',9),(96,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','voluptas-dolor-voluptatem-adipisci','Voluptas dolor voluptatem adipisci',NULL,NULL,NULL,NULL,1,1,87,0,0,NULL,2,'Inherit','Inherit',9),(97,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','cupiditate-voluptas','Cupiditate voluptas',NULL,NULL,NULL,NULL,1,1,88,0,0,NULL,2,'Inherit','Inherit',9),(98,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','consequatur-sit-praesentium','Consequatur sit praesentium',NULL,NULL,NULL,NULL,1,1,89,0,0,NULL,2,'Inherit','Inherit',9),(99,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','similique-sit-et-dolor','Similique sit et dolor',NULL,NULL,NULL,NULL,1,1,90,0,0,NULL,2,'Inherit','Inherit',9),(100,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','ut-perferendis-aut','Ut perferendis aut',NULL,NULL,NULL,NULL,1,1,91,0,0,NULL,2,'Inherit','Inherit',9),(101,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','dolorem-cumque-eligendi-nesciunt-animi-et','Dolorem cumque eligendi nesciunt animi et',NULL,NULL,NULL,NULL,1,1,92,0,0,NULL,2,'Inherit','Inherit',9),(102,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','ducimus-quia-veritatis','Ducimus quia veritatis',NULL,NULL,NULL,NULL,1,1,93,0,0,NULL,2,'Inherit','Inherit',9),(103,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','dignissimos-mollitia','Dignissimos mollitia',NULL,NULL,NULL,NULL,1,1,94,0,0,NULL,2,'Inherit','Inherit',9),(104,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','error-ut-culpa','Error ut culpa',NULL,NULL,NULL,NULL,1,1,95,0,0,NULL,2,'Inherit','Inherit',9),(105,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','nam-repudiandae-accusamus','Nam repudiandae accusamus',NULL,NULL,NULL,NULL,1,1,96,0,0,NULL,2,'Inherit','Inherit',9),(106,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','et-laborum-voluptatum-quo-ratione-a','Et laborum voluptatum quo ratione a',NULL,NULL,NULL,NULL,1,1,97,0,0,NULL,2,'Inherit','Inherit',9),(107,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','autem-animi-omnis-laborum-aliquam','Autem animi omnis laborum aliquam',NULL,NULL,NULL,NULL,1,1,98,0,0,NULL,2,'Inherit','Inherit',9),(108,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','a-dignissimos','A dignissimos',NULL,NULL,NULL,NULL,1,1,99,0,0,NULL,2,'Inherit','Inherit',9),(109,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','unde-officiis','Unde officiis',NULL,NULL,NULL,NULL,1,1,100,0,0,NULL,2,'Inherit','Inherit',9); -/*!40000 ALTER TABLE `SiteTree_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree_Versions` --- - -DROP TABLE IF EXISTS `SiteTree_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT '0', - `AuthorID` int(11) NOT NULL DEFAULT '0', - `PublisherID` int(11) NOT NULL DEFAULT '0', - `ClassName` enum('SilverStripe\\CMS\\Model\\SiteTree','Page','SilverStripe\\Lessons\\ArticleHolder','SilverStripe\\Lessons\\ArticlePage','SilverStripe\\Lessons\\HomePage','SilverStripe\\Lessons\\PropertySearchPage','SilverStripe\\Lessons\\RegionsPage','SilverStripe\\ErrorPage\\ErrorPage','SilverStripe\\CMS\\Model\\RedirectorPage','SilverStripe\\CMS\\Model\\VirtualPage') DEFAULT 'Page', - `LastEdited` datetime DEFAULT NULL, - `Created` datetime DEFAULT NULL, - `URLSegment` varchar(255) DEFAULT NULL, - `Title` varchar(255) DEFAULT NULL, - `MenuTitle` varchar(100) DEFAULT NULL, - `Content` mediumtext, - `MetaDescription` mediumtext, - `ExtraMeta` mediumtext, - `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT '0', - `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Sort` int(11) NOT NULL DEFAULT '0', - `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT '0', - `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT '0', - `ReportClass` varchar(255) DEFAULT NULL, - `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') DEFAULT 'Inherit', - `ParentID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `AuthorID` (`AuthorID`), - KEY `PublisherID` (`PublisherID`), - KEY `ClassName` (`ClassName`), - KEY `ParentID` (`ParentID`), - KEY `URLSegment` (`URLSegment`) -) ENGINE=InnoDB AUTO_INCREMENT=230 DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree_Versions` --- - -LOCK TABLES `SiteTree_Versions` WRITE; -/*!40000 ALTER TABLE `SiteTree_Versions` DISABLE KEYS */; -INSERT INTO `SiteTree_Versions` VALUES (1,1,1,1,0,0,'Page','2017-09-12 11:04:00','2017-09-12 11:04:00','home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0),(2,2,1,1,0,0,'Page','2017-09-12 11:04:00','2017-09-12 11:04:00','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',0),(3,3,1,1,0,0,'Page','2017-09-12 11:04:00','2017-09-12 11:04:00','contact-us','Contact Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,3,0,0,NULL,'Inherit','Inherit',0),(4,4,1,1,0,0,'SilverStripe\\ErrorPage\\ErrorPage','2017-09-12 11:04:00','2017-09-12 11:04:00','page-not-found','Page not found',NULL,'

Sorry, it seems you were trying to access a page that doesn\'t exist.

Please check the spelling of the URL you were trying to access and try again.

',NULL,NULL,0,0,4,0,0,NULL,'Inherit','Inherit',0),(5,5,1,1,0,0,'SilverStripe\\ErrorPage\\ErrorPage','2017-09-12 11:04:00','2017-09-12 11:04:00','server-error','Server error',NULL,'

Sorry, there was a problem with handling your request.

',NULL,NULL,0,0,5,0,0,NULL,'Inherit','Inherit',0),(6,1,2,1,1,1,'SilverStripe\\Lessons\\HomePage','2017-09-12 15:51:22','2017-09-12 11:04:00','home','Home',NULL,'

Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.

You can now access the developer documentation, or begin the SilverStripe lessons.

',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0),(7,6,1,0,1,0,'Page','2017-09-13 11:36:49','2017-09-13 11:36:49','new-page','New Page',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,'Inherit','Inherit',0),(8,7,1,0,1,0,'Page','2017-09-13 11:38:12','2017-09-13 11:38:12','new-page-2','New Page',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,'Inherit','Inherit',0),(9,7,2,1,1,1,'Page','2017-09-13 11:38:20','2017-09-13 11:38:12','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,'Inherit','Inherit',0),(10,6,2,1,1,1,'Page','2017-09-13 11:38:28','2017-09-13 11:36:49','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,'Inherit','Inherit',0),(11,8,1,0,1,0,'Page','2017-09-13 11:38:38','2017-09-13 11:38:38','new-page','New Page',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,'Inherit','Inherit',0),(12,8,2,1,1,1,'Page','2017-09-13 11:38:43','2017-09-13 11:38:38','regions','Regions',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,'Inherit','Inherit',0),(13,9,1,0,1,0,'Page','2017-09-13 11:38:51','2017-09-13 11:38:51','new-page','New Page',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,'Inherit','Inherit',0),(14,9,2,1,1,1,'Page','2017-09-13 11:39:03','2017-09-13 11:38:51','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,'Inherit','Inherit',0),(15,9,3,1,1,1,'SilverStripe\\Lessons\\ArticleHolder','2017-09-13 11:39:12','2017-09-13 11:38:51','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,'Inherit','Inherit',0),(16,2,2,0,1,0,'Page','2017-09-13 11:39:19','2017-09-12 11:04:00','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,8,0,0,NULL,'Inherit','Inherit',0),(17,6,3,1,1,1,'Page','2017-09-13 11:39:25','2017-09-13 11:36:49','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',0),(18,7,3,0,1,0,'Page','2017-09-13 11:39:28','2017-09-13 11:38:12','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,'Inherit','Inherit',0),(19,8,3,0,1,0,'Page','2017-09-13 11:39:32','2017-09-13 11:38:38','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,'Inherit','Inherit',0),(20,9,4,0,1,0,'SilverStripe\\Lessons\\ArticleHolder','2017-09-13 11:39:33','2017-09-13 11:38:51','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,'Inherit','Inherit',0),(21,2,3,1,1,1,'Page','2017-09-13 11:39:36','2017-09-12 11:04:00','about-us','About Us',NULL,'

You can fill this page out with your own content, or delete it and create your own pages.

',NULL,NULL,1,1,6,0,0,NULL,'Inherit','Inherit',0),(22,7,4,1,1,1,'Page','2017-09-13 11:40:05','2017-09-13 11:38:12','list-your-rental','List Your Rental',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,'Inherit','Inherit',0),(23,8,4,1,1,1,'Page','2017-09-13 11:40:09','2017-09-13 11:38:38','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,'Inherit','Inherit',0),(24,9,5,1,1,1,'SilverStripe\\Lessons\\ArticleHolder','2017-09-13 11:40:15','2017-09-13 11:38:51','travel-guides','Travel Guides',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,'Inherit','Inherit',0),(25,10,1,0,1,0,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 11:42:07','2017-09-13 11:42:07','new-article-page','New Article Page',NULL,NULL,NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',9),(26,10,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 11:42:26','2017-09-13 11:42:07','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',9),(27,11,1,0,1,0,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 11:42:29','2017-09-13 11:42:29','new-article-page','New Article Page',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',9),(28,11,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 11:42:48','2017-09-13 11:42:29','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',9),(29,10,3,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 12:54:14','2017-09-13 11:42:07','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',9),(30,10,4,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 13:48:49','2017-09-13 11:42:07','sample-article-1','Sample Article 1',NULL,'

This is sample article 1.

',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',9),(31,11,3,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-13 13:49:05','2017-09-13 11:42:29','sample-article-2','Sample Article 2',NULL,'

This is sample article 2.

',NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',9),(32,8,5,1,1,1,'SilverStripe\\Lessons\\RegionsPage','2017-09-14 12:57:55','2017-09-13 11:38:38','regions','Regions',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,'Inherit','Inherit',0),(33,6,4,1,1,1,'SilverStripe\\Lessons\\PropertySearchPage','2017-09-26 12:48:23','2017-09-13 11:36:49','find-a-rental','Find a Rental',NULL,NULL,NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',0),(34,12,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:15','2017-09-27 11:57:15','expedita-nam-facilis-velit-provident-consectetur','expedita nam facilis velit provident consectetur',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,'Inherit','Inherit',9),(35,13,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','qui-ea','qui ea',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,'Inherit','Inherit',9),(36,14,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','non-dignissimos-molestiae','non dignissimos molestiae',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,'Inherit','Inherit',9),(37,15,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','rerum-delectus-qui-a-eum-enim','rerum delectus qui a eum enim',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,'Inherit','Inherit',9),(38,16,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','expedita-excepturi-placeat-excepturi','expedita excepturi placeat excepturi',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,'Inherit','Inherit',9),(39,17,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','nemo-adipisci-molestiae-autem-beatae-atque','nemo adipisci molestiae autem beatae atque',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,'Inherit','Inherit',9),(40,18,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','ut-hic-laboriosam-laborum','ut hic laboriosam laborum',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,'Inherit','Inherit',9),(41,19,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:16','2017-09-27 11:57:16','vitae-vel-itaque-perferendis','vitae vel itaque perferendis',NULL,NULL,NULL,NULL,1,1,10,0,0,NULL,'Inherit','Inherit',9),(42,20,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','inventore-labore-reprehenderit-quia-iste','inventore labore reprehenderit quia iste',NULL,NULL,NULL,NULL,1,1,11,0,0,NULL,'Inherit','Inherit',9),(43,21,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','consequatur-ab-voluptatem-excepturi','consequatur ab voluptatem excepturi',NULL,NULL,NULL,NULL,1,1,12,0,0,NULL,'Inherit','Inherit',9),(44,22,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','eaque-dolores-facere-totam-non-sed','eaque dolores facere totam non sed',NULL,NULL,NULL,NULL,1,1,13,0,0,NULL,'Inherit','Inherit',9),(45,23,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','sequi-enim-sit','sequi enim sit',NULL,NULL,NULL,NULL,1,1,14,0,0,NULL,'Inherit','Inherit',9),(46,24,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','alias-quia','alias quia',NULL,NULL,NULL,NULL,1,1,15,0,0,NULL,'Inherit','Inherit',9),(47,25,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','non-nesciunt-voluptatem-beatae-placeat-aut','non nesciunt voluptatem beatae placeat aut',NULL,NULL,NULL,NULL,1,1,16,0,0,NULL,'Inherit','Inherit',9),(48,26,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','et-dolorem-sint-consectetur-aut-similique','et dolorem sint consectetur aut similique',NULL,NULL,NULL,NULL,1,1,17,0,0,NULL,'Inherit','Inherit',9),(49,27,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','repellat-consequatur','repellat consequatur',NULL,NULL,NULL,NULL,1,1,18,0,0,NULL,'Inherit','Inherit',9),(50,28,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:17','2017-09-27 11:57:17','dicta-ea-qui-quae-sunt-aut','dicta ea qui quae sunt aut',NULL,NULL,NULL,NULL,1,1,19,0,0,NULL,'Inherit','Inherit',9),(51,29,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','accusamus-laborum-eius','accusamus laborum eius',NULL,NULL,NULL,NULL,1,1,20,0,0,NULL,'Inherit','Inherit',9),(52,30,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','repellat-aperiam-ipsum-voluptatem','repellat aperiam ipsum voluptatem',NULL,NULL,NULL,NULL,1,1,21,0,0,NULL,'Inherit','Inherit',9),(53,31,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','recusandae-magnam-iste-qui','recusandae magnam iste qui',NULL,NULL,NULL,NULL,1,1,22,0,0,NULL,'Inherit','Inherit',9),(54,32,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','ut-est-dolor-eveniet','ut est dolor eveniet',NULL,NULL,NULL,NULL,1,1,23,0,0,NULL,'Inherit','Inherit',9),(55,33,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','illo-repellat-suscipit-esse','illo repellat suscipit esse',NULL,NULL,NULL,NULL,1,1,24,0,0,NULL,'Inherit','Inherit',9),(56,34,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','nihil-itaque-et-beatae','nihil itaque et beatae',NULL,NULL,NULL,NULL,1,1,25,0,0,NULL,'Inherit','Inherit',9),(57,35,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','et-eveniet','et eveniet',NULL,NULL,NULL,NULL,1,1,26,0,0,NULL,'Inherit','Inherit',9),(58,36,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','et-ullam-quis-magni-quod-deleniti','et ullam quis magni quod deleniti',NULL,NULL,NULL,NULL,1,1,27,0,0,NULL,'Inherit','Inherit',9),(59,37,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:18','2017-09-27 11:57:18','maiores-optio-quaerat-a-ad-facere','maiores optio quaerat a ad facere',NULL,NULL,NULL,NULL,1,1,28,0,0,NULL,'Inherit','Inherit',9),(60,38,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','explicabo-tempora-non-velit','explicabo tempora non velit',NULL,NULL,NULL,NULL,1,1,29,0,0,NULL,'Inherit','Inherit',9),(61,39,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','dolorem-quis','dolorem quis',NULL,NULL,NULL,NULL,1,1,30,0,0,NULL,'Inherit','Inherit',9),(62,40,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','ipsa-et-enim-eum','ipsa et enim eum',NULL,NULL,NULL,NULL,1,1,31,0,0,NULL,'Inherit','Inherit',9),(63,41,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','et-qui','et qui',NULL,NULL,NULL,NULL,1,1,32,0,0,NULL,'Inherit','Inherit',9),(64,42,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','architecto-repellat-suscipit-accusantium-magni-hic','architecto repellat suscipit accusantium magni hic',NULL,NULL,NULL,NULL,1,1,33,0,0,NULL,'Inherit','Inherit',9),(65,43,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','repudiandae-ipsam-incidunt-modi','repudiandae ipsam incidunt modi',NULL,NULL,NULL,NULL,1,1,34,0,0,NULL,'Inherit','Inherit',9),(66,44,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','dolore-sequi-iste','dolore sequi iste',NULL,NULL,NULL,NULL,1,1,35,0,0,NULL,'Inherit','Inherit',9),(67,45,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:19','2017-09-27 11:57:19','modi-sit-voluptas','modi sit voluptas',NULL,NULL,NULL,NULL,1,1,36,0,0,NULL,'Inherit','Inherit',9),(68,46,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','et-autem-quidem-est-culpa-sint','et autem quidem est culpa sint',NULL,NULL,NULL,NULL,1,1,37,0,0,NULL,'Inherit','Inherit',9),(69,47,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','vel-ea','vel ea',NULL,NULL,NULL,NULL,1,1,38,0,0,NULL,'Inherit','Inherit',9),(70,48,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','quis-qui','quis qui',NULL,NULL,NULL,NULL,1,1,39,0,0,NULL,'Inherit','Inherit',9),(71,49,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','cum-quis-blanditiis','cum quis blanditiis',NULL,NULL,NULL,NULL,1,1,40,0,0,NULL,'Inherit','Inherit',9),(72,50,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','iste-provident-aperiam-accusamus','iste provident aperiam accusamus',NULL,NULL,NULL,NULL,1,1,41,0,0,NULL,'Inherit','Inherit',9),(73,51,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','explicabo-et','explicabo et',NULL,NULL,NULL,NULL,1,1,42,0,0,NULL,'Inherit','Inherit',9),(74,52,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','excepturi-neque-ut-labore-nemo','excepturi neque ut labore nemo',NULL,NULL,NULL,NULL,1,1,43,0,0,NULL,'Inherit','Inherit',9),(75,53,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','ea-eligendi-consectetur','ea eligendi consectetur',NULL,NULL,NULL,NULL,1,1,44,0,0,NULL,'Inherit','Inherit',9),(76,54,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:20','2017-09-27 11:57:20','autem-sunt','autem sunt',NULL,NULL,NULL,NULL,1,1,45,0,0,NULL,'Inherit','Inherit',9),(77,55,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','voluptatem-nobis-itaque','voluptatem nobis itaque',NULL,NULL,NULL,NULL,1,1,46,0,0,NULL,'Inherit','Inherit',9),(78,56,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','nesciunt-quia-porro-sapiente','nesciunt quia porro sapiente',NULL,NULL,NULL,NULL,1,1,47,0,0,NULL,'Inherit','Inherit',9),(79,57,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','possimus-fugit-molestiae-est-et','possimus fugit molestiae est et',NULL,NULL,NULL,NULL,1,1,48,0,0,NULL,'Inherit','Inherit',9),(80,58,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','id-sequi-facere','id sequi facere',NULL,NULL,NULL,NULL,1,1,49,0,0,NULL,'Inherit','Inherit',9),(81,59,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','porro-natus','porro natus',NULL,NULL,NULL,NULL,1,1,50,0,0,NULL,'Inherit','Inherit',9),(82,60,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','eaque-sunt-doloribus','eaque sunt doloribus',NULL,NULL,NULL,NULL,1,1,51,0,0,NULL,'Inherit','Inherit',9),(83,61,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','vitae-in-ipsa','vitae in ipsa',NULL,NULL,NULL,NULL,1,1,52,0,0,NULL,'Inherit','Inherit',9),(84,62,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:21','2017-09-27 11:57:21','perferendis-sapiente-voluptatem-ea-dolorum-tempora','perferendis sapiente voluptatem ea dolorum tempora',NULL,NULL,NULL,NULL,1,1,53,0,0,NULL,'Inherit','Inherit',9),(85,63,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','architecto-quisquam','architecto quisquam',NULL,NULL,NULL,NULL,1,1,54,0,0,NULL,'Inherit','Inherit',9),(86,64,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','aspernatur-sit-maiores-numquam-odit','aspernatur sit maiores numquam odit',NULL,NULL,NULL,NULL,1,1,55,0,0,NULL,'Inherit','Inherit',9),(87,65,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','sit-ea','sit ea',NULL,NULL,NULL,NULL,1,1,56,0,0,NULL,'Inherit','Inherit',9),(88,66,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','odio-natus-tempore-omnis','odio natus tempore omnis',NULL,NULL,NULL,NULL,1,1,57,0,0,NULL,'Inherit','Inherit',9),(89,67,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','ex-aut-et-ut-animi','ex aut et ut animi',NULL,NULL,NULL,NULL,1,1,58,0,0,NULL,'Inherit','Inherit',9),(90,68,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','sapiente-placeat-nihil-consequuntur','sapiente placeat nihil consequuntur',NULL,NULL,NULL,NULL,1,1,59,0,0,NULL,'Inherit','Inherit',9),(91,69,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','voluptatem-quia-inventore-sequi-quam','voluptatem quia inventore sequi quam',NULL,NULL,NULL,NULL,1,1,60,0,0,NULL,'Inherit','Inherit',9),(92,70,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','rerum-asperiores','rerum asperiores',NULL,NULL,NULL,NULL,1,1,61,0,0,NULL,'Inherit','Inherit',9),(93,71,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:22','2017-09-27 11:57:22','non-dignissimos-illum','non dignissimos illum',NULL,NULL,NULL,NULL,1,1,62,0,0,NULL,'Inherit','Inherit',9),(94,72,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','neque-molestias-ipsa','neque molestias ipsa',NULL,NULL,NULL,NULL,1,1,63,0,0,NULL,'Inherit','Inherit',9),(95,73,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','maxime-dolores','maxime dolores',NULL,NULL,NULL,NULL,1,1,64,0,0,NULL,'Inherit','Inherit',9),(96,74,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','sed-labore-iure','sed labore iure',NULL,NULL,NULL,NULL,1,1,65,0,0,NULL,'Inherit','Inherit',9),(97,75,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','eligendi-nulla-eveniet-voluptatum-eius-sint','eligendi nulla eveniet voluptatum eius sint',NULL,NULL,NULL,NULL,1,1,66,0,0,NULL,'Inherit','Inherit',9),(98,76,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','consectetur-est-alias-repellat-fugit','consectetur est alias repellat fugit',NULL,NULL,NULL,NULL,1,1,67,0,0,NULL,'Inherit','Inherit',9),(99,77,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','aut-esse','aut esse',NULL,NULL,NULL,NULL,1,1,68,0,0,NULL,'Inherit','Inherit',9),(100,78,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','nesciunt-rerum-voluptas','nesciunt rerum voluptas',NULL,NULL,NULL,NULL,1,1,69,0,0,NULL,'Inherit','Inherit',9),(101,79,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:23','2017-09-27 11:57:23','doloribus-soluta-eius-optio','doloribus soluta eius optio',NULL,NULL,NULL,NULL,1,1,70,0,0,NULL,'Inherit','Inherit',9),(102,80,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','ratione-est','ratione est',NULL,NULL,NULL,NULL,1,1,71,0,0,NULL,'Inherit','Inherit',9),(103,81,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','officiis-ipsam-eius','officiis ipsam eius',NULL,NULL,NULL,NULL,1,1,72,0,0,NULL,'Inherit','Inherit',9),(104,82,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','itaque-molestiae-aperiam-soluta','itaque molestiae aperiam soluta',NULL,NULL,NULL,NULL,1,1,73,0,0,NULL,'Inherit','Inherit',9),(105,83,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','debitis-id-reprehenderit','debitis id reprehenderit',NULL,NULL,NULL,NULL,1,1,74,0,0,NULL,'Inherit','Inherit',9),(106,84,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','reiciendis-optio-error-eum-omnis-vel','reiciendis optio error eum omnis vel',NULL,NULL,NULL,NULL,1,1,75,0,0,NULL,'Inherit','Inherit',9),(107,85,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','cumque-et-commodi-blanditiis-culpa-ad','cumque et commodi blanditiis culpa ad',NULL,NULL,NULL,NULL,1,1,76,0,0,NULL,'Inherit','Inherit',9),(108,86,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','eveniet-debitis','eveniet debitis',NULL,NULL,NULL,NULL,1,1,77,0,0,NULL,'Inherit','Inherit',9),(109,87,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:24','2017-09-27 11:57:24','omnis-dignissimos','omnis dignissimos',NULL,NULL,NULL,NULL,1,1,78,0,0,NULL,'Inherit','Inherit',9),(110,88,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','facere-qui-suscipit-et','facere qui suscipit et',NULL,NULL,NULL,NULL,1,1,79,0,0,NULL,'Inherit','Inherit',9),(111,89,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','sapiente-autem-est-alias-veniam','sapiente autem est alias veniam',NULL,NULL,NULL,NULL,1,1,80,0,0,NULL,'Inherit','Inherit',9),(112,90,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','similique-rerum-assumenda-quaerat-officiis-consequatur','similique rerum assumenda quaerat officiis consequatur',NULL,NULL,NULL,NULL,1,1,81,0,0,NULL,'Inherit','Inherit',9),(113,91,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','autem-libero-molestiae-quod','autem libero molestiae quod',NULL,NULL,NULL,NULL,1,1,82,0,0,NULL,'Inherit','Inherit',9),(114,92,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','culpa-tempore-ullam-ipsum','culpa tempore ullam ipsum',NULL,NULL,NULL,NULL,1,1,83,0,0,NULL,'Inherit','Inherit',9),(115,93,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','debitis-nihil','debitis nihil',NULL,NULL,NULL,NULL,1,1,84,0,0,NULL,'Inherit','Inherit',9),(116,94,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','et-consequatur-laboriosam','et consequatur laboriosam',NULL,NULL,NULL,NULL,1,1,85,0,0,NULL,'Inherit','Inherit',9),(117,95,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','repellat-sed-a-ut-cumque','repellat sed a ut cumque',NULL,NULL,NULL,NULL,1,1,86,0,0,NULL,'Inherit','Inherit',9),(118,96,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:25','2017-09-27 11:57:25','voluptas-dolor-voluptatem-adipisci','voluptas dolor voluptatem adipisci',NULL,NULL,NULL,NULL,1,1,87,0,0,NULL,'Inherit','Inherit',9),(119,97,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','cupiditate-voluptas','cupiditate voluptas',NULL,NULL,NULL,NULL,1,1,88,0,0,NULL,'Inherit','Inherit',9),(120,98,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','consequatur-sit-praesentium','consequatur sit praesentium',NULL,NULL,NULL,NULL,1,1,89,0,0,NULL,'Inherit','Inherit',9),(121,99,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','similique-sit-et-dolor','similique sit et dolor',NULL,NULL,NULL,NULL,1,1,90,0,0,NULL,'Inherit','Inherit',9),(122,100,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','ut-perferendis-aut','ut perferendis aut',NULL,NULL,NULL,NULL,1,1,91,0,0,NULL,'Inherit','Inherit',9),(123,101,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','dolorem-cumque-eligendi-nesciunt-animi-et','dolorem cumque eligendi nesciunt animi et',NULL,NULL,NULL,NULL,1,1,92,0,0,NULL,'Inherit','Inherit',9),(124,102,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','ducimus-quia-veritatis','ducimus quia veritatis',NULL,NULL,NULL,NULL,1,1,93,0,0,NULL,'Inherit','Inherit',9),(125,103,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','dignissimos-mollitia','dignissimos mollitia',NULL,NULL,NULL,NULL,1,1,94,0,0,NULL,'Inherit','Inherit',9),(126,104,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:26','2017-09-27 11:57:26','error-ut-culpa','error ut culpa',NULL,NULL,NULL,NULL,1,1,95,0,0,NULL,'Inherit','Inherit',9),(127,105,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:27','2017-09-27 11:57:27','nam-repudiandae-accusamus','nam repudiandae accusamus',NULL,NULL,NULL,NULL,1,1,96,0,0,NULL,'Inherit','Inherit',9),(128,106,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:27','2017-09-27 11:57:27','et-laborum-voluptatum-quo-ratione-a','et laborum voluptatum quo ratione a',NULL,NULL,NULL,NULL,1,1,97,0,0,NULL,'Inherit','Inherit',9),(129,107,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:27','2017-09-27 11:57:27','autem-animi-omnis-laborum-aliquam','autem animi omnis laborum aliquam',NULL,NULL,NULL,NULL,1,1,98,0,0,NULL,'Inherit','Inherit',9),(130,108,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:27','2017-09-27 11:57:27','a-dignissimos','a dignissimos',NULL,NULL,NULL,NULL,1,1,99,0,0,NULL,'Inherit','Inherit',9),(131,109,1,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 11:57:27','2017-09-27 11:57:27','unde-officiis','unde officiis',NULL,NULL,NULL,NULL,1,1,100,0,0,NULL,'Inherit','Inherit',9),(132,12,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:22','2017-09-27 11:57:15','expedita-nam-facilis-velit-provident-consectetur','Expedita nam facilis velit provident consectetur',NULL,NULL,NULL,NULL,1,1,3,0,0,NULL,'Inherit','Inherit',9),(133,13,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:22','2017-09-27 11:57:16','qui-ea','Qui ea',NULL,NULL,NULL,NULL,1,1,4,0,0,NULL,'Inherit','Inherit',9),(134,14,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','non-dignissimos-molestiae','Non dignissimos molestiae',NULL,NULL,NULL,NULL,1,1,5,0,0,NULL,'Inherit','Inherit',9),(135,15,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','rerum-delectus-qui-a-eum-enim','Rerum delectus qui a eum enim',NULL,NULL,NULL,NULL,1,1,6,0,0,NULL,'Inherit','Inherit',9),(136,16,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','expedita-excepturi-placeat-excepturi','Expedita excepturi placeat excepturi',NULL,NULL,NULL,NULL,1,1,7,0,0,NULL,'Inherit','Inherit',9),(137,17,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','nemo-adipisci-molestiae-autem-beatae-atque','Nemo adipisci molestiae autem beatae atque',NULL,NULL,NULL,NULL,1,1,8,0,0,NULL,'Inherit','Inherit',9),(138,18,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','ut-hic-laboriosam-laborum','Ut hic laboriosam laborum',NULL,NULL,NULL,NULL,1,1,9,0,0,NULL,'Inherit','Inherit',9),(139,19,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:16','vitae-vel-itaque-perferendis','Vitae vel itaque perferendis',NULL,NULL,NULL,NULL,1,1,10,0,0,NULL,'Inherit','Inherit',9),(140,20,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','inventore-labore-reprehenderit-quia-iste','Inventore labore reprehenderit quia iste',NULL,NULL,NULL,NULL,1,1,11,0,0,NULL,'Inherit','Inherit',9),(141,21,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','consequatur-ab-voluptatem-excepturi','Consequatur ab voluptatem excepturi',NULL,NULL,NULL,NULL,1,1,12,0,0,NULL,'Inherit','Inherit',9),(142,22,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:23','2017-09-27 11:57:17','eaque-dolores-facere-totam-non-sed','Eaque dolores facere totam non sed',NULL,NULL,NULL,NULL,1,1,13,0,0,NULL,'Inherit','Inherit',9),(143,23,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','sequi-enim-sit','Sequi enim sit',NULL,NULL,NULL,NULL,1,1,14,0,0,NULL,'Inherit','Inherit',9),(144,24,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','alias-quia','Alias quia',NULL,NULL,NULL,NULL,1,1,15,0,0,NULL,'Inherit','Inherit',9),(145,25,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','non-nesciunt-voluptatem-beatae-placeat-aut','Non nesciunt voluptatem beatae placeat aut',NULL,NULL,NULL,NULL,1,1,16,0,0,NULL,'Inherit','Inherit',9),(146,26,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','et-dolorem-sint-consectetur-aut-similique','Et dolorem sint consectetur aut similique',NULL,NULL,NULL,NULL,1,1,17,0,0,NULL,'Inherit','Inherit',9),(147,27,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','repellat-consequatur','Repellat consequatur',NULL,NULL,NULL,NULL,1,1,18,0,0,NULL,'Inherit','Inherit',9),(148,28,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:17','dicta-ea-qui-quae-sunt-aut','Dicta ea qui quae sunt aut',NULL,NULL,NULL,NULL,1,1,19,0,0,NULL,'Inherit','Inherit',9),(149,29,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','accusamus-laborum-eius','Accusamus laborum eius',NULL,NULL,NULL,NULL,1,1,20,0,0,NULL,'Inherit','Inherit',9),(150,30,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','repellat-aperiam-ipsum-voluptatem','Repellat aperiam ipsum voluptatem',NULL,NULL,NULL,NULL,1,1,21,0,0,NULL,'Inherit','Inherit',9),(151,31,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:24','2017-09-27 11:57:18','recusandae-magnam-iste-qui','Recusandae magnam iste qui',NULL,NULL,NULL,NULL,1,1,22,0,0,NULL,'Inherit','Inherit',9),(152,32,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','ut-est-dolor-eveniet','Ut est dolor eveniet',NULL,NULL,NULL,NULL,1,1,23,0,0,NULL,'Inherit','Inherit',9),(153,33,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','illo-repellat-suscipit-esse','Illo repellat suscipit esse',NULL,NULL,NULL,NULL,1,1,24,0,0,NULL,'Inherit','Inherit',9),(154,34,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','nihil-itaque-et-beatae','Nihil itaque et beatae',NULL,NULL,NULL,NULL,1,1,25,0,0,NULL,'Inherit','Inherit',9),(155,35,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','et-eveniet','Et eveniet',NULL,NULL,NULL,NULL,1,1,26,0,0,NULL,'Inherit','Inherit',9),(156,36,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','et-ullam-quis-magni-quod-deleniti','Et ullam quis magni quod deleniti',NULL,NULL,NULL,NULL,1,1,27,0,0,NULL,'Inherit','Inherit',9),(157,37,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:18','maiores-optio-quaerat-a-ad-facere','Maiores optio quaerat a ad facere',NULL,NULL,NULL,NULL,1,1,28,0,0,NULL,'Inherit','Inherit',9),(158,38,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','explicabo-tempora-non-velit','Explicabo tempora non velit',NULL,NULL,NULL,NULL,1,1,29,0,0,NULL,'Inherit','Inherit',9),(159,39,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','dolorem-quis','Dolorem quis',NULL,NULL,NULL,NULL,1,1,30,0,0,NULL,'Inherit','Inherit',9),(160,40,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:25','2017-09-27 11:57:19','ipsa-et-enim-eum','Ipsa et enim eum',NULL,NULL,NULL,NULL,1,1,31,0,0,NULL,'Inherit','Inherit',9),(161,41,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','et-qui','Et qui',NULL,NULL,NULL,NULL,1,1,32,0,0,NULL,'Inherit','Inherit',9),(162,42,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','architecto-repellat-suscipit-accusantium-magni-hic','Architecto repellat suscipit accusantium magni hic',NULL,NULL,NULL,NULL,1,1,33,0,0,NULL,'Inherit','Inherit',9),(163,43,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','repudiandae-ipsam-incidunt-modi','Repudiandae ipsam incidunt modi',NULL,NULL,NULL,NULL,1,1,34,0,0,NULL,'Inherit','Inherit',9),(164,44,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','dolore-sequi-iste','Dolore sequi iste',NULL,NULL,NULL,NULL,1,1,35,0,0,NULL,'Inherit','Inherit',9),(165,45,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:19','modi-sit-voluptas','Modi sit voluptas',NULL,NULL,NULL,NULL,1,1,36,0,0,NULL,'Inherit','Inherit',9),(166,46,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','et-autem-quidem-est-culpa-sint','Et autem quidem est culpa sint',NULL,NULL,NULL,NULL,1,1,37,0,0,NULL,'Inherit','Inherit',9),(167,47,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','vel-ea','Vel ea',NULL,NULL,NULL,NULL,1,1,38,0,0,NULL,'Inherit','Inherit',9),(168,48,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','quis-qui','Quis qui',NULL,NULL,NULL,NULL,1,1,39,0,0,NULL,'Inherit','Inherit',9),(169,49,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:26','2017-09-27 11:57:20','cum-quis-blanditiis','Cum quis blanditiis',NULL,NULL,NULL,NULL,1,1,40,0,0,NULL,'Inherit','Inherit',9),(170,50,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','iste-provident-aperiam-accusamus','Iste provident aperiam accusamus',NULL,NULL,NULL,NULL,1,1,41,0,0,NULL,'Inherit','Inherit',9),(171,51,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','explicabo-et','Explicabo et',NULL,NULL,NULL,NULL,1,1,42,0,0,NULL,'Inherit','Inherit',9),(172,52,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','excepturi-neque-ut-labore-nemo','Excepturi neque ut labore nemo',NULL,NULL,NULL,NULL,1,1,43,0,0,NULL,'Inherit','Inherit',9),(173,53,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','ea-eligendi-consectetur','Ea eligendi consectetur',NULL,NULL,NULL,NULL,1,1,44,0,0,NULL,'Inherit','Inherit',9),(174,54,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:20','autem-sunt','Autem sunt',NULL,NULL,NULL,NULL,1,1,45,0,0,NULL,'Inherit','Inherit',9),(175,55,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','voluptatem-nobis-itaque','Voluptatem nobis itaque',NULL,NULL,NULL,NULL,1,1,46,0,0,NULL,'Inherit','Inherit',9),(176,56,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','nesciunt-quia-porro-sapiente','Nesciunt quia porro sapiente',NULL,NULL,NULL,NULL,1,1,47,0,0,NULL,'Inherit','Inherit',9),(177,57,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:27','2017-09-27 11:57:21','possimus-fugit-molestiae-est-et','Possimus fugit molestiae est et',NULL,NULL,NULL,NULL,1,1,48,0,0,NULL,'Inherit','Inherit',9),(178,58,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','id-sequi-facere','Id sequi facere',NULL,NULL,NULL,NULL,1,1,49,0,0,NULL,'Inherit','Inherit',9),(179,59,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','porro-natus','Porro natus',NULL,NULL,NULL,NULL,1,1,50,0,0,NULL,'Inherit','Inherit',9),(180,60,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','eaque-sunt-doloribus','Eaque sunt doloribus',NULL,NULL,NULL,NULL,1,1,51,0,0,NULL,'Inherit','Inherit',9),(181,61,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','vitae-in-ipsa','Vitae in ipsa',NULL,NULL,NULL,NULL,1,1,52,0,0,NULL,'Inherit','Inherit',9),(182,62,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:21','perferendis-sapiente-voluptatem-ea-dolorum-tempora','Perferendis sapiente voluptatem ea dolorum tempora',NULL,NULL,NULL,NULL,1,1,53,0,0,NULL,'Inherit','Inherit',9),(183,63,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','architecto-quisquam','Architecto quisquam',NULL,NULL,NULL,NULL,1,1,54,0,0,NULL,'Inherit','Inherit',9),(184,64,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','aspernatur-sit-maiores-numquam-odit','Aspernatur sit maiores numquam odit',NULL,NULL,NULL,NULL,1,1,55,0,0,NULL,'Inherit','Inherit',9),(185,65,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','sit-ea','Sit ea',NULL,NULL,NULL,NULL,1,1,56,0,0,NULL,'Inherit','Inherit',9),(186,66,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:28','2017-09-27 11:57:22','odio-natus-tempore-omnis','Odio natus tempore omnis',NULL,NULL,NULL,NULL,1,1,57,0,0,NULL,'Inherit','Inherit',9),(187,67,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','ex-aut-et-ut-animi','Ex aut et ut animi',NULL,NULL,NULL,NULL,1,1,58,0,0,NULL,'Inherit','Inherit',9),(188,68,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','sapiente-placeat-nihil-consequuntur','Sapiente placeat nihil consequuntur',NULL,NULL,NULL,NULL,1,1,59,0,0,NULL,'Inherit','Inherit',9),(189,69,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','voluptatem-quia-inventore-sequi-quam','Voluptatem quia inventore sequi quam',NULL,NULL,NULL,NULL,1,1,60,0,0,NULL,'Inherit','Inherit',9),(190,70,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','rerum-asperiores','Rerum asperiores',NULL,NULL,NULL,NULL,1,1,61,0,0,NULL,'Inherit','Inherit',9),(191,71,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:22','non-dignissimos-illum','Non dignissimos illum',NULL,NULL,NULL,NULL,1,1,62,0,0,NULL,'Inherit','Inherit',9),(192,72,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','neque-molestias-ipsa','Neque molestias ipsa',NULL,NULL,NULL,NULL,1,1,63,0,0,NULL,'Inherit','Inherit',9),(193,73,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','maxime-dolores','Maxime dolores',NULL,NULL,NULL,NULL,1,1,64,0,0,NULL,'Inherit','Inherit',9),(194,74,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','sed-labore-iure','Sed labore iure',NULL,NULL,NULL,NULL,1,1,65,0,0,NULL,'Inherit','Inherit',9),(195,75,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:29','2017-09-27 11:57:23','eligendi-nulla-eveniet-voluptatum-eius-sint','Eligendi nulla eveniet voluptatum eius sint',NULL,NULL,NULL,NULL,1,1,66,0,0,NULL,'Inherit','Inherit',9),(196,76,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','consectetur-est-alias-repellat-fugit','Consectetur est alias repellat fugit',NULL,NULL,NULL,NULL,1,1,67,0,0,NULL,'Inherit','Inherit',9),(197,77,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','aut-esse','Aut esse',NULL,NULL,NULL,NULL,1,1,68,0,0,NULL,'Inherit','Inherit',9),(198,78,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','nesciunt-rerum-voluptas','Nesciunt rerum voluptas',NULL,NULL,NULL,NULL,1,1,69,0,0,NULL,'Inherit','Inherit',9),(199,79,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:23','doloribus-soluta-eius-optio','Doloribus soluta eius optio',NULL,NULL,NULL,NULL,1,1,70,0,0,NULL,'Inherit','Inherit',9),(200,80,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','ratione-est','Ratione est',NULL,NULL,NULL,NULL,1,1,71,0,0,NULL,'Inherit','Inherit',9),(201,81,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','officiis-ipsam-eius','Officiis ipsam eius',NULL,NULL,NULL,NULL,1,1,72,0,0,NULL,'Inherit','Inherit',9),(202,82,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','itaque-molestiae-aperiam-soluta','Itaque molestiae aperiam soluta',NULL,NULL,NULL,NULL,1,1,73,0,0,NULL,'Inherit','Inherit',9),(203,83,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:30','2017-09-27 11:57:24','debitis-id-reprehenderit','Debitis id reprehenderit',NULL,NULL,NULL,NULL,1,1,74,0,0,NULL,'Inherit','Inherit',9),(204,84,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','reiciendis-optio-error-eum-omnis-vel','Reiciendis optio error eum omnis vel',NULL,NULL,NULL,NULL,1,1,75,0,0,NULL,'Inherit','Inherit',9),(205,85,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','cumque-et-commodi-blanditiis-culpa-ad','Cumque et commodi blanditiis culpa ad',NULL,NULL,NULL,NULL,1,1,76,0,0,NULL,'Inherit','Inherit',9),(206,86,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','eveniet-debitis','Eveniet debitis',NULL,NULL,NULL,NULL,1,1,77,0,0,NULL,'Inherit','Inherit',9),(207,87,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:24','omnis-dignissimos','Omnis dignissimos',NULL,NULL,NULL,NULL,1,1,78,0,0,NULL,'Inherit','Inherit',9),(208,88,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','facere-qui-suscipit-et','Facere qui suscipit et',NULL,NULL,NULL,NULL,1,1,79,0,0,NULL,'Inherit','Inherit',9),(209,89,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','sapiente-autem-est-alias-veniam','Sapiente autem est alias veniam',NULL,NULL,NULL,NULL,1,1,80,0,0,NULL,'Inherit','Inherit',9),(210,90,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','similique-rerum-assumenda-quaerat-officiis-consequatur','Similique rerum assumenda quaerat officiis consequatur',NULL,NULL,NULL,NULL,1,1,81,0,0,NULL,'Inherit','Inherit',9),(211,91,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','autem-libero-molestiae-quod','Autem libero molestiae quod',NULL,NULL,NULL,NULL,1,1,82,0,0,NULL,'Inherit','Inherit',9),(212,92,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:31','2017-09-27 11:57:25','culpa-tempore-ullam-ipsum','Culpa tempore ullam ipsum',NULL,NULL,NULL,NULL,1,1,83,0,0,NULL,'Inherit','Inherit',9),(213,93,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','debitis-nihil','Debitis nihil',NULL,NULL,NULL,NULL,1,1,84,0,0,NULL,'Inherit','Inherit',9),(214,94,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','et-consequatur-laboriosam','Et consequatur laboriosam',NULL,NULL,NULL,NULL,1,1,85,0,0,NULL,'Inherit','Inherit',9),(215,95,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','repellat-sed-a-ut-cumque','Repellat sed a ut cumque',NULL,NULL,NULL,NULL,1,1,86,0,0,NULL,'Inherit','Inherit',9),(216,96,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:25','voluptas-dolor-voluptatem-adipisci','Voluptas dolor voluptatem adipisci',NULL,NULL,NULL,NULL,1,1,87,0,0,NULL,'Inherit','Inherit',9),(217,97,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','cupiditate-voluptas','Cupiditate voluptas',NULL,NULL,NULL,NULL,1,1,88,0,0,NULL,'Inherit','Inherit',9),(218,98,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','consequatur-sit-praesentium','Consequatur sit praesentium',NULL,NULL,NULL,NULL,1,1,89,0,0,NULL,'Inherit','Inherit',9),(219,99,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','similique-sit-et-dolor','Similique sit et dolor',NULL,NULL,NULL,NULL,1,1,90,0,0,NULL,'Inherit','Inherit',9),(220,100,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','ut-perferendis-aut','Ut perferendis aut',NULL,NULL,NULL,NULL,1,1,91,0,0,NULL,'Inherit','Inherit',9),(221,101,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:32','2017-09-27 11:57:26','dolorem-cumque-eligendi-nesciunt-animi-et','Dolorem cumque eligendi nesciunt animi et',NULL,NULL,NULL,NULL,1,1,92,0,0,NULL,'Inherit','Inherit',9),(222,102,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','ducimus-quia-veritatis','Ducimus quia veritatis',NULL,NULL,NULL,NULL,1,1,93,0,0,NULL,'Inherit','Inherit',9),(223,103,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','dignissimos-mollitia','Dignissimos mollitia',NULL,NULL,NULL,NULL,1,1,94,0,0,NULL,'Inherit','Inherit',9),(224,104,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:26','error-ut-culpa','Error ut culpa',NULL,NULL,NULL,NULL,1,1,95,0,0,NULL,'Inherit','Inherit',9),(225,105,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','nam-repudiandae-accusamus','Nam repudiandae accusamus',NULL,NULL,NULL,NULL,1,1,96,0,0,NULL,'Inherit','Inherit',9),(226,106,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','et-laborum-voluptatum-quo-ratione-a','Et laborum voluptatum quo ratione a',NULL,NULL,NULL,NULL,1,1,97,0,0,NULL,'Inherit','Inherit',9),(227,107,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','autem-animi-omnis-laborum-aliquam','Autem animi omnis laborum aliquam',NULL,NULL,NULL,NULL,1,1,98,0,0,NULL,'Inherit','Inherit',9),(228,108,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','a-dignissimos','A dignissimos',NULL,NULL,NULL,NULL,1,1,99,0,0,NULL,'Inherit','Inherit',9),(229,109,2,1,1,1,'SilverStripe\\Lessons\\ArticlePage','2017-09-27 12:03:33','2017-09-27 11:57:27','unde-officiis','Unde officiis',NULL,NULL,NULL,NULL,1,1,100,0,0,NULL,'Inherit','Inherit',9); -/*!40000 ALTER TABLE `SiteTree_Versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `SiteTree_ViewerGroups` --- - -DROP TABLE IF EXISTS `SiteTree_ViewerGroups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `SiteTree_ViewerGroups` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `SiteTreeID` int(11) NOT NULL DEFAULT '0', - `GroupID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `SiteTreeID` (`SiteTreeID`), - KEY `GroupID` (`GroupID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `SiteTree_ViewerGroups` --- - -LOCK TABLES `SiteTree_ViewerGroups` WRITE; -/*!40000 ALTER TABLE `SiteTree_ViewerGroups` DISABLE KEYS */; -/*!40000 ALTER TABLE `SiteTree_ViewerGroups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `VirtualPage` --- - -DROP TABLE IF EXISTS `VirtualPage`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `VirtualPage` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `VersionID` int(11) NOT NULL DEFAULT '0', - `CopyContentFromID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `CopyContentFromID` (`CopyContentFromID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `VirtualPage` --- - -LOCK TABLES `VirtualPage` WRITE; -/*!40000 ALTER TABLE `VirtualPage` DISABLE KEYS */; -/*!40000 ALTER TABLE `VirtualPage` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `VirtualPage_Live` --- - -DROP TABLE IF EXISTS `VirtualPage_Live`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `VirtualPage_Live` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `VersionID` int(11) NOT NULL DEFAULT '0', - `CopyContentFromID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - KEY `CopyContentFromID` (`CopyContentFromID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `VirtualPage_Live` --- - -LOCK TABLES `VirtualPage_Live` WRITE; -/*!40000 ALTER TABLE `VirtualPage_Live` DISABLE KEYS */; -/*!40000 ALTER TABLE `VirtualPage_Live` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `VirtualPage_Versions` --- - -DROP TABLE IF EXISTS `VirtualPage_Versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `VirtualPage_Versions` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `RecordID` int(11) NOT NULL DEFAULT '0', - `Version` int(11) NOT NULL DEFAULT '0', - `VersionID` int(11) NOT NULL DEFAULT '0', - `CopyContentFromID` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`), - UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`), - KEY `RecordID` (`RecordID`), - KEY `Version` (`Version`), - KEY `CopyContentFromID` (`CopyContentFromID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `VirtualPage_Versions` --- - -LOCK TABLES `VirtualPage_Versions` WRITE; -/*!40000 ALTER TABLE `VirtualPage_Versions` DISABLE KEYS */; -/*!40000 ALTER TABLE `VirtualPage_Versions` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2017-09-27 12:06:46 diff --git a/Lesson-21-begin/app/_config.php b/Lesson-21-begin/app/_config.php index b3d9bbc..4b0ec70 100644 --- a/Lesson-21-begin/app/_config.php +++ b/Lesson-21-begin/app/_config.php @@ -1 +1,9 @@ 'Varchar', + 'Title' => 'Varchar' ]; private static $has_one = [ - 'ArticleHolder' => ArticleHolder::class, + 'ArticleHolder' => ArticleHolder::class ]; private static $belongs_many_many = [ - 'Articles' => ArticlePage::class, + 'Articles' => ArticlePage::class ]; public function getCMSFields() @@ -33,5 +33,4 @@ public function Link() 'category/'.$this->ID ); } - } diff --git a/Lesson-21-begin/app/src/ArticleComment.php b/Lesson-21-begin/app/src/ArticleComment.php index 432dd30..a672f40 100644 --- a/Lesson-21-begin/app/src/ArticleComment.php +++ b/Lesson-21-begin/app/src/ArticleComment.php @@ -1,12 +1,11 @@ 'Varchar', 'Email' => 'Varchar', @@ -14,6 +13,6 @@ class ArticleComment extends DataObject ]; private static $has_one = [ - 'ArticlePage' => ArticlePage::class, + 'ArticlePage' => ArticlePage::class ]; -} +} \ No newline at end of file diff --git a/Lesson-21-begin/app/src/ArticleHolder.php b/Lesson-21-begin/app/src/ArticleHolder.php index 349dd84..5cb3c54 100644 --- a/Lesson-21-begin/app/src/ArticleHolder.php +++ b/Lesson-21-begin/app/src/ArticleHolder.php @@ -1,24 +1,24 @@ ArticleCategory::class, + private static $allowed_children = [ + ArticlePage::class ]; - private static $allowed_children = [ - ArticlePage::class - ]; + private static $has_many = [ + 'Categories' => ArticleCategory::class + ]; public function getCMSFields() { @@ -33,15 +33,6 @@ public function getCMSFields() return $fields; } - public function Regions () - { - $page = RegionsPage::get()->first(); - - if($page) { - return $page->Regions(); - } - } - public function ArchiveDates() { $list = ArrayList::create(); @@ -59,21 +50,31 @@ public function ArchiveDates() $result = $query->execute(); if ($result) { - foreach ($result as $record) { + foreach($result as $record) { list($year, $monthName, $monthNumber) = explode('_', $record['DateString']); + $list->push(ArrayData::create([ 'Year' => $year, 'MonthName' => $monthName, 'MonthNumber' => $monthNumber, 'Link' => $this->Link("date/$year/$monthNumber"), 'ArticleCount' => ArticlePage::get()->where([ - "DATE_FORMAT(\"Date\",'%Y_%m')" => "{$year}_{$monthNumber}", - "\"ParentID\"" => $this->ID - ])->count() + "DATE_FORMAT(\"Date\",'%Y_%m')" => "{$year}_{$monthNumber}", + "\"ParentID\"" => $this->ID + ])->count() ])); } } return $list; } + + public function Regions() + { + $page = RegionsPage::get()->first(); + + if ($page) { + return $page->Regions(); + } + } } diff --git a/Lesson-21-begin/app/src/ArticleHolderController.php b/Lesson-21-begin/app/src/ArticleHolderController.php index de9fdb2..42fbf34 100644 --- a/Lesson-21-begin/app/src/ArticleHolderController.php +++ b/Lesson-21-begin/app/src/ArticleHolderController.php @@ -1,23 +1,23 @@ sort('Date DESC'); } - public function category (HTTPRequest $r) + public function category(HTTPRequest $r) { $category = ArticleCategory::get()->byID( $r->param('ID') ); - if(!$category) { + if (!$category) { return $this->httpError(404,'That category was not found'); } @@ -45,13 +45,13 @@ public function category (HTTPRequest $r) ]; } - public function region (HTTPRequest $r) + public function region(HTTPRequest $r) { $region = Region::get()->byID( $r->param('ID') ); - if(!$region) { + if (!$region) { return $this->httpError(404,'That region was not found'); } @@ -69,18 +69,18 @@ public function date(HTTPRequest $r) $year = $r->param('ID'); $month = $r->param('OtherID'); - if(!$year) return $this->httpError(404); + if (!$year) return $this->httpError(404); $startDate = $month ? "{$year}-{$month}-01" : "{$year}-01-01"; - if(strtotime($startDate) === false) { + if (strtotime($startDate) === false) { return $this->httpError(404, 'Invalid date'); } $adder = $month ? '+1 month' : '+1 year'; $endDate = date('Y-m-d', strtotime( $adder, - strtotime($startDate) + strtotime($startDate) )); $this->articleList = $this->articleList->filter([ @@ -92,9 +92,10 @@ public function date(HTTPRequest $r) 'StartDate' => DBField::create_field('Datetime', $startDate), 'EndDate' => DBField::create_field('Datetime', $endDate) ]; + } - public function PaginatedArticles ($num = 10) + public function PaginatedArticles($num = 10) { return PaginatedList::create( $this->articleList, diff --git a/Lesson-21-begin/app/src/ArticlePage.php b/Lesson-21-begin/app/src/ArticlePage.php index 3f831f0..8a40425 100644 --- a/Lesson-21-begin/app/src/ArticlePage.php +++ b/Lesson-21-begin/app/src/ArticlePage.php @@ -1,95 +1,82 @@ 'Date', - 'Teaser' => 'Text', - 'Author' => 'Varchar', - ]; + private static $db = [ + 'Date' => 'Date', + 'Teaser' => 'Text', + 'ArticleAuthor' => 'Varchar' + ]; private static $has_one = [ - 'Photo' => Image::class, - 'Brochure' => File::class, - 'Region' => Region::class, - ]; - - private static $many_many = [ - 'Categories' => ArticleCategory::class, + 'Photo' => Image::class, + 'Brochure' => File::class, + 'Region' => Region::class ]; private static $has_many = [ - 'Comments' => ArticleComment::class, + 'Comments' => ArticleComment::class ]; + private static $many_many = [ + 'Categories' => ArticleCategory::class + ]; - private static $owns = [ - 'Photo', - 'Brochure', - ]; - - public function getCMSFields() - { - $fields = parent::getCMSFields(); - $fields->addFieldToTab('Root.Main', DateField::create('Date','Date of article'), 'Content'); - $fields->addFieldToTab('Root.Main', TextareaField::create('Teaser') - ->setDescription('This is the summary that appears on the article list page.'), - 'Content' - ); - $fields->addFieldToTab('Root.Main', TextField::create('Author','Author of article'),'Content'); - $fields->addFieldToTab( - 'Root.Attachments', - $photo = UploadField::create('Photo') - ); - $fields->addFieldToTab( - 'Root.Attachments', - $brochure = UploadField::create( - 'Brochure', - 'Travel brochure, optional (PDF only)' - ) - ); - - $photo->setFolderName('travel-photos'); - $brochure - ->setFolderName('travel-brochures') - ->getValidator()->setAllowedExtensions(array('pdf')); + private static $owns = [ + 'Photo', + 'Brochure' + ]; + public function getCMSFields() + { + $fields = parent::getCMSFields(); + $fields->addFieldToTab('Root.Main', DateField::create('Date','Date of article'), 'Content'); + $fields->addFieldToTab('Root.Main', TextareaField::create('Teaser') + ->setDescription('This is the summary that appears on the article list page.'), + 'Content' + ); + $fields->addFieldToTab('Root.Main', TextField::create('ArticleAuthor', 'Author of article'), 'Content'); + $fields->addFieldToTab('Root.Attachments', $photo = UploadField::create('Photo')); + $fields->addFieldToTab('Root.Attachments', $brochure = UploadField::create( + 'Brochure', + 'Travel brochure, optional (PDF only)' + )); + $photo->setFolderName('travel-photos'); + $brochure + ->setFolderName('travel-brochures') + ->getValidator()->setAllowedExtensions(array('pdf')); $fields->addFieldToTab('Root.Categories', CheckboxSetField::create( 'Categories', 'Selected categories', - $this->Parent()->Categories()->map('ID','Title') + $this->Parent()->Categories()->map('ID', 'Title') )); - $fields->addFieldToTab('Root.Main', DropdownField::create( 'RegionID', 'Region', Region::get()->map('ID','Title') )->setEmptyString('-- None --'), 'Content'); - - return $fields; - } + return $fields; + } public function CategoriesList() { - if($this->Categories()->exists()) { + if ($this->Categories()->exists()) { return implode(', ', $this->Categories()->column('Title')); } - + return null; } - } diff --git a/Lesson-21-begin/app/src/ArticlePageController.php b/Lesson-21-begin/app/src/ArticlePageController.php index e3ef8f6..8365e32 100644 --- a/Lesson-21-begin/app/src/ArticlePageController.php +++ b/Lesson-21-begin/app/src/ArticlePageController.php @@ -1,20 +1,21 @@ addExtraClass('col-sm-6'), + EmailField::create('Email', '') + ->addExtraClass('col-sm-6'), + TextareaField::create('Comment', '') + ->addExtraClass('col-sm-12') ), FieldList::create( - FormAction::create('handleComment','Post Comment') + FormAction::create('handleComment', 'Post Comment') ->setUseButtonTag(true) ->addExtraClass('btn btn-default-color btn-lg') ), - RequiredFields::create('Name','Email','Comment') + RequiredFields::create('Name', 'Email', 'Comment') ) ->addExtraClass('form-style'); foreach($form->Fields() as $field) { - $field->addExtraClass('form-control') - ->setAttribute('placeholder', $field->getName().'*'); - } - - foreach($form->Fields() as $field) { - $field->addExtraClass('form-control') + $field + ->setAttribute('class', $field->getAttribute('class').' form-control') ->setAttribute('placeholder', $field->getName().'*'); } @@ -55,26 +55,24 @@ public function handleComment($data, $form) { $session = $this->getRequest()->getSession(); $session->set("FormData.{$form->getName()}.data", $data); - $existing = $this->Comments()->filter([ 'Comment' => $data['Comment'] ]); - if($existing->exists() && strlen($data['Comment']) > 20) { - $form->sessionMessage('That comment already exists! Spammer!','bad'); - - return $this->redirectBack(); + if($existing->exists() && strlen($data['Comment']) > 20) + { + $form->sessionMessage('That comment already exists! Spammer!', 'bad'); + } + else + { + $comment = ArticleComment::create(); + $comment->ArticlePageID = $this->ID; + $form->saveInto($comment); + $comment->write(); + $session->clear("FormData.{$form->getName()}.data"); + $form->sessionMessage('Thanks for your comment', 'good'); } - - $comment = ArticleComment::create(); - $comment->ArticlePageID = $this->ID; - $form->saveInto($comment); - $comment->write(); - - $session->clear("FormData.{$form->getName()}.data"); - $form->sessionMessage('Thanks for your comment!','good'); return $this->redirectBack(); } - } diff --git a/Lesson-21-begin/app/src/HomePage.php b/Lesson-21-begin/app/src/HomePage.php index 9cc7cee..e8a4a35 100644 --- a/Lesson-21-begin/app/src/HomePage.php +++ b/Lesson-21-begin/app/src/HomePage.php @@ -1,6 +1,6 @@ filter(array( - 'FeaturedOnHomepage' => true - )) - ->limit(6); + ->filter(array( + 'FeaturedOnHomepage' => true + )) + ->limit(6); } - -} +} \ No newline at end of file diff --git a/Lesson-21-begin/app/src/Page.php b/Lesson-21-begin/app/src/Page.php index b83000d..d5d11e7 100644 --- a/Lesson-21-begin/app/src/Page.php +++ b/Lesson-21-begin/app/src/Page.php @@ -1,12 +1,13 @@ - * array ( - * 'action', // anyone can access this action - * 'action' => true, // same as above - * 'action' => 'ADMIN', // you must have ADMIN permissions to access this action - * 'action' => '->checkAction' // you can only access this action if $this->checkAction() returns true - * ); - * - * - * @var array - */ - private static $allowed_actions = array( - - ); - - protected function init() + class PageController extends ContentController { - parent::init(); - Requirements::themedCSS("bootstrap.min"); - Requirements::themedCSS("style"); - Requirements::themedJavascript("common/modernizr"); - Requirements::themedJavascript("common/jquery-1.11.1.min"); - Requirements::themedJavascript("common/bootstrap.min"); - Requirements::themedJavascript("common/bootstrap-datepicker"); - Requirements::themedJavascript("common/chosen.min"); - Requirements::themedJavascript("common/bootstrap-checkbox"); - Requirements::themedJavascript("common/nice-scroll"); - Requirements::themedJavascript("common/jquery-browser"); - Requirements::themedJavascript("scripts"); + /** + * An array of actions that can be accessed via a request. Each array element should be an action name, and the + * permissions or conditions required to allow the user to access it. + * + * + * [ + * 'action', // anyone can access this action + * 'action' => true, // same as above + * 'action' => 'ADMIN', // you must have ADMIN permissions to access this action + * 'action' => '->checkAction' // you can only access this action if $this->checkAction() returns true + * ]; + * + * + * @var array + */ + private static $allowed_actions = []; + + protected function init() + { + parent::init(); + Requirements::themedCSS('css/bootstrap.min.css'); + Requirements::themedCSS('css/style.css'); + Requirements::themedJavascript('javascript/common/modernizr.js'); + Requirements::themedJavascript('javascript/common/jquery-1.11.1.min.js'); + Requirements::themedJavascript('javascript/common/bootstrap.min.js'); + Requirements::themedJavascript('javascript/common/bootstrap-datepicker.js'); + Requirements::themedJavascript('javascript/common/chosen.min.js'); + Requirements::themedJavascript('javascript/common/bootstrap-checkbox.js'); + Requirements::themedJavascript('javascript/common/nice-scroll.js'); + Requirements::themedJavascript('javascript/common/jquery-browser.js'); + Requirements::themedJavascript('javascript/scripts.js'); + } } -} \ No newline at end of file +} diff --git a/Lesson-21-begin/app/src/Property.php b/Lesson-21-begin/app/src/Property.php index c109cfb..219776e 100644 --- a/Lesson-21-begin/app/src/Property.php +++ b/Lesson-21-begin/app/src/Property.php @@ -1,12 +1,10 @@ 'Varchar', 'PricePerNight' => 'Currency', @@ -27,13 +24,12 @@ class Property extends DataObject 'FeaturedOnHomepage' => 'Boolean', 'Description' => 'Text', 'AvailableStart' => 'Date', - 'AvailableEnd'=> 'Date', + 'AvailableEnd'=> 'Date' ]; - private static $has_one = [ 'Region' => Region::class, - 'PrimaryPhoto' => Image::class, + 'PrimaryPhoto' => Image::class ]; private static $summary_fields = [ @@ -44,55 +40,31 @@ class Property extends DataObject ]; private static $owns = [ - 'PrimaryPhoto', + 'PrimaryPhoto' ]; private static $extensions = [ - Versioned::class, + Versioned::class ]; private static $versioned_gridfield_extensions = true; - public function searchableFields() - { - return [ - 'Title' => [ - 'filter' => 'PartialMatchFilter', - 'title' => 'Title', - 'field' => TextField::class, - ], - 'RegionID' => [ - 'filter' => 'ExactMatchFilter', - 'title' => 'Region', - 'field' => DropdownField::create('RegionID') - ->setSource( - Region::get()->map('ID','Title') - ) - ->setEmptyString('-- Any region --') - ], - 'FeaturedOnHomepage' => [ - 'filter' => 'ExactMatchFilter', - 'title' => 'Only featured' - ] - ]; - } - public function getCMSfields() { $fields = FieldList::create(TabSet::create('Root')); $fields->addFieldsToTab('Root.Main', [ TextField::create('Title'), TextareaField::create('Description'), - CurrencyField::create('PricePerNight','Price (per night)'), + CurrencyField::create('PricePerNight', 'Price (per night)'), DropdownField::create('Bedrooms') ->setSource(ArrayLib::valuekey(range(1,10))), DropdownField::create('Bathrooms') ->setSource(ArrayLib::valuekey(range(1,10))), - DropdownField::create('RegionID','Region') - ->setSource(Region::get()->map('ID','Title')), - CheckboxField::create('FeaturedOnHomepage','Feature on homepage'), + DropdownField::create('RegionID', 'Region') + ->setSource(Region::get()->map('ID', 'Title')), + CheckboxField::create('FeaturedOnHomepage', 'Feature on homepage'), DateField::create('AvailableStart', 'Date available (start)'), - DateField::create('AvailableEnd', 'Date available (end)'), + DateField::create('AvailableEnd', 'Date available (end)') ]); $fields->addFieldToTab('Root.Photos', $upload = UploadField::create( 'PrimaryPhoto', @@ -100,10 +72,34 @@ public function getCMSfields() )); $upload->getValidator()->setAllowedExtensions(array( - 'png','jpeg','jpg','gif' + 'png', 'jpeg', 'jpg', 'gif' )); $upload->setFolderName('property-photos'); return $fields; } + + public function searchableFields() + { + return [ + 'Title' => [ + 'filter' => 'PartialMatchFilter', + 'title' => 'Title', + 'field' => TextField::class, + ], + 'RegionID' => [ + 'filter' => 'ExactMatchFilter', + 'title' => 'Region', + 'field' => DropdownField::create('RegionID') + ->setSource( + Region::get()->map('ID', 'Title') + ) + ->setEmptyString('-- Any region --') + ], + 'FeaturedOnHomepage' => [ + 'filter' => 'ExactMatchFilter', + 'title' => 'Only featured' + ] + ]; + } } diff --git a/Lesson-21-begin/app/src/PropertyAdmin.php b/Lesson-21-begin/app/src/PropertyAdmin.php index 66891a2..4119340 100644 --- a/Lesson-21-begin/app/src/PropertyAdmin.php +++ b/Lesson-21-begin/app/src/PropertyAdmin.php @@ -1,19 +1,18 @@ 1) ? 's' : ''); + } + + $prices = []; + + foreach(range(100, 1000, 50) as $i) { + $prices[$i] = '$'.$i; + } + + $form = Form::create( + $this, + 'PropertySearchForm', + FieldList::create( + TextField::create('Keywords') + ->setAttribute('placeholder', 'City, State, Country, etc...') + ->setAttribute('class', 'form-control'), + TextField::create('ArrivalDate', 'Arrive on...') + ->setAttribute('data-datepicker', true) + ->setAttribute('data-date-format', 'DD-MM-YYYY') + ->setAttribute('class', 'form-control'), + DropdownField::create('Nights', 'Stay for...') + ->setSource($nights) + ->setAttribute('class', 'form-control'), + DropdownField::create('Bedrooms') + ->setSource(ArrayLib::valuekey(range(1,5))) + ->setAttribute('class', 'form-control'), + DropdownField::create('Bathrooms') + ->setSource(ArrayLib::valuekey(range(1,5))) + ->setAttribute('class', 'form-control'), + DropdownField::create('MinPrice', 'Min. price') + ->setEmptyString('-- any --') + ->setSource($prices) + ->setAttribute('class', 'form-control'), + DropdownField::create('MaxPrice', 'Max. price') + ->setEmptyString('-- any --') + ->setSource($prices) + ->setAttribute('class', 'form-control') + ), + FieldList::create( + FormAction::create('doPropertySearch', 'Search') + ->addExtraClass('btn-lg btn-fullcolor') + ) + ); + + $form + ->setFormMethod('GET') + ->setFormAction($this->Link()) + ->disableSecurityToken() + ->loadDataFrom($this->request->getVars()); + + return $form; + } public function index(HTTPRequest $request) { @@ -39,11 +96,11 @@ public function index(HTTPRequest $request) $nightAdder = '+'.$request->getVar('Nights').' days'; $startDate = date('Y-m-d', $arrivalStamp); $endDate = date('Y-m-d', strtotime($nightAdder, $arrivalStamp)); + $properties = $properties->filter([ - 'AvailableStart:LessThanOrEqual' => $startDate, - 'AvailableEnd:GreaterThanOrEqual' => $endDate + 'AvailableStart:GreaterThanOrEqual' => $startDate, + 'AvailableEnd:LessThanOrEqual' => $endDate ]); - } $filters = [ @@ -55,10 +112,11 @@ public function index(HTTPRequest $request) foreach($filters as $filterKeys) { list($getVar, $field, $filter, $labelTemplate) = $filterKeys; + if ($value = $request->getVar($getVar)) { $activeFilters->push(ArrayData::create([ 'Label' => sprintf($labelTemplate, $value), - 'RemoveLink' => (HTTP::setGetVar($getVar, null, null, '&')), + 'RemoveLink' => HTTP::setGetVar($getVar, null, null, '&'), ])); $properties = $properties->filter([ @@ -76,68 +134,15 @@ public function index(HTTPRequest $request) $data = [ 'Results' => $paginatedProperties, - 'ActiveFilters' => $activeFilters, + 'ActiveFilters' => $activeFilters ]; if ($request->isAjax()) { - return $this->customise($data) - ->renderWith('SilverStripe/Lessons/Includes/PropertySearchResults'); + return $this + ->customise($data) + ->renderWith('SilverStripe/Example/Includes/PropertySearchResults'); } return $data; } - - public function PropertySearchForm() - { - $nights = []; - foreach(range(1,14) as $i) { - $nights[$i] = "$i night" . (($i > 1) ? 's' : ''); - } - $prices = []; - foreach(range(100, 1000, 50) as $i) { - $prices[$i] = '$'.$i; - } - - $form = Form::create( - $this, - 'PropertySearchForm', - FieldList::create( - TextField::create('Keywords') - ->setAttribute('placeholder', 'City, State, Country, etc...') - ->addExtraClass('form-control'), - TextField::create('ArrivalDate','Arrive on...') - ->setAttribute('data-datepicker', true) - ->setAttribute('data-date-format', 'DD-MM-YYYY') - ->addExtraClass('form-control'), - DropdownField::create('Nights','Stay for...') - ->setSource($nights) - ->addExtraClass('form-control'), - DropdownField::create('Bedrooms') - ->setSource(ArrayLib::valuekey(range(1,5))) - ->addExtraClass('form-control'), - DropdownField::create('Bathrooms') - ->setSource(ArrayLib::valuekey(range(1,5))) - ->addExtraClass('form-control'), - DropdownField::create('MinPrice','Min. price') - ->setEmptyString('-- any --') - ->setSource($prices) - ->addExtraClass('form-control'), - DropdownField::create('MaxPrice','Max. price') - ->setEmptyString('-- any --') - ->setSource($prices) - ->addExtraClass('form-control') - ), - FieldList::create( - FormAction::create('doPropertySearch','Search') - ->addExtraClass('btn-lg btn-fullcolor') - ) - ); - - $form->setFormMethod('GET') - ->setFormAction($this->Link()) - ->disableSecurityToken() - ->loadDataFrom($this->request->getVars()); - - return $form; - } -} \ No newline at end of file +} diff --git a/Lesson-21-begin/app/src/Region.php b/Lesson-21-begin/app/src/Region.php index 8afe783..738e5a1 100644 --- a/Lesson-21-begin/app/src/Region.php +++ b/Lesson-21-begin/app/src/Region.php @@ -1,6 +1,6 @@ 'Varchar', - 'Description' => 'HTMLText', + 'Description' => 'HTMLText' ]; private static $has_one = [ 'Photo' => Image::class, - 'RegionsPage' => RegionsPage::class, + 'RegionsPage' => RegionsPage::class ]; private static $has_many = [ - 'Articles' => ArticlePage::class, + 'Articles' => ArticlePage::class + ]; + + private static $owns = [ + 'Photo' ]; private static $summary_fields = [ @@ -34,30 +37,20 @@ class Region extends DataObject 'Description' => 'Description' ]; - private static $owns = [ - 'Photo', + private static $searchable_fields = [ + 'Title', + 'Description' ]; private static $extensions = [ - Versioned::class, + Versioned::class ]; - private static $versioned_gridfield_extensions = true; - - public function getGridThumbnail() - { - if($this->Photo()->exists()) { - return $this->Photo()->ScaleWidth(100); - } - - return "(no image)"; - } - public function getCMSFields() { $fields = FieldList::create( TextField::create('Title'), - HtmlEditorField::create('Description'), + HTMLEditorField::create('Description'), $uploader = UploadField::create('Photo') ); @@ -67,6 +60,16 @@ public function getCMSFields() return $fields; } + public function getGridThumbnail() + { + if($this->Photo()->exists()) + { + return $this->Photo()->ScaleWidth(100); + } + + return "(no image)"; + } + public function Link() { return $this->RegionsPage()->Link('show/'.$this->ID); @@ -81,9 +84,8 @@ public function ArticlesLink() { $page = ArticleHolder::get()->first(); - if($page) { + if ($page) { return $page->Link('region/'.$this->ID); } } - } diff --git a/Lesson-21-begin/app/src/RegionsPage.php b/Lesson-21-begin/app/src/RegionsPage.php index 382e9da..5a2605a 100644 --- a/Lesson-21-begin/app/src/RegionsPage.php +++ b/Lesson-21-begin/app/src/RegionsPage.php @@ -1,19 +1,19 @@ Region::class, + 'Regions' => Region::class ]; private static $owns = [ - 'Regions', + 'Regions' ]; public function getCMSFields() @@ -28,5 +28,4 @@ public function getCMSFields() return $fields; } - } diff --git a/Lesson-21-begin/app/src/RegionsPageController.php b/Lesson-21-begin/app/src/RegionsPageController.php index c585c8f..4a80158 100644 --- a/Lesson-21-begin/app/src/RegionsPageController.php +++ b/Lesson-21-begin/app/src/RegionsPageController.php @@ -1,6 +1,6 @@ byID($request->param('ID')); - if(!$region) { + if (!$region) { return $this->httpError(404,'That region could not be found'); } return [ 'Region' => $region, - 'Title' => $region->Title, + 'Title' => $region->Title ]; } - } diff --git a/Lesson-21-begin/app/src/SiteConfigExtension.php b/Lesson-21-begin/app/src/SiteConfigExtension.php index 1a0358e..3cb7c45 100644 --- a/Lesson-21-begin/app/src/SiteConfigExtension.php +++ b/Lesson-21-begin/app/src/SiteConfigExtension.php @@ -1,6 +1,6 @@ 'Varchar', 'TwitterLink' => 'Varchar', - 'GoogleLink' => 'Varchar', - 'YouTubeLink' => 'Varchar', - 'FooterContent' => 'Text' + 'YouTubeLink' => 'Varchar' ]; public function updateCMSFields(FieldList $fields) { - $fields->addFieldsToTab('Root.Social', array ( + $fields->addFieldsToTab('Root.Social', array( TextField::create('FacebookLink','Facebook'), TextField::create('TwitterLink','Twitter'), - TextField::create('GoogleLink','Google'), TextField::create('YouTubeLink','YouTube') )); - $fields->addFieldsToTab('Root.Main', TextareaField::create('FooterContent', 'Content for footer')); } } diff --git a/Lesson-21-begin/app/templates/Includes/Banner.ss b/Lesson-21-begin/app/templates/Includes/Banner.ss index 6edaeb3..30f3d22 100644 --- a/Lesson-21-begin/app/templates/Includes/Banner.ss +++ b/Lesson-21-begin/app/templates/Includes/Banner.ss @@ -1,12 +1,12 @@
-
-
-
-

$Title

- -
-
-
-
+
+
+
+

$Title

+ +
+
+
+ \ No newline at end of file diff --git a/Lesson-21-begin/app/templates/Includes/Footer.ss b/Lesson-21-begin/app/templates/Includes/Footer.ss index eff7c2a..e3e8322 100644 --- a/Lesson-21-begin/app/templates/Includes/Footer.ss +++ b/Lesson-21-begin/app/templates/Includes/Footer.ss @@ -1,101 +1,111 @@ - - - - + +
+

Popular regions

+
+
+ +
+
+ +
+
+
+ + + + diff --git a/Lesson-21-begin/app/templates/Includes/MainNav.ss b/Lesson-21-begin/app/templates/Includes/MainNav.ss index bbcddd7..14413ae 100644 --- a/Lesson-21-begin/app/templates/Includes/MainNav.ss +++ b/Lesson-21-begin/app/templates/Includes/MainNav.ss @@ -1,23 +1,19 @@ - + diff --git a/Lesson-21-begin/app/templates/Includes/TopBar.ss b/Lesson-21-begin/app/templates/Includes/TopBar.ss index 9d791fd..fead444 100644 --- a/Lesson-21-begin/app/templates/Includes/TopBar.ss +++ b/Lesson-21-begin/app/templates/Includes/TopBar.ss @@ -1,24 +1,24 @@ -
-
-
-
- -
-
-
-
+
+
+
+
+ +
+
+
+
diff --git a/Lesson-21-begin/app/templates/Layout/Page.ss b/Lesson-21-begin/app/templates/Layout/Page.ss index a34917a..0e4d4c4 100644 --- a/Lesson-21-begin/app/templates/Layout/Page.ss +++ b/Lesson-21-begin/app/templates/Layout/Page.ss @@ -1,27 +1,21 @@ <% include Banner %> -
-
-
-
- $Content - $Form -
- - -
-
+
+
+
+ $Content + $Form +
+ +
+
- - - - diff --git a/Lesson-21-begin/app/templates/Page.ss b/Lesson-21-begin/app/templates/Page.ss index 839f8ed..196628c 100644 --- a/Lesson-21-begin/app/templates/Page.ss +++ b/Lesson-21-begin/app/templates/Page.ss @@ -2,30 +2,28 @@ - - - <% base_tag %> - $MetaTags(false) - One Ring Rentals: $Title - - - - - - - - - - -
- - $Layout - <% include Footer %> -
- + + + + + <% base_tag %> + $MetaTags(false) + One Ring Rentals - $Title + + + + + + +
+ + $Layout + <% include Footer %> +
+ \ No newline at end of file diff --git a/Lesson-21-begin/app/templates/SilverStripe/Example/Includes/PropertySearchResults.ss b/Lesson-21-begin/app/templates/SilverStripe/Example/Includes/PropertySearchResults.ss new file mode 100644 index 0000000..9b448f8 --- /dev/null +++ b/Lesson-21-begin/app/templates/SilverStripe/Example/Includes/PropertySearchResults.ss @@ -0,0 +1,92 @@ +
+
+ +
+ +
+ +
+ +
+ View Mode: + +
+
+ + +
+ <% if $Results %> +

Showing $Results.PageLength results ($Results.getTotalItems total)

+ <% end_if %> +
+ <% loop $Results %> +
+
+ + Details + + $PrimaryPhoto.Fill(760,670) +
+
+ $PricePerNight.Nice

per night

+
+
+

+ $Title + $Region.Title + Available $AvailableStart.Nice - $AvailableEnd.Nice +

+

$Description.LimitSentences(3)

+
    +
  • $Bedrooms
  • +
  • $Bathrooms
  • +
+
+
+ <% end_loop %> +
+
+ + + + +<% if $Results.MoreThanOnePage %> + +<% end_if %> + diff --git a/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/ArticleHolder.ss b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/ArticleHolder.ss new file mode 100644 index 0000000..c074e01 --- /dev/null +++ b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/ArticleHolder.ss @@ -0,0 +1,176 @@ +<% include Banner %> + +
+
+
+ + +
+ + +
+
+ <% if $SelectedRegion %> +

Region: $SelectedRegion.Title

+ <% else_if $SelectedCategory %> +

Category: $SelectedCategory.Title

+ <% else_if $StartDate %> +

Showing $StartDate.Date to $EndDate.Date

+ <% end_if %> + <% loop $PaginatedArticles %> +
+
+ + Read More + + $Photo.Fit(766, 515) +
+
+
+
    +
  • $Date.Long
  • +
  • 2
  • +
  • $CategoriesList
  • +
+

+ $Title +

+ <% if $Teaser %> +

$Teaser

+ <% else %> +

$Content.FirstSentence

+ <% end_if %> +
+
+ <% end_loop %> +
+
+ + + + <% if $PaginatedArticles.MoreThanOnePage %> + + <% end_if %> + + +
+ + + + + + + +
+
+
diff --git a/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/ArticlePage.ss b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/ArticlePage.ss new file mode 100644 index 0000000..7ca5b21 --- /dev/null +++ b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/ArticlePage.ss @@ -0,0 +1,237 @@ +<% include Banner %> +
+
+
+ + +
+ +

$Title

+ +
+ <% with $Photo.ScaleWidth(750) %> + + <% end_with %> +
+
+ +
+
    +
  • $Date.Long
  • +
  • 3 Comments
  • +
  • $CategoriesList
  • +
+ +
By $ArticleAuthor
+
+ +
+ $Content +
+ + <% if $Brochure %> +
+
+ <% with $Brochure %> + + + Download brochure ($Extension, $Size) + + <% end_with %> +
+
+ <% end_if %> + + + +

Comments

+ +
+
    + <% loop $Comments %> +
  • + +
    +

    $Name$Created.Format('d LLLL, yyyy')

    +

    $Comment

    +
    +
  • + <% end_loop %> +
+ +
+
+

Leave a Reply

+

Your email address will no be published. Required fields are marked*

+
+ + $CommentForm +
+
+ +
+ + + + + + + +
+
+
\ No newline at end of file diff --git a/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/HomePage.ss b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/HomePage.ss new file mode 100644 index 0000000..aba180c --- /dev/null +++ b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/HomePage.ss @@ -0,0 +1,278 @@ + + +
+
+
+
+

Featured Properties

+
+ <% loop $FeaturedProperties %> +
+
+ +

$Title

+ $Region.Title +
+ $PrimaryPhoto.Fill(760,670) +
+
+ $PricePerNight.Nice +

per night

+
+
    +
  • $Bedrooms
  • +
  • $Bathrooms
  • +
+
+ <% end_loop %> +
+ +

Recent Articles

+
+ <% loop $LatestArticles %> +
+
+ + Read More + + $Photo.Fit(766, 515) +
+
+
+
    +
  • $Date.Format('LLLL d, yyyy')
  • +
  • 2
  • +
  • $CategoriesList
  • +
+

+ $Title +

+

+ <% if $Teaser %> + $Teaser + <% else %> + $Content.FirstSentence + <% end_if %> +

+
+
+ <% end_loop %> +
+ +
+ +
+
+
diff --git a/Lesson-21-end/app/templates/SilverStripe/Lessons/Layout/PropertySearchPage.ss b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/PropertySearchPage.ss similarity index 72% rename from Lesson-21-end/app/templates/SilverStripe/Lessons/Layout/PropertySearchPage.ss rename to Lesson-21-begin/app/templates/SilverStripe/Example/Layout/PropertySearchPage.ss index 34cc236..95ada20 100644 --- a/Lesson-21-end/app/templates/SilverStripe/Lessons/Layout/PropertySearchPage.ss +++ b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/PropertySearchPage.ss @@ -1,4 +1,3 @@ -
@@ -6,28 +5,29 @@
- <% include SilverStripe/Lessons/PropertySearchResults %> + <% include SilverStripe/Example/PropertySearchResults %>
- - + - + - +

How to get your dream property for the best price?

  • @@ -48,11 +48,11 @@
  • - + - +

    7 tips to get the best mortgage.

  • @@ -60,34 +60,36 @@
  • - + - +

    House, location or price: What's the most important factor?

    - +

    Subscribe our weekly
    Newsletter

    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit lorem ipsum dolor sit amet consectetur adipiscing elit.

    - +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit lorem ipsum dolor sit amet consectetur adipiscing elit. +

    +
    - - + +
    - + - \ No newline at end of file + diff --git a/Lesson-21-end/app/templates/SilverStripe/Lessons/Layout/RegionsPage.ss b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/RegionsPage.ss similarity index 74% rename from Lesson-21-end/app/templates/SilverStripe/Lessons/Layout/RegionsPage.ss rename to Lesson-21-begin/app/templates/SilverStripe/Example/Layout/RegionsPage.ss index c9691f2..2ef95de 100644 --- a/Lesson-21-end/app/templates/SilverStripe/Lessons/Layout/RegionsPage.ss +++ b/Lesson-21-begin/app/templates/SilverStripe/Example/Layout/RegionsPage.ss @@ -1,4 +1,3 @@ -
    @@ -6,24 +5,32 @@
    + + +
    - <% loop $Regions %> -
    -
    - - Read More - - $Photo.Fit(720,255) -
    -
    -

    - $Title -

    -

    $Description.FirstParagraph

    -
    -
    - <% end_loop %> + <% loop $Regions %> +
    +
    + + Read More + + $Photo.Fit(720, 255) +
    +
    +

    + $Title

    + +

    + $Description.FirstParagraph +

    +
    +
    + <% end_loop %>
    + + +