From 97939e4bc423a2e4596e979dbfdda9a97048263d Mon Sep 17 00:00:00 2001 From: Parbhat Puri Date: Mon, 20 Jun 2016 17:56:34 +0530 Subject: [PATCH 1/2] Address issue #265 --- {{cookiecutter.repo_name}}/db.sql | 2342 ++++++++++------- {{cookiecutter.repo_name}}/feeds/feeds.py | 46 +- .../feeds/migrations/0001_initial.py | 30 + .../migrations/0002_auto_20160620_1155.py | 50 + .../migrations/0003_auto_20160620_1301.py | 60 + {{cookiecutter.repo_name}}/feeds/models.py | 30 + .../settings/base.py | 16 +- 7 files changed, 1556 insertions(+), 1018 deletions(-) create mode 100644 {{cookiecutter.repo_name}}/feeds/migrations/0001_initial.py create mode 100644 {{cookiecutter.repo_name}}/feeds/migrations/0002_auto_20160620_1155.py create mode 100644 {{cookiecutter.repo_name}}/feeds/migrations/0003_auto_20160620_1301.py diff --git a/{{cookiecutter.repo_name}}/db.sql b/{{cookiecutter.repo_name}}/db.sql index 3c1a1626..7ee4967b 100644 --- a/{{cookiecutter.repo_name}}/db.sql +++ b/{{cookiecutter.repo_name}}/db.sql @@ -2,26 +2,22 @@ -- PostgreSQL database dump -- --- Dumped from database version 9.5.2 --- Dumped by pg_dump version 9.5.2 - SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; -SET row_security = off; -- --- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- --- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: - +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; @@ -34,7 +30,7 @@ SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: auth_group; Type: TABLE; Schema: public; Owner: - +-- Name: auth_group; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE auth_group ( @@ -43,8 +39,10 @@ CREATE TABLE auth_group ( ); +ALTER TABLE auth_group OWNER TO puri; + -- --- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE auth_group_id_seq @@ -55,15 +53,17 @@ CREATE SEQUENCE auth_group_id_seq CACHE 1; +ALTER TABLE auth_group_id_seq OWNER TO puri; + -- --- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE auth_group_id_seq OWNED BY auth_group.id; -- --- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: - +-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE auth_group_permissions ( @@ -73,8 +73,10 @@ CREATE TABLE auth_group_permissions ( ); +ALTER TABLE auth_group_permissions OWNER TO puri; + -- --- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE auth_group_permissions_id_seq @@ -85,15 +87,17 @@ CREATE SEQUENCE auth_group_permissions_id_seq CACHE 1; +ALTER TABLE auth_group_permissions_id_seq OWNER TO puri; + -- --- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE auth_group_permissions_id_seq OWNED BY auth_group_permissions.id; -- --- Name: auth_permission; Type: TABLE; Schema: public; Owner: - +-- Name: auth_permission; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE auth_permission ( @@ -104,8 +108,10 @@ CREATE TABLE auth_permission ( ); +ALTER TABLE auth_permission OWNER TO puri; + -- --- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE auth_permission_id_seq @@ -116,15 +122,17 @@ CREATE SEQUENCE auth_permission_id_seq CACHE 1; +ALTER TABLE auth_permission_id_seq OWNER TO puri; + -- --- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE auth_permission_id_seq OWNED BY auth_permission.id; -- --- Name: auth_user; Type: TABLE; Schema: public; Owner: - +-- Name: auth_user; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE auth_user ( @@ -142,8 +150,10 @@ CREATE TABLE auth_user ( ); +ALTER TABLE auth_user OWNER TO puri; + -- --- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: - +-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE auth_user_groups ( @@ -153,8 +163,10 @@ CREATE TABLE auth_user_groups ( ); +ALTER TABLE auth_user_groups OWNER TO puri; + -- --- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE auth_user_groups_id_seq @@ -165,15 +177,17 @@ CREATE SEQUENCE auth_user_groups_id_seq CACHE 1; +ALTER TABLE auth_user_groups_id_seq OWNER TO puri; + -- --- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE auth_user_groups_id_seq OWNED BY auth_user_groups.id; -- --- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE auth_user_id_seq @@ -184,15 +198,17 @@ CREATE SEQUENCE auth_user_id_seq CACHE 1; +ALTER TABLE auth_user_id_seq OWNER TO puri; + -- --- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE auth_user_id_seq OWNED BY auth_user.id; -- --- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: - +-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE auth_user_user_permissions ( @@ -202,8 +218,10 @@ CREATE TABLE auth_user_user_permissions ( ); +ALTER TABLE auth_user_user_permissions OWNER TO puri; + -- --- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE auth_user_user_permissions_id_seq @@ -214,15 +232,17 @@ CREATE SEQUENCE auth_user_user_permissions_id_seq CACHE 1; +ALTER TABLE auth_user_user_permissions_id_seq OWNER TO puri; + -- --- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE auth_user_user_permissions_id_seq OWNED BY auth_user_user_permissions.id; -- --- Name: blog_blogindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: blog_blogindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE blog_blogindexpage ( @@ -231,8 +251,10 @@ CREATE TABLE blog_blogindexpage ( ); +ALTER TABLE blog_blogindexpage OWNER TO puri; + -- --- Name: blog_blogindexpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE blog_blogindexpagerelatedlink ( @@ -246,8 +268,10 @@ CREATE TABLE blog_blogindexpagerelatedlink ( ); +ALTER TABLE blog_blogindexpagerelatedlink OWNER TO puri; + -- --- Name: blog_blogindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE blog_blogindexpagerelatedlink_id_seq @@ -258,15 +282,17 @@ CREATE SEQUENCE blog_blogindexpagerelatedlink_id_seq CACHE 1; +ALTER TABLE blog_blogindexpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: blog_blogindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE blog_blogindexpagerelatedlink_id_seq OWNED BY blog_blogindexpagerelatedlink.id; -- --- Name: blog_blogpage; Type: TABLE; Schema: public; Owner: - +-- Name: blog_blogpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE blog_blogpage ( @@ -278,8 +304,10 @@ CREATE TABLE blog_blogpage ( ); +ALTER TABLE blog_blogpage OWNER TO puri; + -- --- Name: blog_blogpagecarouselitem; Type: TABLE; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE blog_blogpagecarouselitem ( @@ -295,8 +323,10 @@ CREATE TABLE blog_blogpagecarouselitem ( ); +ALTER TABLE blog_blogpagecarouselitem OWNER TO puri; + -- --- Name: blog_blogpagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE blog_blogpagecarouselitem_id_seq @@ -307,15 +337,17 @@ CREATE SEQUENCE blog_blogpagecarouselitem_id_seq CACHE 1; +ALTER TABLE blog_blogpagecarouselitem_id_seq OWNER TO puri; + -- --- Name: blog_blogpagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE blog_blogpagecarouselitem_id_seq OWNED BY blog_blogpagecarouselitem.id; -- --- Name: blog_blogpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE blog_blogpagerelatedlink ( @@ -329,8 +361,10 @@ CREATE TABLE blog_blogpagerelatedlink ( ); +ALTER TABLE blog_blogpagerelatedlink OWNER TO puri; + -- --- Name: blog_blogpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE blog_blogpagerelatedlink_id_seq @@ -341,15 +375,17 @@ CREATE SEQUENCE blog_blogpagerelatedlink_id_seq CACHE 1; +ALTER TABLE blog_blogpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: blog_blogpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE blog_blogpagerelatedlink_id_seq OWNED BY blog_blogpagerelatedlink.id; -- --- Name: blog_blogpagetag; Type: TABLE; Schema: public; Owner: - +-- Name: blog_blogpagetag; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE blog_blogpagetag ( @@ -359,8 +395,10 @@ CREATE TABLE blog_blogpagetag ( ); +ALTER TABLE blog_blogpagetag OWNER TO puri; + -- --- Name: blog_blogpagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: blog_blogpagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE blog_blogpagetag_id_seq @@ -371,15 +409,17 @@ CREATE SEQUENCE blog_blogpagetag_id_seq CACHE 1; +ALTER TABLE blog_blogpagetag_id_seq OWNER TO puri; + -- --- Name: blog_blogpagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: blog_blogpagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE blog_blogpagetag_id_seq OWNED BY blog_blogpagetag.id; -- --- Name: contact_contactformfield; Type: TABLE; Schema: public; Owner: - +-- Name: contact_contactformfield; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE contact_contactformfield ( @@ -395,8 +435,10 @@ CREATE TABLE contact_contactformfield ( ); +ALTER TABLE contact_contactformfield OWNER TO puri; + -- --- Name: contact_contactformfield_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: contact_contactformfield_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE contact_contactformfield_id_seq @@ -407,15 +449,17 @@ CREATE SEQUENCE contact_contactformfield_id_seq CACHE 1; +ALTER TABLE contact_contactformfield_id_seq OWNER TO puri; + -- --- Name: contact_contactformfield_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: contact_contactformfield_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE contact_contactformfield_id_seq OWNED BY contact_contactformfield.id; -- --- Name: contact_contactpage; Type: TABLE; Schema: public; Owner: - +-- Name: contact_contactpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE contact_contactpage ( @@ -436,8 +480,10 @@ CREATE TABLE contact_contactpage ( ); +ALTER TABLE contact_contactpage OWNER TO puri; + -- --- Name: contact_formfield; Type: TABLE; Schema: public; Owner: - +-- Name: contact_formfield; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE contact_formfield ( @@ -453,8 +499,10 @@ CREATE TABLE contact_formfield ( ); +ALTER TABLE contact_formfield OWNER TO puri; + -- --- Name: contact_formfield_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: contact_formfield_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE contact_formfield_id_seq @@ -465,15 +513,17 @@ CREATE SEQUENCE contact_formfield_id_seq CACHE 1; +ALTER TABLE contact_formfield_id_seq OWNER TO puri; + -- --- Name: contact_formfield_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: contact_formfield_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE contact_formfield_id_seq OWNED BY contact_formfield.id; -- --- Name: contact_formpage; Type: TABLE; Schema: public; Owner: - +-- Name: contact_formpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE contact_formpage ( @@ -486,8 +536,10 @@ CREATE TABLE contact_formpage ( ); +ALTER TABLE contact_formpage OWNER TO puri; + -- --- Name: django_admin_log; Type: TABLE; Schema: public; Owner: - +-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE django_admin_log ( @@ -503,8 +555,10 @@ CREATE TABLE django_admin_log ( ); +ALTER TABLE django_admin_log OWNER TO puri; + -- --- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE django_admin_log_id_seq @@ -515,15 +569,17 @@ CREATE SEQUENCE django_admin_log_id_seq CACHE 1; +ALTER TABLE django_admin_log_id_seq OWNER TO puri; + -- --- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE django_admin_log_id_seq OWNED BY django_admin_log.id; -- --- Name: django_content_type; Type: TABLE; Schema: public; Owner: - +-- Name: django_content_type; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE django_content_type ( @@ -533,8 +589,10 @@ CREATE TABLE django_content_type ( ); +ALTER TABLE django_content_type OWNER TO puri; + -- --- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE django_content_type_id_seq @@ -545,15 +603,17 @@ CREATE SEQUENCE django_content_type_id_seq CACHE 1; +ALTER TABLE django_content_type_id_seq OWNER TO puri; + -- --- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE django_content_type_id_seq OWNED BY django_content_type.id; -- --- Name: django_migrations; Type: TABLE; Schema: public; Owner: - +-- Name: django_migrations; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE django_migrations ( @@ -564,8 +624,10 @@ CREATE TABLE django_migrations ( ); +ALTER TABLE django_migrations OWNER TO puri; + -- --- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE django_migrations_id_seq @@ -576,15 +638,17 @@ CREATE SEQUENCE django_migrations_id_seq CACHE 1; +ALTER TABLE django_migrations_id_seq OWNER TO puri; + -- --- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE django_migrations_id_seq OWNED BY django_migrations.id; -- --- Name: django_session; Type: TABLE; Schema: public; Owner: - +-- Name: django_session; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE django_session ( @@ -594,8 +658,10 @@ CREATE TABLE django_session ( ); +ALTER TABLE django_session OWNER TO puri; + -- --- Name: documents_gallery_documentsindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: documents_gallery_documentsindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE documents_gallery_documentsindexpage ( @@ -605,8 +671,10 @@ CREATE TABLE documents_gallery_documentsindexpage ( ); +ALTER TABLE documents_gallery_documentsindexpage OWNER TO puri; + -- --- Name: documents_gallery_documentspage; Type: TABLE; Schema: public; Owner: - +-- Name: documents_gallery_documentspage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE documents_gallery_documentspage ( @@ -615,8 +683,10 @@ CREATE TABLE documents_gallery_documentspage ( ); +ALTER TABLE documents_gallery_documentspage OWNER TO puri; + -- --- Name: documents_gallery_documentspagetag; Type: TABLE; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE documents_gallery_documentspagetag ( @@ -626,8 +696,10 @@ CREATE TABLE documents_gallery_documentspagetag ( ); +ALTER TABLE documents_gallery_documentspagetag OWNER TO puri; + -- --- Name: documents_gallery_documentspagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE documents_gallery_documentspagetag_id_seq @@ -638,15 +710,17 @@ CREATE SEQUENCE documents_gallery_documentspagetag_id_seq CACHE 1; +ALTER TABLE documents_gallery_documentspagetag_id_seq OWNER TO puri; + -- --- Name: documents_gallery_documentspagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE documents_gallery_documentspagetag_id_seq OWNED BY documents_gallery_documentspagetag.id; -- --- Name: events_eventindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: events_eventindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE events_eventindexpage ( @@ -655,8 +729,10 @@ CREATE TABLE events_eventindexpage ( ); +ALTER TABLE events_eventindexpage OWNER TO puri; + -- --- Name: events_eventindexpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE events_eventindexpagerelatedlink ( @@ -670,8 +746,10 @@ CREATE TABLE events_eventindexpagerelatedlink ( ); +ALTER TABLE events_eventindexpagerelatedlink OWNER TO puri; + -- --- Name: events_eventindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE events_eventindexpagerelatedlink_id_seq @@ -682,15 +760,17 @@ CREATE SEQUENCE events_eventindexpagerelatedlink_id_seq CACHE 1; +ALTER TABLE events_eventindexpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: events_eventindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE events_eventindexpagerelatedlink_id_seq OWNED BY events_eventindexpagerelatedlink.id; -- --- Name: events_eventpage; Type: TABLE; Schema: public; Owner: - +-- Name: events_eventpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE events_eventpage ( @@ -708,8 +788,10 @@ CREATE TABLE events_eventpage ( ); +ALTER TABLE events_eventpage OWNER TO puri; + -- --- Name: events_eventpagecarouselitem; Type: TABLE; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE events_eventpagecarouselitem ( @@ -725,8 +807,10 @@ CREATE TABLE events_eventpagecarouselitem ( ); +ALTER TABLE events_eventpagecarouselitem OWNER TO puri; + -- --- Name: events_eventpagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE events_eventpagecarouselitem_id_seq @@ -737,15 +821,17 @@ CREATE SEQUENCE events_eventpagecarouselitem_id_seq CACHE 1; +ALTER TABLE events_eventpagecarouselitem_id_seq OWNER TO puri; + -- --- Name: events_eventpagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE events_eventpagecarouselitem_id_seq OWNED BY events_eventpagecarouselitem.id; -- --- Name: events_eventpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE events_eventpagerelatedlink ( @@ -759,8 +845,10 @@ CREATE TABLE events_eventpagerelatedlink ( ); +ALTER TABLE events_eventpagerelatedlink OWNER TO puri; + -- --- Name: events_eventpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE events_eventpagerelatedlink_id_seq @@ -771,15 +859,17 @@ CREATE SEQUENCE events_eventpagerelatedlink_id_seq CACHE 1; +ALTER TABLE events_eventpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: events_eventpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE events_eventpagerelatedlink_id_seq OWNED BY events_eventpagerelatedlink.id; -- --- Name: events_eventpagespeaker; Type: TABLE; Schema: public; Owner: - +-- Name: events_eventpagespeaker; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE events_eventpagespeaker ( @@ -794,8 +884,10 @@ CREATE TABLE events_eventpagespeaker ( ); +ALTER TABLE events_eventpagespeaker OWNER TO puri; + -- --- Name: events_eventpagespeaker_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: events_eventpagespeaker_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE events_eventpagespeaker_id_seq @@ -806,15 +898,59 @@ CREATE SEQUENCE events_eventpagespeaker_id_seq CACHE 1; +ALTER TABLE events_eventpagespeaker_id_seq OWNER TO puri; + -- --- Name: events_eventpagespeaker_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: events_eventpagespeaker_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE events_eventpagespeaker_id_seq OWNED BY events_eventpagespeaker.id; -- --- Name: pages_advert; Type: TABLE; Schema: public; Owner: - +-- Name: feeds_feedsappsettings; Type: TABLE; Schema: public; Owner: puri; Tablespace: +-- + +CREATE TABLE feeds_feedsappsettings ( + id integer NOT NULL, + feed_app_label character varying(255), + feed_model_name character varying(255), + site_id integer NOT NULL, + feed_author_email character varying(255), + feed_author_link character varying(255), + feed_description character varying(255), + feed_item_content_field character varying(255), + feed_item_description_field character varying(255), + feed_link character varying(255), + feed_title character varying(255) +); + + +ALTER TABLE feeds_feedsappsettings OWNER TO puri; + +-- +-- Name: feeds_feedsappsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: puri +-- + +CREATE SEQUENCE feeds_feedsappsettings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE feeds_feedsappsettings_id_seq OWNER TO puri; + +-- +-- Name: feeds_feedsappsettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri +-- + +ALTER SEQUENCE feeds_feedsappsettings_id_seq OWNED BY feeds_feedsappsettings.id; + + +-- +-- Name: pages_advert; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_advert ( @@ -829,8 +965,10 @@ CREATE TABLE pages_advert ( ); +ALTER TABLE pages_advert OWNER TO puri; + -- --- Name: pages_advert_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_advert_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_advert_id_seq @@ -841,15 +979,17 @@ CREATE SEQUENCE pages_advert_id_seq CACHE 1; +ALTER TABLE pages_advert_id_seq OWNER TO puri; + -- --- Name: pages_advert_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_advert_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_advert_id_seq OWNED BY pages_advert.id; -- --- Name: pages_contentblock; Type: TABLE; Schema: public; Owner: - +-- Name: pages_contentblock; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_contentblock ( @@ -865,8 +1005,10 @@ CREATE TABLE pages_contentblock ( ); +ALTER TABLE pages_contentblock OWNER TO puri; + -- --- Name: pages_contentblock_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_contentblock_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_contentblock_id_seq @@ -877,15 +1019,17 @@ CREATE SEQUENCE pages_contentblock_id_seq CACHE 1; +ALTER TABLE pages_contentblock_id_seq OWNER TO puri; + -- --- Name: pages_contentblock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_contentblock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_contentblock_id_seq OWNED BY pages_contentblock.id; -- --- Name: pages_faqspage; Type: TABLE; Schema: public; Owner: - +-- Name: pages_faqspage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_faqspage ( @@ -894,8 +1038,10 @@ CREATE TABLE pages_faqspage ( ); +ALTER TABLE pages_faqspage OWNER TO puri; + -- --- Name: pages_homepage; Type: TABLE; Schema: public; Owner: - +-- Name: pages_homepage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_homepage ( @@ -905,8 +1051,10 @@ CREATE TABLE pages_homepage ( ); +ALTER TABLE pages_homepage OWNER TO puri; + -- --- Name: pages_homepagecarouselitem; Type: TABLE; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_homepagecarouselitem ( @@ -922,8 +1070,10 @@ CREATE TABLE pages_homepagecarouselitem ( ); +ALTER TABLE pages_homepagecarouselitem OWNER TO puri; + -- --- Name: pages_homepagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_homepagecarouselitem_id_seq @@ -934,15 +1084,17 @@ CREATE SEQUENCE pages_homepagecarouselitem_id_seq CACHE 1; +ALTER TABLE pages_homepagecarouselitem_id_seq OWNER TO puri; + -- --- Name: pages_homepagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_homepagecarouselitem_id_seq OWNED BY pages_homepagecarouselitem.id; -- --- Name: pages_homepagecontentitem; Type: TABLE; Schema: public; Owner: - +-- Name: pages_homepagecontentitem; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_homepagecontentitem ( @@ -960,8 +1112,10 @@ CREATE TABLE pages_homepagecontentitem ( ); +ALTER TABLE pages_homepagecontentitem OWNER TO puri; + -- --- Name: pages_homepagecontentitem_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_homepagecontentitem_id_seq @@ -972,15 +1126,17 @@ CREATE SEQUENCE pages_homepagecontentitem_id_seq CACHE 1; +ALTER TABLE pages_homepagecontentitem_id_seq OWNER TO puri; + -- --- Name: pages_homepagecontentitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_homepagecontentitem_id_seq OWNED BY pages_homepagecontentitem.id; -- --- Name: pages_homepagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_homepagerelatedlink ( @@ -994,8 +1150,10 @@ CREATE TABLE pages_homepagerelatedlink ( ); +ALTER TABLE pages_homepagerelatedlink OWNER TO puri; + -- --- Name: pages_homepagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_homepagerelatedlink_id_seq @@ -1006,15 +1164,17 @@ CREATE SEQUENCE pages_homepagerelatedlink_id_seq CACHE 1; +ALTER TABLE pages_homepagerelatedlink_id_seq OWNER TO puri; + -- --- Name: pages_homepagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_homepagerelatedlink_id_seq OWNED BY pages_homepagerelatedlink.id; -- --- Name: pages_socialmediasettings; Type: TABLE; Schema: public; Owner: - +-- Name: pages_socialmediasettings; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_socialmediasettings ( @@ -1030,8 +1190,10 @@ CREATE TABLE pages_socialmediasettings ( ); +ALTER TABLE pages_socialmediasettings OWNER TO puri; + -- --- Name: pages_socialmediasettings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_socialmediasettings_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_socialmediasettings_id_seq @@ -1042,15 +1204,17 @@ CREATE SEQUENCE pages_socialmediasettings_id_seq CACHE 1; +ALTER TABLE pages_socialmediasettings_id_seq OWNER TO puri; + -- --- Name: pages_socialmediasettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_socialmediasettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_socialmediasettings_id_seq OWNED BY pages_socialmediasettings.id; -- --- Name: pages_standardindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: pages_standardindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_standardindexpage ( @@ -1061,8 +1225,10 @@ CREATE TABLE pages_standardindexpage ( ); +ALTER TABLE pages_standardindexpage OWNER TO puri; + -- --- Name: pages_standardindexpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_standardindexpagerelatedlink ( @@ -1076,8 +1242,10 @@ CREATE TABLE pages_standardindexpagerelatedlink ( ); +ALTER TABLE pages_standardindexpagerelatedlink OWNER TO puri; + -- --- Name: pages_standardindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_standardindexpagerelatedlink_id_seq @@ -1088,15 +1256,17 @@ CREATE SEQUENCE pages_standardindexpagerelatedlink_id_seq CACHE 1; +ALTER TABLE pages_standardindexpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: pages_standardindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_standardindexpagerelatedlink_id_seq OWNED BY pages_standardindexpagerelatedlink.id; -- --- Name: pages_standardpage; Type: TABLE; Schema: public; Owner: - +-- Name: pages_standardpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_standardpage ( @@ -1109,8 +1279,10 @@ CREATE TABLE pages_standardpage ( ); +ALTER TABLE pages_standardpage OWNER TO puri; + -- --- Name: pages_standardpagecarouselitem; Type: TABLE; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_standardpagecarouselitem ( @@ -1126,8 +1298,10 @@ CREATE TABLE pages_standardpagecarouselitem ( ); +ALTER TABLE pages_standardpagecarouselitem OWNER TO puri; + -- --- Name: pages_standardpagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_standardpagecarouselitem_id_seq @@ -1138,15 +1312,17 @@ CREATE SEQUENCE pages_standardpagecarouselitem_id_seq CACHE 1; +ALTER TABLE pages_standardpagecarouselitem_id_seq OWNER TO puri; + -- --- Name: pages_standardpagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_standardpagecarouselitem_id_seq OWNED BY pages_standardpagecarouselitem.id; -- --- Name: pages_standardpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_standardpagerelatedlink ( @@ -1160,8 +1336,10 @@ CREATE TABLE pages_standardpagerelatedlink ( ); +ALTER TABLE pages_standardpagerelatedlink OWNER TO puri; + -- --- Name: pages_standardpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_standardpagerelatedlink_id_seq @@ -1172,15 +1350,17 @@ CREATE SEQUENCE pages_standardpagerelatedlink_id_seq CACHE 1; +ALTER TABLE pages_standardpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: pages_standardpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_standardpagerelatedlink_id_seq OWNED BY pages_standardpagerelatedlink.id; -- --- Name: pages_testimonial; Type: TABLE; Schema: public; Owner: - +-- Name: pages_testimonial; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE pages_testimonial ( @@ -1195,8 +1375,10 @@ CREATE TABLE pages_testimonial ( ); +ALTER TABLE pages_testimonial OWNER TO puri; + -- --- Name: pages_testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pages_testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE pages_testimonial_id_seq @@ -1207,15 +1389,17 @@ CREATE SEQUENCE pages_testimonial_id_seq CACHE 1; +ALTER TABLE pages_testimonial_id_seq OWNER TO puri; + -- --- Name: pages_testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: pages_testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE pages_testimonial_id_seq OWNED BY pages_testimonial.id; -- --- Name: people_personindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: people_personindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE people_personindexpage ( @@ -1225,8 +1409,10 @@ CREATE TABLE people_personindexpage ( ); +ALTER TABLE people_personindexpage OWNER TO puri; + -- --- Name: people_personindexpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE people_personindexpagerelatedlink ( @@ -1240,8 +1426,10 @@ CREATE TABLE people_personindexpagerelatedlink ( ); +ALTER TABLE people_personindexpagerelatedlink OWNER TO puri; + -- --- Name: people_personindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE people_personindexpagerelatedlink_id_seq @@ -1252,15 +1440,17 @@ CREATE SEQUENCE people_personindexpagerelatedlink_id_seq CACHE 1; +ALTER TABLE people_personindexpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: people_personindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE people_personindexpagerelatedlink_id_seq OWNED BY people_personindexpagerelatedlink.id; -- --- Name: people_personpage; Type: TABLE; Schema: public; Owner: - +-- Name: people_personpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE people_personpage ( @@ -1281,8 +1471,10 @@ CREATE TABLE people_personpage ( ); +ALTER TABLE people_personpage OWNER TO puri; + -- --- Name: people_personpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: people_personpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE people_personpagerelatedlink ( @@ -1296,8 +1488,10 @@ CREATE TABLE people_personpagerelatedlink ( ); +ALTER TABLE people_personpagerelatedlink OWNER TO puri; + -- --- Name: people_personpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE people_personpagerelatedlink_id_seq @@ -1308,15 +1502,17 @@ CREATE SEQUENCE people_personpagerelatedlink_id_seq CACHE 1; +ALTER TABLE people_personpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: people_personpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE people_personpagerelatedlink_id_seq OWNED BY people_personpagerelatedlink.id; -- --- Name: people_personpagetag; Type: TABLE; Schema: public; Owner: - +-- Name: people_personpagetag; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE people_personpagetag ( @@ -1326,8 +1522,10 @@ CREATE TABLE people_personpagetag ( ); +ALTER TABLE people_personpagetag OWNER TO puri; + -- --- Name: people_personpagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: people_personpagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE people_personpagetag_id_seq @@ -1338,15 +1536,17 @@ CREATE SEQUENCE people_personpagetag_id_seq CACHE 1; +ALTER TABLE people_personpagetag_id_seq OWNER TO puri; + -- --- Name: people_personpagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: people_personpagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE people_personpagetag_id_seq OWNED BY people_personpagetag.id; -- --- Name: people_personrole; Type: TABLE; Schema: public; Owner: - +-- Name: people_personrole; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE people_personrole ( @@ -1355,8 +1555,10 @@ CREATE TABLE people_personrole ( ); +ALTER TABLE people_personrole OWNER TO puri; + -- --- Name: people_personrole_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: people_personrole_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE people_personrole_id_seq @@ -1367,15 +1569,17 @@ CREATE SEQUENCE people_personrole_id_seq CACHE 1; +ALTER TABLE people_personrole_id_seq OWNER TO puri; + -- --- Name: people_personrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: people_personrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE people_personrole_id_seq OWNED BY people_personrole.id; -- --- Name: photo_gallery_galleryindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: photo_gallery_galleryindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE photo_gallery_galleryindexpage ( @@ -1385,8 +1589,10 @@ CREATE TABLE photo_gallery_galleryindexpage ( ); +ALTER TABLE photo_gallery_galleryindexpage OWNER TO puri; + -- --- Name: photo_gallery_gallerypage; Type: TABLE; Schema: public; Owner: - +-- Name: photo_gallery_gallerypage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE photo_gallery_gallerypage ( @@ -1395,8 +1601,10 @@ CREATE TABLE photo_gallery_gallerypage ( ); +ALTER TABLE photo_gallery_gallerypage OWNER TO puri; + -- --- Name: photo_gallery_gallerypagetag; Type: TABLE; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE photo_gallery_gallerypagetag ( @@ -1406,8 +1614,10 @@ CREATE TABLE photo_gallery_gallerypagetag ( ); +ALTER TABLE photo_gallery_gallerypagetag OWNER TO puri; + -- --- Name: photo_gallery_gallerypagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE photo_gallery_gallerypagetag_id_seq @@ -1418,15 +1628,17 @@ CREATE SEQUENCE photo_gallery_gallerypagetag_id_seq CACHE 1; +ALTER TABLE photo_gallery_gallerypagetag_id_seq OWNER TO puri; + -- --- Name: photo_gallery_gallerypagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE photo_gallery_gallerypagetag_id_seq OWNED BY photo_gallery_gallerypagetag.id; -- --- Name: products_productindexpage; Type: TABLE; Schema: public; Owner: - +-- Name: products_productindexpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE products_productindexpage ( @@ -1436,8 +1648,10 @@ CREATE TABLE products_productindexpage ( ); +ALTER TABLE products_productindexpage OWNER TO puri; + -- --- Name: products_productindexpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE products_productindexpagerelatedlink ( @@ -1451,8 +1665,10 @@ CREATE TABLE products_productindexpagerelatedlink ( ); +ALTER TABLE products_productindexpagerelatedlink OWNER TO puri; + -- --- Name: products_productindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE products_productindexpagerelatedlink_id_seq @@ -1463,15 +1679,17 @@ CREATE SEQUENCE products_productindexpagerelatedlink_id_seq CACHE 1; +ALTER TABLE products_productindexpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: products_productindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE products_productindexpagerelatedlink_id_seq OWNED BY products_productindexpagerelatedlink.id; -- --- Name: products_productpage; Type: TABLE; Schema: public; Owner: - +-- Name: products_productpage; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE products_productpage ( @@ -1483,8 +1701,10 @@ CREATE TABLE products_productpage ( ); +ALTER TABLE products_productpage OWNER TO puri; + -- --- Name: products_productpagerelatedlink; Type: TABLE; Schema: public; Owner: - +-- Name: products_productpagerelatedlink; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE products_productpagerelatedlink ( @@ -1498,8 +1718,10 @@ CREATE TABLE products_productpagerelatedlink ( ); +ALTER TABLE products_productpagerelatedlink OWNER TO puri; + -- --- Name: products_productpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE products_productpagerelatedlink_id_seq @@ -1510,15 +1732,17 @@ CREATE SEQUENCE products_productpagerelatedlink_id_seq CACHE 1; +ALTER TABLE products_productpagerelatedlink_id_seq OWNER TO puri; + -- --- Name: products_productpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE products_productpagerelatedlink_id_seq OWNED BY products_productpagerelatedlink.id; -- --- Name: products_productpagetag; Type: TABLE; Schema: public; Owner: - +-- Name: products_productpagetag; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE products_productpagetag ( @@ -1528,8 +1752,10 @@ CREATE TABLE products_productpagetag ( ); +ALTER TABLE products_productpagetag OWNER TO puri; + -- --- Name: products_productpagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: products_productpagetag_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE products_productpagetag_id_seq @@ -1540,15 +1766,17 @@ CREATE SEQUENCE products_productpagetag_id_seq CACHE 1; +ALTER TABLE products_productpagetag_id_seq OWNER TO puri; + -- --- Name: products_productpagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: products_productpagetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE products_productpagetag_id_seq OWNED BY products_productpagetag.id; -- --- Name: taggit_tag; Type: TABLE; Schema: public; Owner: - +-- Name: taggit_tag; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE taggit_tag ( @@ -1558,8 +1786,10 @@ CREATE TABLE taggit_tag ( ); +ALTER TABLE taggit_tag OWNER TO puri; + -- --- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE taggit_tag_id_seq @@ -1570,15 +1800,17 @@ CREATE SEQUENCE taggit_tag_id_seq CACHE 1; +ALTER TABLE taggit_tag_id_seq OWNER TO puri; + -- --- Name: taggit_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: taggit_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE taggit_tag_id_seq OWNED BY taggit_tag.id; -- --- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: - +-- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE taggit_taggeditem ( @@ -1589,8 +1821,10 @@ CREATE TABLE taggit_taggeditem ( ); +ALTER TABLE taggit_taggeditem OWNER TO puri; + -- --- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE taggit_taggeditem_id_seq @@ -1601,15 +1835,17 @@ CREATE SEQUENCE taggit_taggeditem_id_seq CACHE 1; +ALTER TABLE taggit_taggeditem_id_seq OWNER TO puri; + -- --- Name: taggit_taggeditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE taggit_taggeditem_id_seq OWNED BY taggit_taggeditem.id; -- --- Name: wagtailcore_collection; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_collection; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_collection ( @@ -1623,8 +1859,10 @@ CREATE TABLE wagtailcore_collection ( ); +ALTER TABLE wagtailcore_collection OWNER TO puri; + -- --- Name: wagtailcore_collection_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_collection_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_collection_id_seq @@ -1635,15 +1873,17 @@ CREATE SEQUENCE wagtailcore_collection_id_seq CACHE 1; +ALTER TABLE wagtailcore_collection_id_seq OWNER TO puri; + -- --- Name: wagtailcore_collection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_collection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_collection_id_seq OWNED BY wagtailcore_collection.id; -- --- Name: wagtailcore_groupcollectionpermission; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_groupcollectionpermission ( @@ -1654,8 +1894,10 @@ CREATE TABLE wagtailcore_groupcollectionpermission ( ); +ALTER TABLE wagtailcore_groupcollectionpermission OWNER TO puri; + -- --- Name: wagtailcore_groupcollectionpermission_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_groupcollectionpermission_id_seq @@ -1666,15 +1908,17 @@ CREATE SEQUENCE wagtailcore_groupcollectionpermission_id_seq CACHE 1; +ALTER TABLE wagtailcore_groupcollectionpermission_id_seq OWNER TO puri; + -- --- Name: wagtailcore_groupcollectionpermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_groupcollectionpermission_id_seq OWNED BY wagtailcore_groupcollectionpermission.id; -- --- Name: wagtailcore_grouppagepermission; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_grouppagepermission ( @@ -1685,8 +1929,10 @@ CREATE TABLE wagtailcore_grouppagepermission ( ); +ALTER TABLE wagtailcore_grouppagepermission OWNER TO puri; + -- --- Name: wagtailcore_grouppagepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_grouppagepermission_id_seq @@ -1697,15 +1943,17 @@ CREATE SEQUENCE wagtailcore_grouppagepermission_id_seq CACHE 1; +ALTER TABLE wagtailcore_grouppagepermission_id_seq OWNER TO puri; + -- --- Name: wagtailcore_grouppagepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_grouppagepermission_id_seq OWNED BY wagtailcore_grouppagepermission.id; -- --- Name: wagtailcore_page; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_page; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_page ( @@ -1734,8 +1982,10 @@ CREATE TABLE wagtailcore_page ( ); +ALTER TABLE wagtailcore_page OWNER TO puri; + -- --- Name: wagtailcore_page_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_page_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_page_id_seq @@ -1746,15 +1996,17 @@ CREATE SEQUENCE wagtailcore_page_id_seq CACHE 1; +ALTER TABLE wagtailcore_page_id_seq OWNER TO puri; + -- --- Name: wagtailcore_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_page_id_seq OWNED BY wagtailcore_page.id; -- --- Name: wagtailcore_pagerevision; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_pagerevision ( @@ -1768,8 +2020,10 @@ CREATE TABLE wagtailcore_pagerevision ( ); +ALTER TABLE wagtailcore_pagerevision OWNER TO puri; + -- --- Name: wagtailcore_pagerevision_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_pagerevision_id_seq @@ -1780,15 +2034,17 @@ CREATE SEQUENCE wagtailcore_pagerevision_id_seq CACHE 1; +ALTER TABLE wagtailcore_pagerevision_id_seq OWNER TO puri; + -- --- Name: wagtailcore_pagerevision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_pagerevision_id_seq OWNED BY wagtailcore_pagerevision.id; -- --- Name: wagtailcore_pageviewrestriction; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_pageviewrestriction; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_pageviewrestriction ( @@ -1798,8 +2054,10 @@ CREATE TABLE wagtailcore_pageviewrestriction ( ); +ALTER TABLE wagtailcore_pageviewrestriction OWNER TO puri; + -- --- Name: wagtailcore_pageviewrestriction_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_pageviewrestriction_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_pageviewrestriction_id_seq @@ -1810,15 +2068,17 @@ CREATE SEQUENCE wagtailcore_pageviewrestriction_id_seq CACHE 1; +ALTER TABLE wagtailcore_pageviewrestriction_id_seq OWNER TO puri; + -- --- Name: wagtailcore_pageviewrestriction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_pageviewrestriction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_pageviewrestriction_id_seq OWNED BY wagtailcore_pageviewrestriction.id; -- --- Name: wagtailcore_site; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailcore_site; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailcore_site ( @@ -1831,8 +2091,10 @@ CREATE TABLE wagtailcore_site ( ); +ALTER TABLE wagtailcore_site OWNER TO puri; + -- --- Name: wagtailcore_site_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailcore_site_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailcore_site_id_seq @@ -1843,15 +2105,17 @@ CREATE SEQUENCE wagtailcore_site_id_seq CACHE 1; +ALTER TABLE wagtailcore_site_id_seq OWNER TO puri; + -- --- Name: wagtailcore_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailcore_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailcore_site_id_seq OWNED BY wagtailcore_site.id; -- --- Name: wagtaildocs_document; Type: TABLE; Schema: public; Owner: - +-- Name: wagtaildocs_document; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtaildocs_document ( @@ -1864,8 +2128,10 @@ CREATE TABLE wagtaildocs_document ( ); +ALTER TABLE wagtaildocs_document OWNER TO puri; + -- --- Name: wagtaildocs_document_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtaildocs_document_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtaildocs_document_id_seq @@ -1876,15 +2142,17 @@ CREATE SEQUENCE wagtaildocs_document_id_seq CACHE 1; +ALTER TABLE wagtaildocs_document_id_seq OWNER TO puri; + -- --- Name: wagtaildocs_document_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtaildocs_document_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtaildocs_document_id_seq OWNED BY wagtaildocs_document.id; -- --- Name: wagtailembeds_embed; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailembeds_embed; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailembeds_embed ( @@ -1903,8 +2171,10 @@ CREATE TABLE wagtailembeds_embed ( ); +ALTER TABLE wagtailembeds_embed OWNER TO puri; + -- --- Name: wagtailembeds_embed_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailembeds_embed_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailembeds_embed_id_seq @@ -1915,15 +2185,17 @@ CREATE SEQUENCE wagtailembeds_embed_id_seq CACHE 1; +ALTER TABLE wagtailembeds_embed_id_seq OWNER TO puri; + -- --- Name: wagtailembeds_embed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailembeds_embed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailembeds_embed_id_seq OWNED BY wagtailembeds_embed.id; -- --- Name: wagtailforms_formsubmission; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailforms_formsubmission; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailforms_formsubmission ( @@ -1934,8 +2206,10 @@ CREATE TABLE wagtailforms_formsubmission ( ); +ALTER TABLE wagtailforms_formsubmission OWNER TO puri; + -- --- Name: wagtailforms_formsubmission_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailforms_formsubmission_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailforms_formsubmission_id_seq @@ -1946,15 +2220,17 @@ CREATE SEQUENCE wagtailforms_formsubmission_id_seq CACHE 1; +ALTER TABLE wagtailforms_formsubmission_id_seq OWNER TO puri; + -- --- Name: wagtailforms_formsubmission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailforms_formsubmission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailforms_formsubmission_id_seq OWNED BY wagtailforms_formsubmission.id; -- --- Name: wagtailimages_filter; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailimages_filter; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailimages_filter ( @@ -1963,8 +2239,10 @@ CREATE TABLE wagtailimages_filter ( ); +ALTER TABLE wagtailimages_filter OWNER TO puri; + -- --- Name: wagtailimages_filter_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailimages_filter_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailimages_filter_id_seq @@ -1975,15 +2253,17 @@ CREATE SEQUENCE wagtailimages_filter_id_seq CACHE 1; +ALTER TABLE wagtailimages_filter_id_seq OWNER TO puri; + -- --- Name: wagtailimages_filter_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailimages_filter_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailimages_filter_id_seq OWNED BY wagtailimages_filter.id; -- --- Name: wagtailimages_image; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailimages_image; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailimages_image ( @@ -2008,8 +2288,10 @@ CREATE TABLE wagtailimages_image ( ); +ALTER TABLE wagtailimages_image OWNER TO puri; + -- --- Name: wagtailimages_image_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailimages_image_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailimages_image_id_seq @@ -2020,15 +2302,17 @@ CREATE SEQUENCE wagtailimages_image_id_seq CACHE 1; +ALTER TABLE wagtailimages_image_id_seq OWNER TO puri; + -- --- Name: wagtailimages_image_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailimages_image_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailimages_image_id_seq OWNED BY wagtailimages_image.id; -- --- Name: wagtailimages_rendition; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailimages_rendition; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailimages_rendition ( @@ -2042,8 +2326,10 @@ CREATE TABLE wagtailimages_rendition ( ); +ALTER TABLE wagtailimages_rendition OWNER TO puri; + -- --- Name: wagtailimages_rendition_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailimages_rendition_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailimages_rendition_id_seq @@ -2054,15 +2340,17 @@ CREATE SEQUENCE wagtailimages_rendition_id_seq CACHE 1; +ALTER TABLE wagtailimages_rendition_id_seq OWNER TO puri; + -- --- Name: wagtailimages_rendition_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailimages_rendition_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailimages_rendition_id_seq OWNED BY wagtailimages_rendition.id; -- --- Name: wagtailredirects_redirect; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailredirects_redirect; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailredirects_redirect ( @@ -2075,8 +2363,10 @@ CREATE TABLE wagtailredirects_redirect ( ); +ALTER TABLE wagtailredirects_redirect OWNER TO puri; + -- --- Name: wagtailredirects_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailredirects_redirect_id_seq @@ -2087,15 +2377,17 @@ CREATE SEQUENCE wagtailredirects_redirect_id_seq CACHE 1; +ALTER TABLE wagtailredirects_redirect_id_seq OWNER TO puri; + -- --- Name: wagtailredirects_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailredirects_redirect_id_seq OWNED BY wagtailredirects_redirect.id; -- --- Name: wagtailsearchpromotions_searchpromotion; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailsearchpromotions_searchpromotion; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailsearchpromotions_searchpromotion ( @@ -2107,8 +2399,10 @@ CREATE TABLE wagtailsearchpromotions_searchpromotion ( ); +ALTER TABLE wagtailsearchpromotions_searchpromotion OWNER TO puri; + -- --- Name: wagtailsearch_editorspick_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailsearch_editorspick_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailsearch_editorspick_id_seq @@ -2119,15 +2413,17 @@ CREATE SEQUENCE wagtailsearch_editorspick_id_seq CACHE 1; +ALTER TABLE wagtailsearch_editorspick_id_seq OWNER TO puri; + -- --- Name: wagtailsearch_editorspick_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailsearch_editorspick_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailsearch_editorspick_id_seq OWNED BY wagtailsearchpromotions_searchpromotion.id; -- --- Name: wagtailsearch_query; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailsearch_query; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailsearch_query ( @@ -2136,8 +2432,10 @@ CREATE TABLE wagtailsearch_query ( ); +ALTER TABLE wagtailsearch_query OWNER TO puri; + -- --- Name: wagtailsearch_query_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailsearch_query_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailsearch_query_id_seq @@ -2148,15 +2446,17 @@ CREATE SEQUENCE wagtailsearch_query_id_seq CACHE 1; +ALTER TABLE wagtailsearch_query_id_seq OWNER TO puri; + -- --- Name: wagtailsearch_query_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailsearch_query_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailsearch_query_id_seq OWNED BY wagtailsearch_query.id; -- --- Name: wagtailsearch_querydailyhits; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailsearch_querydailyhits ( @@ -2167,8 +2467,10 @@ CREATE TABLE wagtailsearch_querydailyhits ( ); +ALTER TABLE wagtailsearch_querydailyhits OWNER TO puri; + -- --- Name: wagtailsearch_querydailyhits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailsearch_querydailyhits_id_seq @@ -2179,15 +2481,17 @@ CREATE SEQUENCE wagtailsearch_querydailyhits_id_seq CACHE 1; +ALTER TABLE wagtailsearch_querydailyhits_id_seq OWNER TO puri; + -- --- Name: wagtailsearch_querydailyhits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailsearch_querydailyhits_id_seq OWNED BY wagtailsearch_querydailyhits.id; -- --- Name: wagtailusers_userprofile; Type: TABLE; Schema: public; Owner: - +-- Name: wagtailusers_userprofile; Type: TABLE; Schema: public; Owner: puri; Tablespace: -- CREATE TABLE wagtailusers_userprofile ( @@ -2199,8 +2503,10 @@ CREATE TABLE wagtailusers_userprofile ( ); +ALTER TABLE wagtailusers_userprofile OWNER TO puri; + -- --- Name: wagtailusers_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: wagtailusers_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: puri -- CREATE SEQUENCE wagtailusers_userprofile_id_seq @@ -2211,421 +2517,430 @@ CREATE SEQUENCE wagtailusers_userprofile_id_seq CACHE 1; +ALTER TABLE wagtailusers_userprofile_id_seq OWNER TO puri; + -- --- Name: wagtailusers_userprofile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: wagtailusers_userprofile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: puri -- ALTER SEQUENCE wagtailusers_userprofile_id_seq OWNED BY wagtailusers_userprofile.id; -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_group ALTER COLUMN id SET DEFAULT nextval('auth_group_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('auth_group_permissions_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_permission ALTER COLUMN id SET DEFAULT nextval('auth_permission_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user ALTER COLUMN id SET DEFAULT nextval('auth_user_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user_groups ALTER COLUMN id SET DEFAULT nextval('auth_user_groups_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('auth_user_user_permissions_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogindexpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('blog_blogindexpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagecarouselitem ALTER COLUMN id SET DEFAULT nextval('blog_blogpagecarouselitem_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('blog_blogpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagetag ALTER COLUMN id SET DEFAULT nextval('blog_blogpagetag_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY contact_contactformfield ALTER COLUMN id SET DEFAULT nextval('contact_contactformfield_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY contact_formfield ALTER COLUMN id SET DEFAULT nextval('contact_formfield_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY django_admin_log ALTER COLUMN id SET DEFAULT nextval('django_admin_log_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY django_content_type ALTER COLUMN id SET DEFAULT nextval('django_content_type_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY django_migrations ALTER COLUMN id SET DEFAULT nextval('django_migrations_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentspagetag ALTER COLUMN id SET DEFAULT nextval('documents_gallery_documentspagetag_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventindexpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('events_eventindexpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagecarouselitem ALTER COLUMN id SET DEFAULT nextval('events_eventpagecarouselitem_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('events_eventpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagespeaker ALTER COLUMN id SET DEFAULT nextval('events_eventpagespeaker_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri +-- + +ALTER TABLE ONLY feeds_feedsappsettings ALTER COLUMN id SET DEFAULT nextval('feeds_feedsappsettings_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_advert ALTER COLUMN id SET DEFAULT nextval('pages_advert_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_contentblock ALTER COLUMN id SET DEFAULT nextval('pages_contentblock_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecarouselitem ALTER COLUMN id SET DEFAULT nextval('pages_homepagecarouselitem_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecontentitem ALTER COLUMN id SET DEFAULT nextval('pages_homepagecontentitem_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagerelatedlink ALTER COLUMN id SET DEFAULT nextval('pages_homepagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_socialmediasettings ALTER COLUMN id SET DEFAULT nextval('pages_socialmediasettings_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardindexpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('pages_standardindexpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagecarouselitem ALTER COLUMN id SET DEFAULT nextval('pages_standardpagecarouselitem_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('pages_standardpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_testimonial ALTER COLUMN id SET DEFAULT nextval('pages_testimonial_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personindexpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('people_personindexpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('people_personpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagetag ALTER COLUMN id SET DEFAULT nextval('people_personpagetag_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personrole ALTER COLUMN id SET DEFAULT nextval('people_personrole_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_gallerypagetag ALTER COLUMN id SET DEFAULT nextval('photo_gallery_gallerypagetag_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productindexpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('products_productindexpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagerelatedlink ALTER COLUMN id SET DEFAULT nextval('products_productpagerelatedlink_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagetag ALTER COLUMN id SET DEFAULT nextval('products_productpagetag_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY taggit_tag ALTER COLUMN id SET DEFAULT nextval('taggit_tag_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY taggit_taggeditem ALTER COLUMN id SET DEFAULT nextval('taggit_taggeditem_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_collection ALTER COLUMN id SET DEFAULT nextval('wagtailcore_collection_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_groupcollectionpermission ALTER COLUMN id SET DEFAULT nextval('wagtailcore_groupcollectionpermission_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_grouppagepermission ALTER COLUMN id SET DEFAULT nextval('wagtailcore_grouppagepermission_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_page ALTER COLUMN id SET DEFAULT nextval('wagtailcore_page_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_pagerevision ALTER COLUMN id SET DEFAULT nextval('wagtailcore_pagerevision_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_pageviewrestriction ALTER COLUMN id SET DEFAULT nextval('wagtailcore_pageviewrestriction_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_site ALTER COLUMN id SET DEFAULT nextval('wagtailcore_site_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtaildocs_document ALTER COLUMN id SET DEFAULT nextval('wagtaildocs_document_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailembeds_embed ALTER COLUMN id SET DEFAULT nextval('wagtailembeds_embed_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailforms_formsubmission ALTER COLUMN id SET DEFAULT nextval('wagtailforms_formsubmission_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_filter ALTER COLUMN id SET DEFAULT nextval('wagtailimages_filter_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_image ALTER COLUMN id SET DEFAULT nextval('wagtailimages_image_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_rendition ALTER COLUMN id SET DEFAULT nextval('wagtailimages_rendition_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailredirects_redirect ALTER COLUMN id SET DEFAULT nextval('wagtailredirects_redirect_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailsearch_query ALTER COLUMN id SET DEFAULT nextval('wagtailsearch_query_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailsearch_querydailyhits ALTER COLUMN id SET DEFAULT nextval('wagtailsearch_querydailyhits_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion ALTER COLUMN id SET DEFAULT nextval('wagtailsearch_editorspick_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: id; Type: DEFAULT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailusers_userprofile ALTER COLUMN id SET DEFAULT nextval('wagtailusers_userprofile_id_seq'::regclass); -- --- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: puri -- COPY auth_group (id, name) FROM stdin; @@ -2635,14 +2950,14 @@ COPY auth_group (id, name) FROM stdin; -- --- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('auth_group_id_seq', 2, true); -- --- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: puri -- COPY auth_group_permissions (id, group_id, permission_id) FROM stdin; @@ -2664,14 +2979,14 @@ COPY auth_group_permissions (id, group_id, permission_id) FROM stdin; -- --- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('auth_group_permissions_id_seq', 14, true); -- --- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: puri -- COPY auth_permission (id, name, content_type_id, codename) FROM stdin; @@ -2895,27 +3210,30 @@ COPY auth_permission (id, name, content_type_id, codename) FROM stdin; 218 Can add Documents Page 74 add_documentspage 219 Can change Documents Page 74 change_documentspage 220 Can delete Documents Page 74 delete_documentspage +221 Can add feeds app settings 75 add_feedsappsettings +222 Can change feeds app settings 75 change_feedsappsettings +223 Can delete feeds app settings 75 delete_feedsappsettings \. -- --- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- -SELECT pg_catalog.setval('auth_permission_id_seq', 220, true); +SELECT pg_catalog.setval('auth_permission_id_seq', 223, true); -- --- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: puri -- COPY auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; -1 pbkdf2_sha256$24000$kAk6nhoEnhKH$3QxewR1ss/PNzWXcwm52N5wXRl9J0QABnQ2GTlKhxjo= 2016-06-17 13:56:37.45479-04 t admin cclarke@chrisdev.com t t 2016-06-17 11:37:48.485484-04 +1 pbkdf2_sha256$24000$kAk6nhoEnhKH$3QxewR1ss/PNzWXcwm52N5wXRl9J0QABnQ2GTlKhxjo= 2016-06-20 18:34:34.302258+05:30 t admin cclarke@chrisdev.com t t 2016-06-17 21:07:48.485484+05:30 \. -- --- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: puri -- COPY auth_user_groups (id, user_id, group_id) FROM stdin; @@ -2923,21 +3241,21 @@ COPY auth_user_groups (id, user_id, group_id) FROM stdin; -- --- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('auth_user_groups_id_seq', 1, false); -- --- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('auth_user_id_seq', 1, true); -- --- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: puri -- COPY auth_user_user_permissions (id, user_id, permission_id) FROM stdin; @@ -2945,14 +3263,14 @@ COPY auth_user_user_permissions (id, user_id, permission_id) FROM stdin; -- --- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('auth_user_user_permissions_id_seq', 1, false); -- --- Data for Name: blog_blogindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: blog_blogindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY blog_blogindexpage (page_ptr_id, intro) FROM stdin; @@ -2961,7 +3279,7 @@ COPY blog_blogindexpage (page_ptr_id, intro) FROM stdin; -- --- Data for Name: blog_blogindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: blog_blogindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY blog_blogindexpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -2969,14 +3287,14 @@ COPY blog_blogindexpagerelatedlink (id, sort_order, link_external, title, link_d -- --- Name: blog_blogindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('blog_blogindexpagerelatedlink_id_seq', 1, false); -- --- Data for Name: blog_blogpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: blog_blogpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY blog_blogpage (page_ptr_id, intro, body, date, feed_image_id) FROM stdin; @@ -2987,7 +3305,7 @@ COPY blog_blogpage (page_ptr_id, intro, body, date, feed_image_id) FROM stdin; -- --- Data for Name: blog_blogpagecarouselitem; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: blog_blogpagecarouselitem; Type: TABLE DATA; Schema: public; Owner: puri -- COPY blog_blogpagecarouselitem (id, sort_order, link_external, embed_url, caption, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -2995,14 +3313,14 @@ COPY blog_blogpagecarouselitem (id, sort_order, link_external, embed_url, captio -- --- Name: blog_blogpagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('blog_blogpagecarouselitem_id_seq', 1, false); -- --- Data for Name: blog_blogpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: blog_blogpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY blog_blogpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3016,14 +3334,14 @@ COPY blog_blogpagerelatedlink (id, sort_order, link_external, title, link_docume -- --- Name: blog_blogpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('blog_blogpagerelatedlink_id_seq', 6, true); -- --- Data for Name: blog_blogpagetag; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: blog_blogpagetag; Type: TABLE DATA; Schema: public; Owner: puri -- COPY blog_blogpagetag (id, content_object_id, tag_id) FROM stdin; @@ -3031,14 +3349,14 @@ COPY blog_blogpagetag (id, content_object_id, tag_id) FROM stdin; -- --- Name: blog_blogpagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: blog_blogpagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('blog_blogpagetag_id_seq', 1, false); -- --- Data for Name: contact_contactformfield; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: contact_contactformfield; Type: TABLE DATA; Schema: public; Owner: puri -- COPY contact_contactformfield (id, sort_order, label, field_type, required, choices, default_value, help_text, page_id) FROM stdin; @@ -3050,14 +3368,14 @@ COPY contact_contactformfield (id, sort_order, label, field_type, required, choi -- --- Name: contact_contactformfield_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: contact_contactformfield_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('contact_contactformfield_id_seq', 4, true); -- --- Data for Name: contact_contactpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: contact_contactpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY contact_contactpage (page_ptr_id, to_address, from_address, subject, name_organization, telephone, email, address_1, address_2, city, country, post_code, intro, thank_you_text) FROM stdin; @@ -3066,7 +3384,7 @@ COPY contact_contactpage (page_ptr_id, to_address, from_address, subject, name_o -- --- Data for Name: contact_formfield; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: contact_formfield; Type: TABLE DATA; Schema: public; Owner: puri -- COPY contact_formfield (id, sort_order, label, field_type, required, choices, default_value, help_text, page_id) FROM stdin; @@ -3074,14 +3392,14 @@ COPY contact_formfield (id, sort_order, label, field_type, required, choices, de -- --- Name: contact_formfield_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: contact_formfield_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('contact_formfield_id_seq', 1, false); -- --- Data for Name: contact_formpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: contact_formpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY contact_formpage (page_ptr_id, to_address, from_address, subject, intro, thank_you_text) FROM stdin; @@ -3089,7 +3407,7 @@ COPY contact_formpage (page_ptr_id, to_address, from_address, subject, intro, th -- --- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: puri -- COPY django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; @@ -3097,14 +3415,14 @@ COPY django_admin_log (id, action_time, object_id, object_repr, action_flag, cha -- --- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('django_admin_log_id_seq', 1, false); -- --- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: puri -- COPY django_content_type (id, app_label, model) FROM stdin; @@ -3182,149 +3500,155 @@ COPY django_content_type (id, app_label, model) FROM stdin; 72 documents_gallery documentsindexpage 73 documents_gallery documentspagetag 74 documents_gallery documentspage +75 feeds feedsappsettings \. -- --- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- -SELECT pg_catalog.setval('django_content_type_id_seq', 74, true); +SELECT pg_catalog.setval('django_content_type_id_seq', 75, true); -- --- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: puri -- COPY django_migrations (id, app, name, applied) FROM stdin; -1 contenttypes 0001_initial 2016-06-17 11:36:26.66984-04 -2 auth 0001_initial 2016-06-17 11:36:26.797853-04 -3 admin 0001_initial 2016-06-17 11:36:26.844642-04 -4 admin 0002_logentry_remove_auto_add 2016-06-17 11:36:26.874015-04 -5 contenttypes 0002_remove_content_type_name 2016-06-17 11:36:26.953071-04 -6 auth 0002_alter_permission_name_max_length 2016-06-17 11:36:26.985198-04 -7 auth 0003_alter_user_email_max_length 2016-06-17 11:36:27.011829-04 -8 auth 0004_alter_user_username_opts 2016-06-17 11:36:27.035674-04 -9 auth 0005_alter_user_last_login_null 2016-06-17 11:36:27.062224-04 -10 auth 0006_require_contenttypes_0002 2016-06-17 11:36:27.066698-04 -11 auth 0007_alter_validators_add_error_messages 2016-06-17 11:36:27.095737-04 -12 taggit 0001_initial 2016-06-17 11:36:27.163932-04 -13 taggit 0002_auto_20150616_2121 2016-06-17 11:36:27.197611-04 -14 wagtailimages 0001_initial 2016-06-17 11:36:27.436754-04 -15 wagtailcore 0001_initial 2016-06-17 11:36:28.044743-04 -16 wagtailcore 0002_initial_data 2016-06-17 11:36:28.048137-04 -17 wagtailcore 0003_add_uniqueness_constraint_on_group_page_permission 2016-06-17 11:36:28.051476-04 -18 wagtailcore 0004_page_locked 2016-06-17 11:36:28.054988-04 -19 wagtailcore 0005_add_page_lock_permission_to_moderators 2016-06-17 11:36:28.058277-04 -20 wagtailcore 0006_add_lock_page_permission 2016-06-17 11:36:28.061559-04 -21 wagtailcore 0007_page_latest_revision_created_at 2016-06-17 11:36:28.065001-04 -22 wagtailcore 0008_populate_latest_revision_created_at 2016-06-17 11:36:28.068234-04 -23 wagtailcore 0009_remove_auto_now_add_from_pagerevision_created_at 2016-06-17 11:36:28.071648-04 -24 wagtailcore 0010_change_page_owner_to_null_on_delete 2016-06-17 11:36:28.075056-04 -25 wagtailcore 0011_page_first_published_at 2016-06-17 11:36:28.078436-04 -26 wagtailcore 0012_extend_page_slug_field 2016-06-17 11:36:28.081771-04 -27 wagtailcore 0013_update_golive_expire_help_text 2016-06-17 11:36:28.085146-04 -28 wagtailcore 0014_add_verbose_name 2016-06-17 11:36:28.088504-04 -29 wagtailcore 0015_add_more_verbose_names 2016-06-17 11:36:28.091852-04 -30 wagtailcore 0016_change_page_url_path_to_text_field 2016-06-17 11:36:28.095169-04 -31 wagtailimages 0002_initial_data 2016-06-17 11:36:28.139948-04 -32 wagtailimages 0003_fix_focal_point_fields 2016-06-17 11:36:28.330695-04 -33 wagtailimages 0004_make_focal_point_key_not_nullable 2016-06-17 11:36:28.399509-04 -34 wagtailimages 0005_make_filter_spec_unique 2016-06-17 11:36:28.499825-04 -35 wagtailimages 0006_add_verbose_names 2016-06-17 11:36:28.746268-04 -36 wagtaildocs 0001_initial 2016-06-17 11:36:28.812219-04 -37 wagtaildocs 0002_initial_data 2016-06-17 11:36:28.85113-04 -38 wagtaildocs 0003_add_verbose_names 2016-06-17 11:36:29.053463-04 -39 blog 0001_initial 2016-06-17 11:36:29.70775-04 -40 blog 0002_auto_20151021_1630 2016-06-17 11:36:30.299664-04 -41 contact 0001_initial 2016-06-17 11:36:30.674652-04 -42 contact 0002_auto_20151229_1657 2016-06-17 11:36:32.064129-04 -43 wagtailimages 0007_image_file_size 2016-06-17 11:36:32.297502-04 -44 wagtailimages 0008_image_created_at_index 2016-06-17 11:36:32.380101-04 -45 wagtailcore 0017_change_edit_page_permission_description 2016-06-17 11:36:32.467307-04 -46 wagtailcore 0018_pagerevision_submitted_for_moderation_index 2016-06-17 11:36:32.549979-04 -47 wagtailcore 0019_verbose_names_cleanup 2016-06-17 11:36:32.939046-04 -48 documents_gallery 0001_initial 2016-06-17 11:36:33.308641-04 -49 events 0001_initial 2016-06-17 11:36:34.196627-04 -50 events 0002_auto_20151014_1415 2016-06-17 11:36:34.662247-04 -51 events 0003_auto_20151021_1630 2016-06-17 11:36:35.990676-04 -52 wagtailcore 0020_add_index_on_page_first_published_at 2016-06-17 11:36:36.104992-04 -53 wagtailcore 0021_capitalizeverbose 2016-06-17 11:36:39.964348-04 -54 wagtailcore 0022_add_site_name 2016-06-17 11:36:40.075354-04 -55 wagtailcore 0023_alter_page_revision_on_delete_behaviour 2016-06-17 11:36:40.234713-04 -56 wagtailcore 0024_collection 2016-06-17 11:36:40.26312-04 -57 wagtailcore 0025_collection_initial_data 2016-06-17 11:36:40.279363-04 -58 wagtailcore 0026_group_collection_permission 2016-06-17 11:36:40.527891-04 -59 wagtailcore 0027_fix_collection_path_collation 2016-06-17 11:36:40.54707-04 -60 wagtailcore 0024_alter_page_content_type_on_delete_behaviour 2016-06-17 11:36:40.721999-04 -61 wagtailcore 0028_merge 2016-06-17 11:36:40.726186-04 -62 pages 0001_initial 2016-06-17 11:36:44.101138-04 -63 pages 0002_create_homepage 2016-06-17 11:36:44.239886-04 -64 pages 0003_advert 2016-06-17 11:36:44.414305-04 -65 pages 0004_auto_20151007_1926 2016-06-17 11:36:44.588483-04 -66 pages 0005_auto_20151021_1630 2016-06-17 11:36:47.151919-04 -67 pages 0006_standardpage_template_string 2016-06-17 11:36:47.311782-04 -68 pages 0007_socialmediasettings 2016-06-17 11:36:47.475452-04 -69 people 0001_initial 2016-06-17 11:36:49.164068-04 -70 people 0002_auto_20151021_1630 2016-06-17 11:36:49.823878-04 -71 photo_gallery 0001_initial 2016-06-17 11:36:50.696476-04 -72 products 0001_initial 2016-06-17 11:36:52.885216-04 -73 products 0002_auto_20151021_1630 2016-06-17 11:36:53.886439-04 -74 sessions 0001_initial 2016-06-17 11:36:53.924287-04 -75 wagtailadmin 0001_create_admin_access_permissions 2016-06-17 11:36:53.987377-04 -76 wagtaildocs 0004_capitalizeverbose 2016-06-17 11:36:55.481348-04 -77 wagtaildocs 0005_document_collection 2016-06-17 11:36:55.788759-04 -78 wagtaildocs 0006_copy_document_permissions_to_collections 2016-06-17 11:36:55.8805-04 -79 wagtaildocs 0005_alter_uploaded_by_user_on_delete_action 2016-06-17 11:36:56.676052-04 -80 wagtaildocs 0007_merge 2016-06-17 11:36:56.68305-04 -81 wagtailembeds 0001_initial 2016-06-17 11:36:56.778782-04 -82 wagtailembeds 0002_add_verbose_names 2016-06-17 11:36:56.811341-04 -83 wagtailembeds 0003_capitalizeverbose 2016-06-17 11:36:56.984694-04 -84 wagtailforms 0001_initial 2016-06-17 11:36:57.408656-04 -85 wagtailforms 0002_add_verbose_names 2016-06-17 11:36:58.006128-04 -86 wagtailforms 0003_capitalizeverbose 2016-06-17 11:36:58.562443-04 -87 wagtailimages 0009_capitalizeverbose 2016-06-17 11:37:01.44617-04 -88 wagtailimages 0010_change_on_delete_behaviour 2016-06-17 11:37:01.795665-04 -89 wagtailimages 0011_image_collection 2016-06-17 11:37:02.154143-04 -90 wagtailimages 0012_copy_image_permissions_to_collections 2016-06-17 11:37:02.228723-04 -91 wagtailimages 0013_make_rendition_upload_callable 2016-06-17 11:37:02.680613-04 -92 wagtailredirects 0001_initial 2016-06-17 11:37:03.594089-04 -93 wagtailredirects 0002_add_verbose_names 2016-06-17 11:37:04.226502-04 -94 wagtailredirects 0003_make_site_field_editable 2016-06-17 11:37:04.69082-04 -95 wagtailredirects 0004_set_unique_on_path_and_site 2016-06-17 11:37:06.112892-04 -96 wagtailredirects 0005_capitalizeverbose 2016-06-17 11:37:08.757867-04 -97 wagtailsearch 0001_initial 2016-06-17 11:37:09.507332-04 -98 wagtailsearch 0002_add_verbose_names 2016-06-17 11:37:11.383437-04 -99 wagtailsearch 0003_remove_editors_pick 2016-06-17 11:37:11.766478-04 -100 wagtailsearchpromotions 0001_initial 2016-06-17 11:37:12.861484-04 -101 wagtailsearchpromotions 0002_capitalizeverbose 2016-06-17 11:37:14.103859-04 -102 wagtailusers 0001_initial 2016-06-17 11:37:14.596797-04 -103 wagtailusers 0002_add_verbose_name_on_userprofile 2016-06-17 11:37:15.896748-04 -104 wagtailusers 0003_add_verbose_names 2016-06-17 11:37:16.321298-04 -105 wagtailusers 0004_capitalizeverbose 2016-06-17 11:37:17.953988-04 -106 wagtailcore 0001_squashed_0016_change_page_url_path_to_text_field 2016-06-17 11:37:17.96931-04 +1 contenttypes 0001_initial 2016-06-17 21:06:26.66984+05:30 +2 auth 0001_initial 2016-06-17 21:06:26.797853+05:30 +3 admin 0001_initial 2016-06-17 21:06:26.844642+05:30 +4 admin 0002_logentry_remove_auto_add 2016-06-17 21:06:26.874015+05:30 +5 contenttypes 0002_remove_content_type_name 2016-06-17 21:06:26.953071+05:30 +6 auth 0002_alter_permission_name_max_length 2016-06-17 21:06:26.985198+05:30 +7 auth 0003_alter_user_email_max_length 2016-06-17 21:06:27.011829+05:30 +8 auth 0004_alter_user_username_opts 2016-06-17 21:06:27.035674+05:30 +9 auth 0005_alter_user_last_login_null 2016-06-17 21:06:27.062224+05:30 +10 auth 0006_require_contenttypes_0002 2016-06-17 21:06:27.066698+05:30 +11 auth 0007_alter_validators_add_error_messages 2016-06-17 21:06:27.095737+05:30 +12 taggit 0001_initial 2016-06-17 21:06:27.163932+05:30 +13 taggit 0002_auto_20150616_2121 2016-06-17 21:06:27.197611+05:30 +14 wagtailimages 0001_initial 2016-06-17 21:06:27.436754+05:30 +15 wagtailcore 0001_initial 2016-06-17 21:06:28.044743+05:30 +16 wagtailcore 0002_initial_data 2016-06-17 21:06:28.048137+05:30 +17 wagtailcore 0003_add_uniqueness_constraint_on_group_page_permission 2016-06-17 21:06:28.051476+05:30 +18 wagtailcore 0004_page_locked 2016-06-17 21:06:28.054988+05:30 +19 wagtailcore 0005_add_page_lock_permission_to_moderators 2016-06-17 21:06:28.058277+05:30 +20 wagtailcore 0006_add_lock_page_permission 2016-06-17 21:06:28.061559+05:30 +21 wagtailcore 0007_page_latest_revision_created_at 2016-06-17 21:06:28.065001+05:30 +22 wagtailcore 0008_populate_latest_revision_created_at 2016-06-17 21:06:28.068234+05:30 +23 wagtailcore 0009_remove_auto_now_add_from_pagerevision_created_at 2016-06-17 21:06:28.071648+05:30 +24 wagtailcore 0010_change_page_owner_to_null_on_delete 2016-06-17 21:06:28.075056+05:30 +25 wagtailcore 0011_page_first_published_at 2016-06-17 21:06:28.078436+05:30 +26 wagtailcore 0012_extend_page_slug_field 2016-06-17 21:06:28.081771+05:30 +27 wagtailcore 0013_update_golive_expire_help_text 2016-06-17 21:06:28.085146+05:30 +28 wagtailcore 0014_add_verbose_name 2016-06-17 21:06:28.088504+05:30 +29 wagtailcore 0015_add_more_verbose_names 2016-06-17 21:06:28.091852+05:30 +30 wagtailcore 0016_change_page_url_path_to_text_field 2016-06-17 21:06:28.095169+05:30 +31 wagtailimages 0002_initial_data 2016-06-17 21:06:28.139948+05:30 +32 wagtailimages 0003_fix_focal_point_fields 2016-06-17 21:06:28.330695+05:30 +33 wagtailimages 0004_make_focal_point_key_not_nullable 2016-06-17 21:06:28.399509+05:30 +34 wagtailimages 0005_make_filter_spec_unique 2016-06-17 21:06:28.499825+05:30 +35 wagtailimages 0006_add_verbose_names 2016-06-17 21:06:28.746268+05:30 +36 wagtaildocs 0001_initial 2016-06-17 21:06:28.812219+05:30 +37 wagtaildocs 0002_initial_data 2016-06-17 21:06:28.85113+05:30 +38 wagtaildocs 0003_add_verbose_names 2016-06-17 21:06:29.053463+05:30 +39 blog 0001_initial 2016-06-17 21:06:29.70775+05:30 +40 blog 0002_auto_20151021_1630 2016-06-17 21:06:30.299664+05:30 +41 contact 0001_initial 2016-06-17 21:06:30.674652+05:30 +42 contact 0002_auto_20151229_1657 2016-06-17 21:06:32.064129+05:30 +43 wagtailimages 0007_image_file_size 2016-06-17 21:06:32.297502+05:30 +44 wagtailimages 0008_image_created_at_index 2016-06-17 21:06:32.380101+05:30 +45 wagtailcore 0017_change_edit_page_permission_description 2016-06-17 21:06:32.467307+05:30 +46 wagtailcore 0018_pagerevision_submitted_for_moderation_index 2016-06-17 21:06:32.549979+05:30 +47 wagtailcore 0019_verbose_names_cleanup 2016-06-17 21:06:32.939046+05:30 +48 documents_gallery 0001_initial 2016-06-17 21:06:33.308641+05:30 +49 events 0001_initial 2016-06-17 21:06:34.196627+05:30 +50 events 0002_auto_20151014_1415 2016-06-17 21:06:34.662247+05:30 +51 events 0003_auto_20151021_1630 2016-06-17 21:06:35.990676+05:30 +52 wagtailcore 0020_add_index_on_page_first_published_at 2016-06-17 21:06:36.104992+05:30 +53 wagtailcore 0021_capitalizeverbose 2016-06-17 21:06:39.964348+05:30 +54 wagtailcore 0022_add_site_name 2016-06-17 21:06:40.075354+05:30 +55 wagtailcore 0023_alter_page_revision_on_delete_behaviour 2016-06-17 21:06:40.234713+05:30 +56 wagtailcore 0024_collection 2016-06-17 21:06:40.26312+05:30 +57 wagtailcore 0025_collection_initial_data 2016-06-17 21:06:40.279363+05:30 +58 wagtailcore 0026_group_collection_permission 2016-06-17 21:06:40.527891+05:30 +59 wagtailcore 0027_fix_collection_path_collation 2016-06-17 21:06:40.54707+05:30 +60 wagtailcore 0024_alter_page_content_type_on_delete_behaviour 2016-06-17 21:06:40.721999+05:30 +61 wagtailcore 0028_merge 2016-06-17 21:06:40.726186+05:30 +62 pages 0001_initial 2016-06-17 21:06:44.101138+05:30 +63 pages 0002_create_homepage 2016-06-17 21:06:44.239886+05:30 +64 pages 0003_advert 2016-06-17 21:06:44.414305+05:30 +65 pages 0004_auto_20151007_1926 2016-06-17 21:06:44.588483+05:30 +66 pages 0005_auto_20151021_1630 2016-06-17 21:06:47.151919+05:30 +67 pages 0006_standardpage_template_string 2016-06-17 21:06:47.311782+05:30 +68 pages 0007_socialmediasettings 2016-06-17 21:06:47.475452+05:30 +69 people 0001_initial 2016-06-17 21:06:49.164068+05:30 +70 people 0002_auto_20151021_1630 2016-06-17 21:06:49.823878+05:30 +71 photo_gallery 0001_initial 2016-06-17 21:06:50.696476+05:30 +72 products 0001_initial 2016-06-17 21:06:52.885216+05:30 +73 products 0002_auto_20151021_1630 2016-06-17 21:06:53.886439+05:30 +74 sessions 0001_initial 2016-06-17 21:06:53.924287+05:30 +75 wagtailadmin 0001_create_admin_access_permissions 2016-06-17 21:06:53.987377+05:30 +76 wagtaildocs 0004_capitalizeverbose 2016-06-17 21:06:55.481348+05:30 +77 wagtaildocs 0005_document_collection 2016-06-17 21:06:55.788759+05:30 +78 wagtaildocs 0006_copy_document_permissions_to_collections 2016-06-17 21:06:55.8805+05:30 +79 wagtaildocs 0005_alter_uploaded_by_user_on_delete_action 2016-06-17 21:06:56.676052+05:30 +80 wagtaildocs 0007_merge 2016-06-17 21:06:56.68305+05:30 +81 wagtailembeds 0001_initial 2016-06-17 21:06:56.778782+05:30 +82 wagtailembeds 0002_add_verbose_names 2016-06-17 21:06:56.811341+05:30 +83 wagtailembeds 0003_capitalizeverbose 2016-06-17 21:06:56.984694+05:30 +84 wagtailforms 0001_initial 2016-06-17 21:06:57.408656+05:30 +85 wagtailforms 0002_add_verbose_names 2016-06-17 21:06:58.006128+05:30 +86 wagtailforms 0003_capitalizeverbose 2016-06-17 21:06:58.562443+05:30 +87 wagtailimages 0009_capitalizeverbose 2016-06-17 21:07:01.44617+05:30 +88 wagtailimages 0010_change_on_delete_behaviour 2016-06-17 21:07:01.795665+05:30 +89 wagtailimages 0011_image_collection 2016-06-17 21:07:02.154143+05:30 +90 wagtailimages 0012_copy_image_permissions_to_collections 2016-06-17 21:07:02.228723+05:30 +91 wagtailimages 0013_make_rendition_upload_callable 2016-06-17 21:07:02.680613+05:30 +92 wagtailredirects 0001_initial 2016-06-17 21:07:03.594089+05:30 +93 wagtailredirects 0002_add_verbose_names 2016-06-17 21:07:04.226502+05:30 +94 wagtailredirects 0003_make_site_field_editable 2016-06-17 21:07:04.69082+05:30 +95 wagtailredirects 0004_set_unique_on_path_and_site 2016-06-17 21:07:06.112892+05:30 +96 wagtailredirects 0005_capitalizeverbose 2016-06-17 21:07:08.757867+05:30 +97 wagtailsearch 0001_initial 2016-06-17 21:07:09.507332+05:30 +98 wagtailsearch 0002_add_verbose_names 2016-06-17 21:07:11.383437+05:30 +99 wagtailsearch 0003_remove_editors_pick 2016-06-17 21:07:11.766478+05:30 +100 wagtailsearchpromotions 0001_initial 2016-06-17 21:07:12.861484+05:30 +101 wagtailsearchpromotions 0002_capitalizeverbose 2016-06-17 21:07:14.103859+05:30 +102 wagtailusers 0001_initial 2016-06-17 21:07:14.596797+05:30 +103 wagtailusers 0002_add_verbose_name_on_userprofile 2016-06-17 21:07:15.896748+05:30 +104 wagtailusers 0003_add_verbose_names 2016-06-17 21:07:16.321298+05:30 +105 wagtailusers 0004_capitalizeverbose 2016-06-17 21:07:17.953988+05:30 +106 wagtailcore 0001_squashed_0016_change_page_url_path_to_text_field 2016-06-17 21:07:17.96931+05:30 +107 feeds 0001_initial 2016-06-20 18:15:01.140884+05:30 +108 feeds 0002_auto_20160620_1155 2016-06-20 18:15:02.727011+05:30 +109 feeds 0003_auto_20160620_1249 2016-06-20 18:20:04.653478+05:30 +110 feeds 0003_auto_20160620_1301 2016-06-20 18:32:59.790103+05:30 \. -- --- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- -SELECT pg_catalog.setval('django_migrations_id_seq', 106, true); +SELECT pg_catalog.setval('django_migrations_id_seq', 110, true); -- --- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: puri -- COPY django_session (session_key, session_data, expire_date) FROM stdin; -d7d0eohyu745fqfibtnwdw1ynkaijjb4 MGFlNjQ3OTIwMmNiMTk4MmQxZjI5YWMyOGU1ZTU1NGFmMDE2ODZhYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjA1MDRmNGQxYmEwNjJlN2ZhOWNkNTVmOTJhZTYyMTI3MmQyYzg0MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0= 2016-07-01 11:38:13.803532-04 -uqsn55k24s1zba02n6eijnx9uaclrjbp MGFlNjQ3OTIwMmNiMTk4MmQxZjI5YWMyOGU1ZTU1NGFmMDE2ODZhYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjA1MDRmNGQxYmEwNjJlN2ZhOWNkNTVmOTJhZTYyMTI3MmQyYzg0MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0= 2016-07-01 13:56:37.472543-04 +d7d0eohyu745fqfibtnwdw1ynkaijjb4 MGFlNjQ3OTIwMmNiMTk4MmQxZjI5YWMyOGU1ZTU1NGFmMDE2ODZhYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjA1MDRmNGQxYmEwNjJlN2ZhOWNkNTVmOTJhZTYyMTI3MmQyYzg0MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0= 2016-07-01 21:08:13.803532+05:30 +uqsn55k24s1zba02n6eijnx9uaclrjbp MGFlNjQ3OTIwMmNiMTk4MmQxZjI5YWMyOGU1ZTU1NGFmMDE2ODZhYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjA1MDRmNGQxYmEwNjJlN2ZhOWNkNTVmOTJhZTYyMTI3MmQyYzg0MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0= 2016-07-01 23:26:37.472543+05:30 +3y3gunotbe90buiza1zza3lz1eghekvn MGFlNjQ3OTIwMmNiMTk4MmQxZjI5YWMyOGU1ZTU1NGFmMDE2ODZhYzp7Il9hdXRoX3VzZXJfaGFzaCI6IjA1MDRmNGQxYmEwNjJlN2ZhOWNkNTVmOTJhZTYyMTI3MmQyYzg0MmQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0= 2016-07-04 18:34:34.358995+05:30 \. -- --- Data for Name: documents_gallery_documentsindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: documents_gallery_documentsindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY documents_gallery_documentsindexpage (page_ptr_id, intro, feed_image_id) FROM stdin; @@ -3333,7 +3657,7 @@ COPY documents_gallery_documentsindexpage (page_ptr_id, intro, feed_image_id) FR -- --- Data for Name: documents_gallery_documentspage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: documents_gallery_documentspage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY documents_gallery_documentspage (page_ptr_id, feed_image_id) FROM stdin; @@ -3342,7 +3666,7 @@ COPY documents_gallery_documentspage (page_ptr_id, feed_image_id) FROM stdin; -- --- Data for Name: documents_gallery_documentspagetag; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: documents_gallery_documentspagetag; Type: TABLE DATA; Schema: public; Owner: puri -- COPY documents_gallery_documentspagetag (id, content_object_id, tag_id) FROM stdin; @@ -3351,14 +3675,14 @@ COPY documents_gallery_documentspagetag (id, content_object_id, tag_id) FROM std -- --- Name: documents_gallery_documentspagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('documents_gallery_documentspagetag_id_seq', 3, true); -- --- Data for Name: events_eventindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: events_eventindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY events_eventindexpage (page_ptr_id, intro) FROM stdin; @@ -3367,7 +3691,7 @@ COPY events_eventindexpage (page_ptr_id, intro) FROM stdin; -- --- Data for Name: events_eventindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: events_eventindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY events_eventindexpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3375,14 +3699,14 @@ COPY events_eventindexpagerelatedlink (id, sort_order, link_external, title, lin -- --- Name: events_eventindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('events_eventindexpagerelatedlink_id_seq', 1, false); -- --- Data for Name: events_eventpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: events_eventpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY events_eventpage (page_ptr_id, date_from, date_to, time_from, time_to, audience, location, body, cost, signup_link, feed_image_id) FROM stdin; @@ -3393,7 +3717,7 @@ COPY events_eventpage (page_ptr_id, date_from, date_to, time_from, time_to, audi -- --- Data for Name: events_eventpagecarouselitem; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: events_eventpagecarouselitem; Type: TABLE DATA; Schema: public; Owner: puri -- COPY events_eventpagecarouselitem (id, sort_order, link_external, embed_url, caption, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -3401,14 +3725,14 @@ COPY events_eventpagecarouselitem (id, sort_order, link_external, embed_url, cap -- --- Name: events_eventpagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('events_eventpagecarouselitem_id_seq', 1, false); -- --- Data for Name: events_eventpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: events_eventpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY events_eventpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3416,14 +3740,14 @@ COPY events_eventpagerelatedlink (id, sort_order, link_external, title, link_doc -- --- Name: events_eventpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('events_eventpagerelatedlink_id_seq', 1, false); -- --- Data for Name: events_eventpagespeaker; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: events_eventpagespeaker; Type: TABLE DATA; Schema: public; Owner: puri -- COPY events_eventpagespeaker (id, sort_order, link_external, full_name, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -3431,14 +3755,30 @@ COPY events_eventpagespeaker (id, sort_order, link_external, full_name, image_id -- --- Name: events_eventpagespeaker_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: events_eventpagespeaker_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('events_eventpagespeaker_id_seq', 1, false); -- --- Data for Name: pages_advert; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: feeds_feedsappsettings; Type: TABLE DATA; Schema: public; Owner: puri +-- + +COPY feeds_feedsappsettings (id, feed_app_label, feed_model_name, site_id, feed_author_email, feed_author_link, feed_description, feed_item_content_field, feed_item_description_field, feed_link, feed_title) FROM stdin; +1 blog BlogPage 2 john@johnblog.com https://johnblog.com News and views from around the Web body intro http://www.example.com/news/ From the Desk of John Blog +\. + + +-- +-- Name: feeds_feedsappsettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri +-- + +SELECT pg_catalog.setval('feeds_feedsappsettings_id_seq', 1, true); + + +-- +-- Data for Name: pages_advert; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_advert (id, link_external, title, text, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -3446,14 +3786,14 @@ COPY pages_advert (id, link_external, title, text, image_id, link_document_id, l -- --- Name: pages_advert_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_advert_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_advert_id_seq', 1, false); -- --- Data for Name: pages_contentblock; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_contentblock; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_contentblock (id, link_external, title, body, summary, slug, link_document_id, link_page_id, page_id) FROM stdin; @@ -3461,14 +3801,14 @@ COPY pages_contentblock (id, link_external, title, body, summary, slug, link_doc -- --- Name: pages_contentblock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_contentblock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_contentblock_id_seq', 1, false); -- --- Data for Name: pages_faqspage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_faqspage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_faqspage (page_ptr_id, body) FROM stdin; @@ -3476,7 +3816,7 @@ COPY pages_faqspage (page_ptr_id, body) FROM stdin; -- --- Data for Name: pages_homepage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_homepage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_homepage (page_ptr_id, title_text, body) FROM stdin; @@ -3485,7 +3825,7 @@ COPY pages_homepage (page_ptr_id, title_text, body) FROM stdin; -- --- Data for Name: pages_homepagecarouselitem; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_homepagecarouselitem; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_homepagecarouselitem (id, sort_order, link_external, embed_url, caption, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -3497,14 +3837,14 @@ COPY pages_homepagecarouselitem (id, sort_order, link_external, embed_url, capti -- --- Name: pages_homepagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_homepagecarouselitem_id_seq', 4, true); -- --- Data for Name: pages_homepagecontentitem; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_homepagecontentitem; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_homepagecontentitem (id, sort_order, link_external, title, content, summary, slug, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -3518,14 +3858,14 @@ COPY pages_homepagecontentitem (id, sort_order, link_external, title, content, s -- --- Name: pages_homepagecontentitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_homepagecontentitem_id_seq', 7, true); -- --- Data for Name: pages_homepagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_homepagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_homepagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3533,14 +3873,14 @@ COPY pages_homepagerelatedlink (id, sort_order, link_external, title, link_docum -- --- Name: pages_homepagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_homepagerelatedlink_id_seq', 1, false); -- --- Data for Name: pages_socialmediasettings; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_socialmediasettings; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_socialmediasettings (id, facebook, instagram, twitter_name, youtube, linkedin, github, facebook_appid, site_id) FROM stdin; @@ -3549,14 +3889,14 @@ COPY pages_socialmediasettings (id, facebook, instagram, twitter_name, youtube, -- --- Name: pages_socialmediasettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_socialmediasettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_socialmediasettings_id_seq', 1, true); -- --- Data for Name: pages_standardindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_standardindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_standardindexpage (page_ptr_id, subtitle, intro, feed_image_id) FROM stdin; @@ -3565,7 +3905,7 @@ COPY pages_standardindexpage (page_ptr_id, subtitle, intro, feed_image_id) FROM -- --- Data for Name: pages_standardindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_standardindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_standardindexpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3573,14 +3913,14 @@ COPY pages_standardindexpagerelatedlink (id, sort_order, link_external, title, l -- --- Name: pages_standardindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_standardindexpagerelatedlink_id_seq', 1, false); -- --- Data for Name: pages_standardpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_standardpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_standardpage (page_ptr_id, subtitle, intro, body, feed_image_id, template_string) FROM stdin; @@ -3590,7 +3930,7 @@ COPY pages_standardpage (page_ptr_id, subtitle, intro, body, feed_image_id, temp -- --- Data for Name: pages_standardpagecarouselitem; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_standardpagecarouselitem; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_standardpagecarouselitem (id, sort_order, link_external, embed_url, caption, image_id, link_document_id, link_page_id, page_id) FROM stdin; @@ -3598,14 +3938,14 @@ COPY pages_standardpagecarouselitem (id, sort_order, link_external, embed_url, c -- --- Name: pages_standardpagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_standardpagecarouselitem_id_seq', 1, false); -- --- Data for Name: pages_standardpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_standardpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_standardpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3613,14 +3953,14 @@ COPY pages_standardpagerelatedlink (id, sort_order, link_external, title, link_d -- --- Name: pages_standardpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_standardpagerelatedlink_id_seq', 1, false); -- --- Data for Name: pages_testimonial; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: pages_testimonial; Type: TABLE DATA; Schema: public; Owner: puri -- COPY pages_testimonial (id, link_external, name, text, link_document_id, link_page_id, page_id, photo_id) FROM stdin; @@ -3630,14 +3970,14 @@ COPY pages_testimonial (id, link_external, name, text, link_document_id, link_pa -- --- Name: pages_testimonial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: pages_testimonial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('pages_testimonial_id_seq', 2, true); -- --- Data for Name: people_personindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: people_personindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY people_personindexpage (page_ptr_id, subtitle, intro) FROM stdin; @@ -3646,7 +3986,7 @@ COPY people_personindexpage (page_ptr_id, subtitle, intro) FROM stdin; -- --- Data for Name: people_personindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: people_personindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY people_personindexpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3654,14 +3994,14 @@ COPY people_personindexpagerelatedlink (id, sort_order, link_external, title, li -- --- Name: people_personindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('people_personindexpagerelatedlink_id_seq', 1, false); -- --- Data for Name: people_personpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: people_personpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY people_personpage (page_ptr_id, name_organization, telephone, email, address_1, address_2, city, country, post_code, intro, biography, feed_image_id, image_id, role_id) FROM stdin; @@ -3673,7 +4013,7 @@ COPY people_personpage (page_ptr_id, name_organization, telephone, email, addres -- --- Data for Name: people_personpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: people_personpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY people_personpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3681,14 +4021,14 @@ COPY people_personpagerelatedlink (id, sort_order, link_external, title, link_do -- --- Name: people_personpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('people_personpagerelatedlink_id_seq', 1, false); -- --- Data for Name: people_personpagetag; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: people_personpagetag; Type: TABLE DATA; Schema: public; Owner: puri -- COPY people_personpagetag (id, content_object_id, tag_id) FROM stdin; @@ -3696,14 +4036,14 @@ COPY people_personpagetag (id, content_object_id, tag_id) FROM stdin; -- --- Name: people_personpagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: people_personpagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('people_personpagetag_id_seq', 1, false); -- --- Data for Name: people_personrole; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: people_personrole; Type: TABLE DATA; Schema: public; Owner: puri -- COPY people_personrole (id, name) FROM stdin; @@ -3711,14 +4051,14 @@ COPY people_personrole (id, name) FROM stdin; -- --- Name: people_personrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: people_personrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('people_personrole_id_seq', 1, false); -- --- Data for Name: photo_gallery_galleryindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: photo_gallery_galleryindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY photo_gallery_galleryindexpage (page_ptr_id, intro, feed_image_id) FROM stdin; @@ -3727,7 +4067,7 @@ COPY photo_gallery_galleryindexpage (page_ptr_id, intro, feed_image_id) FROM std -- --- Data for Name: photo_gallery_gallerypage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: photo_gallery_gallerypage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY photo_gallery_gallerypage (page_ptr_id, feed_image_id) FROM stdin; @@ -3736,7 +4076,7 @@ COPY photo_gallery_gallerypage (page_ptr_id, feed_image_id) FROM stdin; -- --- Data for Name: photo_gallery_gallerypagetag; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: photo_gallery_gallerypagetag; Type: TABLE DATA; Schema: public; Owner: puri -- COPY photo_gallery_gallerypagetag (id, content_object_id, tag_id) FROM stdin; @@ -3745,14 +4085,14 @@ COPY photo_gallery_gallerypagetag (id, content_object_id, tag_id) FROM stdin; -- --- Name: photo_gallery_gallerypagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('photo_gallery_gallerypagetag_id_seq', 5, true); -- --- Data for Name: products_productindexpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: products_productindexpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY products_productindexpage (page_ptr_id, subtitle, intro) FROM stdin; @@ -3760,7 +4100,7 @@ COPY products_productindexpage (page_ptr_id, subtitle, intro) FROM stdin; -- --- Data for Name: products_productindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: products_productindexpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY products_productindexpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3768,14 +4108,14 @@ COPY products_productindexpagerelatedlink (id, sort_order, link_external, title, -- --- Name: products_productindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('products_productindexpagerelatedlink_id_seq', 1, false); -- --- Data for Name: products_productpage; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: products_productpage; Type: TABLE DATA; Schema: public; Owner: puri -- COPY products_productpage (page_ptr_id, price, description, feed_image_id, image_id) FROM stdin; @@ -3783,7 +4123,7 @@ COPY products_productpage (page_ptr_id, price, description, feed_image_id, image -- --- Data for Name: products_productpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: products_productpagerelatedlink; Type: TABLE DATA; Schema: public; Owner: puri -- COPY products_productpagerelatedlink (id, sort_order, link_external, title, link_document_id, link_page_id, page_id) FROM stdin; @@ -3791,14 +4131,14 @@ COPY products_productpagerelatedlink (id, sort_order, link_external, title, link -- --- Name: products_productpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('products_productpagerelatedlink_id_seq', 1, false); -- --- Data for Name: products_productpagetag; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: products_productpagetag; Type: TABLE DATA; Schema: public; Owner: puri -- COPY products_productpagetag (id, content_object_id, tag_id) FROM stdin; @@ -3806,14 +4146,14 @@ COPY products_productpagetag (id, content_object_id, tag_id) FROM stdin; -- --- Name: products_productpagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: products_productpagetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('products_productpagetag_id_seq', 1, false); -- --- Data for Name: taggit_tag; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: taggit_tag; Type: TABLE DATA; Schema: public; Owner: puri -- COPY taggit_tag (id, name, slug) FROM stdin; @@ -3825,14 +4165,14 @@ COPY taggit_tag (id, name, slug) FROM stdin; -- --- Name: taggit_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: taggit_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('taggit_tag_id_seq', 4, true); -- --- Data for Name: taggit_taggeditem; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: taggit_taggeditem; Type: TABLE DATA; Schema: public; Owner: puri -- COPY taggit_taggeditem (id, object_id, content_type_id, tag_id) FROM stdin; @@ -3854,14 +4194,14 @@ COPY taggit_taggeditem (id, object_id, content_type_id, tag_id) FROM stdin; -- --- Name: taggit_taggeditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('taggit_taggeditem_id_seq', 14, true); -- --- Data for Name: wagtailcore_collection; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_collection; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_collection (id, path, depth, numchild, name) FROM stdin; @@ -3870,14 +4210,14 @@ COPY wagtailcore_collection (id, path, depth, numchild, name) FROM stdin; -- --- Name: wagtailcore_collection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_collection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_collection_id_seq', 1, true); -- --- Data for Name: wagtailcore_groupcollectionpermission; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_groupcollectionpermission; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_groupcollectionpermission (id, collection_id, group_id, permission_id) FROM stdin; @@ -3893,14 +4233,14 @@ COPY wagtailcore_groupcollectionpermission (id, collection_id, group_id, permiss -- --- Name: wagtailcore_groupcollectionpermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_groupcollectionpermission_id_seq', 8, true); -- --- Data for Name: wagtailcore_grouppagepermission; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_grouppagepermission; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_grouppagepermission (id, permission_type, group_id, page_id) FROM stdin; @@ -3914,115 +4254,115 @@ COPY wagtailcore_grouppagepermission (id, permission_type, group_id, page_id) FR -- --- Name: wagtailcore_grouppagepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_grouppagepermission_id_seq', 6, true); -- --- Data for Name: wagtailcore_page; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_page; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_page (id, path, depth, numchild, title, slug, live, has_unpublished_changes, url_path, seo_title, show_in_menus, search_description, go_live_at, expire_at, expired, content_type_id, owner_id, locked, latest_revision_created_at, first_published_at) FROM stdin; 1 0001 1 1 Root root t f / f \N \N f 1 \N f \N \N -22 000100010006 3 1 Photo Gallery photo-gallery t f /home/photo-gallery/ t \N \N f 64 1 f 2016-06-17 12:21:30.7016-04 2016-06-17 12:21:30.882765-04 -11 0001000100020004 4 0 Person Page 4 person-page-4 t f /home/person-index-page/person-page-4/ f \N \N f 63 1 f 2016-06-17 12:03:01.261448-04 2016-06-17 12:03:01.433263-04 -4 000100010001 3 2 Standard Index standard-index-page t f /home/standard-index-page/ t \N \N f 34 1 f 2016-06-17 12:04:00.906226-04 2016-06-17 11:56:57.824556-04 -7 000100010002 3 4 Person Index person-index-page t f /home/person-index-page/ t \N \N f 59 1 f 2016-06-17 12:04:11.182875-04 2016-06-17 11:59:56.836285-04 -5 0001000100010001 4 0 Standard Page standard-page t f /home/standard-index-page/standard-page/ t \N \N f 37 1 f 2016-06-17 11:58:15.836835-04 2016-06-17 11:58:06.440068-04 -21 0001000100050001 4 0 Sample Documents sample-documents t f /home/documents-gallery/sample-documents/ f \N \N f 74 1 f 2016-06-17 12:23:55.895032-04 2016-06-17 12:19:46.496307-04 -8 0001000100020001 4 0 Person Page 1 person-page-1 t f /home/person-index-page/person-page-1/ t \N \N f 63 1 f 2016-06-17 12:00:24.12037-04 2016-06-17 12:00:24.322505-04 -6 0001000100010002 4 0 Standard Page w/o Sidebar standard-page-wo-sidebar t f /home/standard-index-page/standard-page-wo-sidebar/ t \N \N f 37 1 f 2016-06-17 12:01:00.336654-04 2016-06-17 11:59:06.352172-04 -16 000100010004 3 3 Blog Index blog-index t f /home/blog-index/ t \N \N f 43 1 f 2016-06-17 12:13:05.085856-04 2016-06-17 12:13:05.301675-04 -9 0001000100020002 4 0 Person Page 2 person-page-2 t f /home/person-index-page/person-page-2/ t \N \N f 63 1 f 2016-06-17 12:02:15.456572-04 2016-06-17 12:02:15.623677-04 -10 0001000100020003 4 0 Person Page 3 person-page-3 t f /home/person-index-page/person-page-3/ t \N \N f 63 1 f 2016-06-17 12:02:38.487866-04 2016-06-17 12:02:38.682069-04 -12 000100010003 3 3 Event Index event-index t f /home/event-index/ t \N \N f 49 1 f 2016-06-17 12:04:32.007271-04 2016-06-17 12:04:32.154001-04 -15 0001000100030003 4 0 Event Page 3 event-page-3 t f /home/event-index/event-page-3/ f \N \N f 53 1 f 2016-06-17 12:07:10.441761-04 2016-06-17 12:06:40.965531-04 -14 0001000100030002 4 0 Event Page 2 event-page-2 t f /home/event-index/event-page-2/ f \N \N f 53 1 f 2016-06-17 12:07:41.45225-04 2016-06-17 12:05:52.253868-04 -13 0001000100030001 4 0 Event Page 1 event-page-1 t f /home/event-index/event-page-1/ f \N \N f 53 1 f 2016-06-17 12:12:41.444676-04 2016-06-17 12:05:07.651375-04 -20 000100010005 3 1 Documents Gallery documents-gallery t f /home/documents-gallery/ t \N \N f 72 1 f 2016-06-17 12:19:19.058749-04 2016-06-17 12:19:19.232515-04 -19 0001000100040003 4 0 Blog Page 3 blog-page-3 t f /home/blog-index/blog-page-3/ t \N \N f 47 1 f 2016-06-17 12:27:05.945368-04 2016-06-17 12:16:55.677047-04 -18 0001000100040002 4 0 Blog Page 2 blog-post-2 t f /home/blog-index/blog-post-2/ t \N \N f 47 1 f 2016-06-17 12:27:18.745911-04 2016-06-17 12:15:09.867038-04 -17 0001000100040001 4 0 Blog Page 1 blog-page-1 t f /home/blog-index/blog-page-1/ t \N \N f 47 1 f 2016-06-17 12:27:30.797724-04 2016-06-17 12:14:23.952197-04 -3 00010001 2 7 Homepage home t f /home/ f \N \N f 4 \N f 2016-06-17 11:55:56.169067-04 2016-06-17 11:47:11.474333-04 -24 000100010007 3 0 Contact Us contact-us t f /home/contact-us/ t \N \N f 57 1 f 2016-06-17 12:29:19.362915-04 2016-06-17 12:29:19.63305-04 -23 0001000100060001 4 0 Sample Gallery sample-gallery t f /home/photo-gallery/sample-gallery/ f \N \N f 66 1 f 2016-06-17 13:57:08.331751-04 2016-06-17 12:21:56.197955-04 +22 000100010006 3 1 Photo Gallery photo-gallery t f /home/photo-gallery/ t \N \N f 64 1 f 2016-06-17 21:51:30.7016+05:30 2016-06-17 21:51:30.882765+05:30 +11 0001000100020004 4 0 Person Page 4 person-page-4 t f /home/person-index-page/person-page-4/ f \N \N f 63 1 f 2016-06-17 21:33:01.261448+05:30 2016-06-17 21:33:01.433263+05:30 +4 000100010001 3 2 Standard Index standard-index-page t f /home/standard-index-page/ t \N \N f 34 1 f 2016-06-17 21:34:00.906226+05:30 2016-06-17 21:26:57.824556+05:30 +7 000100010002 3 4 Person Index person-index-page t f /home/person-index-page/ t \N \N f 59 1 f 2016-06-17 21:34:11.182875+05:30 2016-06-17 21:29:56.836285+05:30 +5 0001000100010001 4 0 Standard Page standard-page t f /home/standard-index-page/standard-page/ t \N \N f 37 1 f 2016-06-17 21:28:15.836835+05:30 2016-06-17 21:28:06.440068+05:30 +21 0001000100050001 4 0 Sample Documents sample-documents t f /home/documents-gallery/sample-documents/ f \N \N f 74 1 f 2016-06-17 21:53:55.895032+05:30 2016-06-17 21:49:46.496307+05:30 +8 0001000100020001 4 0 Person Page 1 person-page-1 t f /home/person-index-page/person-page-1/ t \N \N f 63 1 f 2016-06-17 21:30:24.12037+05:30 2016-06-17 21:30:24.322505+05:30 +6 0001000100010002 4 0 Standard Page w/o Sidebar standard-page-wo-sidebar t f /home/standard-index-page/standard-page-wo-sidebar/ t \N \N f 37 1 f 2016-06-17 21:31:00.336654+05:30 2016-06-17 21:29:06.352172+05:30 +16 000100010004 3 3 Blog Index blog-index t f /home/blog-index/ t \N \N f 43 1 f 2016-06-17 21:43:05.085856+05:30 2016-06-17 21:43:05.301675+05:30 +9 0001000100020002 4 0 Person Page 2 person-page-2 t f /home/person-index-page/person-page-2/ t \N \N f 63 1 f 2016-06-17 21:32:15.456572+05:30 2016-06-17 21:32:15.623677+05:30 +10 0001000100020003 4 0 Person Page 3 person-page-3 t f /home/person-index-page/person-page-3/ t \N \N f 63 1 f 2016-06-17 21:32:38.487866+05:30 2016-06-17 21:32:38.682069+05:30 +12 000100010003 3 3 Event Index event-index t f /home/event-index/ t \N \N f 49 1 f 2016-06-17 21:34:32.007271+05:30 2016-06-17 21:34:32.154001+05:30 +15 0001000100030003 4 0 Event Page 3 event-page-3 t f /home/event-index/event-page-3/ f \N \N f 53 1 f 2016-06-17 21:37:10.441761+05:30 2016-06-17 21:36:40.965531+05:30 +14 0001000100030002 4 0 Event Page 2 event-page-2 t f /home/event-index/event-page-2/ f \N \N f 53 1 f 2016-06-17 21:37:41.45225+05:30 2016-06-17 21:35:52.253868+05:30 +13 0001000100030001 4 0 Event Page 1 event-page-1 t f /home/event-index/event-page-1/ f \N \N f 53 1 f 2016-06-17 21:42:41.444676+05:30 2016-06-17 21:35:07.651375+05:30 +20 000100010005 3 1 Documents Gallery documents-gallery t f /home/documents-gallery/ t \N \N f 72 1 f 2016-06-17 21:49:19.058749+05:30 2016-06-17 21:49:19.232515+05:30 +19 0001000100040003 4 0 Blog Page 3 blog-page-3 t f /home/blog-index/blog-page-3/ t \N \N f 47 1 f 2016-06-17 21:57:05.945368+05:30 2016-06-17 21:46:55.677047+05:30 +18 0001000100040002 4 0 Blog Page 2 blog-post-2 t f /home/blog-index/blog-post-2/ t \N \N f 47 1 f 2016-06-17 21:57:18.745911+05:30 2016-06-17 21:45:09.867038+05:30 +17 0001000100040001 4 0 Blog Page 1 blog-page-1 t f /home/blog-index/blog-page-1/ t \N \N f 47 1 f 2016-06-17 21:57:30.797724+05:30 2016-06-17 21:44:23.952197+05:30 +3 00010001 2 7 Homepage home t f /home/ f \N \N f 4 \N f 2016-06-17 21:25:56.169067+05:30 2016-06-17 21:17:11.474333+05:30 +24 000100010007 3 0 Contact Us contact-us t f /home/contact-us/ t \N \N f 57 1 f 2016-06-17 21:59:19.362915+05:30 2016-06-17 21:59:19.63305+05:30 +23 0001000100060001 4 0 Sample Gallery sample-gallery t f /home/photo-gallery/sample-gallery/ f \N \N f 66 1 f 2016-06-17 23:27:08.331751+05:30 2016-06-17 21:51:56.197955+05:30 \. -- --- Name: wagtailcore_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_page_id_seq', 24, true); -- --- Data for Name: wagtailcore_pagerevision; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_pagerevision; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_pagerevision (id, submitted_for_moderation, created_at, content_json, approved_go_live_at, page_id, user_id) FROM stdin; -1 f 2016-06-17 11:47:11.217612-04 {"carousel_items": [{"link_page": null, "embed_url": "", "image": 3, "link_external": "", "caption": "", "sort_order": 0, "link_document": null, "pk": null, "page": 3}, {"link_page": null, "embed_url": "", "image": 8, "link_external": "", "caption": "", "sort_order": 1, "link_document": null, "pk": null, "page": 3}, {"link_page": null, "embed_url": "", "image": 4, "link_external": "", "caption": "", "sort_order": 2, "link_document": null, "pk": null, "page": 3}, {"link_page": null, "embed_url": "", "image": 6, "link_external": "", "caption": "", "sort_order": 3, "link_document": null, "pk": null, "page": 3}], "search_description": "", "owner": null, "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Homepage", "seo_title": "", "slug": "home", "live": true, "has_unpublished_changes": false, "body": "

A cookiecutter template for Wagtail CMS featuring Zurb Foundation front-end framework.

", "content_items": [{"slug": "1", "link_page": null, "title": "Foundation 6", "image": 10, "link_external": "", "summary": "", "content": "

", "sort_order": 0, "link_document": null, "pk": null, "page": 3}], "numchild": 0, "title_text": "

Welcome to\\u00a0Wagtail Cookiecutter Foundation

", "content_type": 4, "show_in_menus": false, "path": "00010001", "url_path": "/home/", "expired": false, "pk": 3, "locked": false, "depth": 2, "first_published_at": null, "expire_at": null} \N 3 1 -2 f 2016-06-17 11:54:26.111309-04 {"carousel_items": [{"link_page": null, "embed_url": "", "image": 3, "link_external": "", "caption": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 3}, {"link_page": null, "embed_url": "", "image": 8, "link_external": "", "caption": "", "sort_order": 1, "link_document": null, "pk": 2, "page": 3}, {"link_page": null, "embed_url": "", "image": 4, "link_external": "", "caption": "", "sort_order": 2, "link_document": null, "pk": 3, "page": 3}, {"link_page": null, "embed_url": "", "image": 6, "link_external": "", "caption": "", "sort_order": 3, "link_document": null, "pk": 4, "page": 3}], "search_description": "", "owner": null, "latest_revision_created_at": "2016-06-17T15:47:11.217Z", "go_live_at": null, "related_links": [], "title": "Homepage", "seo_title": "", "slug": "home", "live": true, "has_unpublished_changes": false, "body": "

A cookiecutter template for Wagtail CMS featuring Zurb Foundation front-end framework.

", "content_items": [{"slug": "foundation", "link_page": null, "title": "Foundation 6", "image": 10, "link_external": "http://foundation.zurb.com/", "summary": "", "content": "

The most advanced responsive front-end framework in the world.

", "sort_order": 0, "link_document": null, "pk": null, "page": 3}, {"slug": "wagtail", "link_page": null, "title": "Wagtail", "image": 9, "link_external": "https://wagtail.io/", "summary": "

Wagtail is an open source CMS written in Python and built on the Django framework.

", "content": "", "sort_order": 1, "link_document": null, "pk": null, "page": 3}, {"slug": "ansible", "link_page": null, "title": "Ansible", "image": 1, "link_external": "https://www.ansible.com/", "summary": "", "content": "

Ansible for easy Provisioning and Deployment.

", "sort_order": 2, "link_document": null, "pk": null, "page": 3}, {"slug": "sass", "link_page": null, "title": "Sass", "image": 7, "link_external": "http://sass-lang.com/", "summary": "", "content": "

Sass 100%

", "sort_order": 3, "link_document": null, "pk": null, "page": 3}, {"slug": "postgresql", "link_page": null, "title": "PostgreSQL", "image": 5, "link_external": "https://www.postgresql.org/", "summary": "", "content": "

PostgreSQL everywhere!

", "sort_order": 4, "link_document": null, "pk": null, "page": 3}, {"slug": "digital-ocean", "link_page": null, "title": "Digital Ocean", "image": 2, "link_external": "https://www.digitalocean.com/", "summary": "", "content": "

Spin up your server with the Digital Ocean API

", "sort_order": 5, "link_document": null, "pk": null, "page": 3}], "numchild": 0, "title_text": "

Welcome to\\u00a0Wagtail Cookiecutter Foundation

", "content_type": 4, "show_in_menus": false, "path": "00010001", "url_path": "/home/", "expired": false, "pk": 3, "locked": false, "depth": 2, "first_published_at": "2016-06-17T15:47:11.474Z", "expire_at": null} \N 3 1 -20 f 2016-06-17 12:05:18.331695-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:05:07.507Z", "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 -23 f 2016-06-17 12:06:13.126926-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:05:18.331Z", "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 -3 f 2016-06-17 11:55:56.169067-04 {"carousel_items": [{"link_page": null, "embed_url": "", "image": 3, "link_external": "", "caption": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 3}, {"link_page": null, "embed_url": "", "image": 8, "link_external": "", "caption": "", "sort_order": 1, "link_document": null, "pk": 2, "page": 3}, {"link_page": null, "embed_url": "", "image": 4, "link_external": "", "caption": "", "sort_order": 2, "link_document": null, "pk": 3, "page": 3}, {"link_page": null, "embed_url": "", "image": 6, "link_external": "", "caption": "", "sort_order": 3, "link_document": null, "pk": 4, "page": 3}], "search_description": "", "owner": null, "latest_revision_created_at": "2016-06-17T15:54:26.111Z", "go_live_at": null, "related_links": [], "title": "Homepage", "seo_title": "", "slug": "home", "live": true, "has_unpublished_changes": false, "body": "

A cookiecutter template for Wagtail CMS featuring Zurb Foundation front-end framework.

", "content_items": [{"slug": "foundation", "link_page": null, "title": "Foundation 6", "image": 10, "link_external": "http://foundation.zurb.com/", "summary": "", "content": "

The most advanced responsive front-end framework in the world.

", "sort_order": 0, "link_document": null, "pk": 2, "page": 3}, {"slug": "wagtail", "link_page": null, "title": "Wagtail", "image": 9, "link_external": "https://wagtail.io/", "summary": "", "content": "

Wagtail is an open source CMS written in Python and built on the Django framework.

", "sort_order": 1, "link_document": null, "pk": 3, "page": 3}, {"slug": "ansible", "link_page": null, "title": "Ansible", "image": 1, "link_external": "https://www.ansible.com/", "summary": "", "content": "

Ansible for easy Provisioning and Deployment.

", "sort_order": 2, "link_document": null, "pk": 4, "page": 3}, {"slug": "sass", "link_page": null, "title": "Sass", "image": 7, "link_external": "http://sass-lang.com/", "summary": "", "content": "

Sass 100%

", "sort_order": 3, "link_document": null, "pk": 5, "page": 3}, {"slug": "postgresql", "link_page": null, "title": "PostgreSQL", "image": 5, "link_external": "https://www.postgresql.org/", "summary": "", "content": "

PostgreSQL everywhere!

", "sort_order": 4, "link_document": null, "pk": 6, "page": 3}, {"slug": "digital-ocean", "link_page": null, "title": "Digital Ocean", "image": 2, "link_external": "https://www.digitalocean.com/", "summary": "", "content": "

Spin up your server with the Digital Ocean API

", "sort_order": 5, "link_document": null, "pk": 7, "page": 3}], "numchild": 0, "title_text": "

Welcome to\\u00a0Wagtail Cookiecutter Foundation

", "content_type": 4, "show_in_menus": false, "path": "00010001", "url_path": "/home/", "expired": false, "pk": 3, "locked": false, "depth": 2, "first_published_at": "2016-06-17T15:47:11.474Z", "expire_at": null} \N 3 1 -5 f 2016-06-17 11:58:06.247298-04 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page", "seo_title": "", "slug": "standard-page", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": false, "path": "0001000100010001", "url_path": "/home/standard-index-page/standard-page/", "expired": false, "pk": 5, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 5 1 -27 f 2016-06-17 12:07:57.801785-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:06:13.126Z", "time_to": null, "go_live_at": null, "feed_image": 4, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 -4 f 2016-06-17 11:56:57.612429-04 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Index Page", "seo_title": "", "slug": "standard-index-page", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 34, "show_in_menus": true, "path": "000100010001", "url_path": "/home/standard-index-page/", "expired": false, "pk": 4, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 4 1 -25 f 2016-06-17 12:07:10.441761-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:06:40.829Z", "time_to": null, "go_live_at": null, "feed_image": 8, "related_links": [], "title": "Event Page 3", "signup_link": "", "date_from": "2021-08-12", "seo_title": "", "slug": "event-page-3", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030003", "url_path": "/home/event-index/event-page-3/", "expired": false, "pk": 15, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:06:40.965Z", "expire_at": null} \N 15 1 -6 f 2016-06-17 11:58:15.836835-04 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": "2016-06-17T15:58:06.247Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page", "seo_title": "", "slug": "standard-page", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": true, "path": "0001000100010001", "url_path": "/home/standard-index-page/standard-page/", "expired": false, "pk": 5, "locked": false, "depth": 4, "first_published_at": "2016-06-17T15:58:06.440Z", "expire_at": null} \N 5 1 -9 f 2016-06-17 11:59:56.685472-04 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Person Index Page", "seo_title": "", "slug": "person-index-page", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 59, "show_in_menus": true, "path": "000100010002", "url_path": "/home/person-index-page/", "expired": false, "pk": 7, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 7 1 -22 f 2016-06-17 12:06:04.529968-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:05:52.113Z", "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 2", "signup_link": "", "date_from": "2020-06-17", "seo_title": "", "slug": "event-page-2", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030002", "url_path": "/home/event-index/event-page-2/", "expired": false, "pk": 14, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:52.253Z", "expire_at": null} \N 14 1 -26 f 2016-06-17 12:07:41.45225-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:06:04.529Z", "time_to": null, "go_live_at": null, "feed_image": 3, "related_links": [], "title": "Event Page 2", "signup_link": "", "date_from": "2020-06-17", "seo_title": "", "slug": "event-page-2", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030002", "url_path": "/home/event-index/event-page-2/", "expired": false, "pk": 14, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:52.253Z", "expire_at": null} \N 14 1 -7 f 2016-06-17 11:59:06.217744-04 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page w/o Sidebar", "seo_title": "", "slug": "standard-page-wo-sidebar", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": false, "path": "0001000100010002", "url_path": "/home/standard-index-page/standard-page-wo-sidebar/", "expired": false, "pk": 6, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 6 1 -8 f 2016-06-17 11:59:17.440366-04 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": "2016-06-17T15:59:06.217Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page w/o Sidebar", "seo_title": "", "slug": "standard-page-wo-sidebar", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": true, "path": "0001000100010002", "url_path": "/home/standard-index-page/standard-page-wo-sidebar/", "expired": false, "pk": 6, "locked": false, "depth": 4, "first_published_at": "2016-06-17T15:59:06.352Z", "expire_at": null} \N 6 1 -28 f 2016-06-17 12:12:41.444676-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:07:57.801Z", "time_to": null, "go_live_at": null, "feed_image": 8, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 -41 f 2016-06-17 12:23:55.895032-04 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:19:46.320Z", "go_live_at": null, "feed_image": null, "title": "Sample Documents", "seo_title": "", "slug": "sample-documents", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 2, "content_object": 21}], "numchild": 0, "content_type": 74, "show_in_menus": false, "path": "0001000100050001", "url_path": "/home/documents-gallery/sample-documents/", "expired": false, "pk": 21, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:19:46.496Z", "expire_at": null} \N 21 1 -10 f 2016-06-17 12:00:24.12037-04 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 1", "seo_title": "", "slug": "person-page-1", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": true, "path": "0001000100020001", "url_path": "/home/person-index-page/person-page-1/", "expired": false, "pk": 8, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 8 1 -11 f 2016-06-17 12:01:00.336654-04 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": "2016-06-17T15:59:17.440Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page w/o Sidebar", "seo_title": "", "slug": "standard-page-wo-sidebar", "template_string": "pages/standard_page_full.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": true, "path": "0001000100010002", "url_path": "/home/standard-index-page/standard-page-wo-sidebar/", "expired": false, "pk": 6, "locked": false, "depth": 4, "first_published_at": "2016-06-17T15:59:06.352Z", "expire_at": null} \N 6 1 -12 f 2016-06-17 12:01:33.981782-04 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

\\n

", "latest_revision_created_at": "2016-06-17T15:59:56.685Z", "go_live_at": null, "related_links": [], "title": "Person Index Page", "seo_title": "", "slug": "person-index-page", "live": true, "has_unpublished_changes": false, "numchild": 1, "content_type": 59, "show_in_menus": true, "path": "000100010002", "url_path": "/home/person-index-page/", "expired": false, "pk": 7, "locked": false, "depth": 3, "first_published_at": "2016-06-17T15:59:56.836Z", "expire_at": null} \N 7 1 -14 f 2016-06-17 12:02:38.487866-04 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 3", "seo_title": "", "slug": "person-page-3", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": true, "path": "0001000100020003", "url_path": "/home/person-index-page/person-page-3/", "expired": false, "pk": 10, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 10 1 -13 f 2016-06-17 12:02:15.456572-04 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 2", "seo_title": "", "slug": "person-page-2", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": true, "path": "0001000100020002", "url_path": "/home/person-index-page/person-page-2/", "expired": false, "pk": 9, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 9 1 -15 f 2016-06-17 12:03:01.261448-04 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 4", "seo_title": "", "slug": "person-page-4", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": false, "path": "0001000100020004", "url_path": "/home/person-index-page/person-page-4/", "expired": false, "pk": 11, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 11 1 -16 f 2016-06-17 12:04:00.906226-04 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T15:56:57.612Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Index", "seo_title": "", "slug": "standard-index-page", "live": true, "has_unpublished_changes": false, "numchild": 2, "content_type": 34, "show_in_menus": true, "path": "000100010001", "url_path": "/home/standard-index-page/", "expired": false, "pk": 4, "locked": false, "depth": 3, "first_published_at": "2016-06-17T15:56:57.824Z", "expire_at": null} \N 4 1 -17 f 2016-06-17 12:04:11.182875-04 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

\\n

", "latest_revision_created_at": "2016-06-17T16:01:33.981Z", "go_live_at": null, "related_links": [], "title": "Person Index", "seo_title": "", "slug": "person-index-page", "live": true, "has_unpublished_changes": false, "numchild": 4, "content_type": 59, "show_in_menus": true, "path": "000100010002", "url_path": "/home/person-index-page/", "expired": false, "pk": 7, "locked": false, "depth": 3, "first_published_at": "2016-06-17T15:59:56.836Z", "expire_at": null} \N 7 1 -19 f 2016-06-17 12:05:07.507362-04 {"carousel_items": [], "show_in_menus": true, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": null, "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 13 1 -18 f 2016-06-17 12:04:32.007271-04 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Event Index", "seo_title": "", "slug": "event-index", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 49, "show_in_menus": true, "path": "000100010003", "url_path": "/home/event-index/", "expired": false, "pk": 12, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 12 1 -21 f 2016-06-17 12:05:52.113206-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": null, "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 2", "signup_link": "", "date_from": "2016-06-17", "seo_title": "", "slug": "event-page-2", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030002", "url_path": "/home/event-index/event-page-2/", "expired": false, "pk": 14, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 14 1 -24 f 2016-06-17 12:06:40.829884-04 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": null, "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 3", "signup_link": "", "date_from": "2021-08-12", "seo_title": "", "slug": "event-page-3", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030003", "url_path": "/home/event-index/event-page-3/", "expired": false, "pk": 15, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 15 1 -29 f 2016-06-17 12:13:05.085856-04 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Blog Index", "seo_title": "", "slug": "blog-index", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 43, "show_in_menus": true, "path": "000100010004", "url_path": "/home/blog-index/", "expired": false, "pk": 16, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 16 1 -38 f 2016-06-17 12:21:30.7016-04 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Photo Gallery", "seo_title": "", "slug": "photo-gallery", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 64, "show_in_menus": true, "path": "000100010006", "url_path": "/home/photo-gallery/", "expired": false, "pk": 22, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 22 1 -39 f 2016-06-17 12:21:55.91781-04 {"search_description": "", "owner": 1, "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": 1, "tag": 3, "content_object": 23}, {"pk": 2, "tag": 4, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 23 1 -30 f 2016-06-17 12:14:23.709289-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": null, "title": "Blog Post 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 17 1 -33 f 2016-06-17 12:17:30.690816-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:15:09.700Z", "go_live_at": null, "feed_image": 3, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": null, "page": 18}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": null, "page": 18}], "title": "Blog Page 2", "seo_title": "", "slug": "blog-post-2", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040002", "url_path": "/home/blog-index/blog-post-2/", "expired": false, "pk": 18, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:15:09.867Z", "expire_at": null} \N 18 1 -32 f 2016-06-17 12:16:55.492837-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 2, "page": 19}, {"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 1, "link_document": null, "pk": 3, "page": 19}], "title": "Blog Page 3", "seo_title": "", "slug": "blog-page-3", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040003", "url_path": "/home/blog-index/blog-page-3/", "expired": false, "pk": 19, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 19 1 -31 f 2016-06-17 12:15:09.700902-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": 3, "related_links": [], "title": "Blog Post 2", "seo_title": "", "slug": "blog-post-2", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040002", "url_path": "/home/blog-index/blog-post-2/", "expired": false, "pk": 18, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 18 1 -35 f 2016-06-17 12:19:19.058749-04 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Documents Gallery", "seo_title": "", "slug": "documents-gallery", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 72, "show_in_menus": true, "path": "000100010005", "url_path": "/home/documents-gallery/", "expired": false, "pk": 20, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 20 1 -37 f 2016-06-17 12:21:13.464215-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:16:55.492Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 2, "page": 19}, {"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 1, "link_document": null, "pk": 3, "page": 19}], "title": "Blog Page 3", "seo_title": "", "slug": "blog-page-3", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040003", "url_path": "/home/blog-index/blog-page-3/", "expired": false, "pk": 19, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:16:55.677Z", "expire_at": null} \N 19 1 -36 f 2016-06-17 12:19:46.320458-04 {"search_description": "", "owner": 1, "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Sample Documents", "seo_title": "", "slug": "sample-documents", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": 1, "tag": 1, "content_object": 21}, {"pk": 2, "tag": 2, "content_object": 21}], "numchild": 0, "content_type": 74, "show_in_menus": false, "path": "0001000100050001", "url_path": "/home/documents-gallery/sample-documents/", "expired": false, "pk": 21, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 21 1 -43 f 2016-06-17 12:26:38.004607-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:18:06.254Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": 6, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:14:23.952Z", "expire_at": null} \N 17 1 -44 f 2016-06-17 12:27:05.945368-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:21:13.464Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 2, "page": 19}, {"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 1, "link_document": null, "pk": 3, "page": 19}], "title": "Blog Page 3", "seo_title": "", "slug": "blog-page-3", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040003", "url_path": "/home/blog-index/blog-page-3/", "expired": false, "pk": 19, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:16:55.677Z", "expire_at": null} \N 19 1 -34 f 2016-06-17 12:18:06.254326-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:14:23.709Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": null, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:14:23.952Z", "expire_at": null} \N 17 1 -40 f 2016-06-17 12:23:23.769398-04 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:21:55.917Z", "go_live_at": null, "feed_image": null, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 3, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:21:56.197Z", "expire_at": null} \N 23 1 -48 f 2016-06-17 13:57:08.331751-04 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:24:05.539Z", "go_live_at": null, "feed_image": 8, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 3, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:21:56.197Z", "expire_at": null} \N 23 1 -45 f 2016-06-17 12:27:18.745911-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:17:30.690Z", "go_live_at": null, "feed_image": 3, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 4, "page": 18}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": 5, "page": 18}], "title": "Blog Page 2", "seo_title": "", "slug": "blog-post-2", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040002", "url_path": "/home/blog-index/blog-post-2/", "expired": false, "pk": 18, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:15:09.867Z", "expire_at": null} \N 18 1 -46 f 2016-06-17 12:27:30.797724-04 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:26:38.004Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": 6, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:14:23.952Z", "expire_at": null} \N 17 1 -47 f 2016-06-17 12:29:19.362915-04 {"to_address": "", "from_address": "", "telephone": "", "search_description": "", "owner": 1, "intro": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit amet enim. Quisque massa leo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum mi.", "latest_revision_created_at": null, "go_live_at": null, "name_organization": "", "city": "", "title": "Contact Us", "seo_title": "", "slug": "contact-us", "live": true, "has_unpublished_changes": false, "subject": "", "email": "", "post_code": "", "numchild": 0, "content_type": 57, "show_in_menus": true, "thank_you_text": "", "path": "000100010007", "url_path": "/home/contact-us/", "expired": false, "pk": 24, "locked": false, "country": "", "form_fields": [{"default_value": "", "field_type": "singleline", "required": true, "choices": "", "sort_order": 0, "help_text": "", "pk": 1, "label": "Name", "page": 24}, {"default_value": "", "field_type": "email", "required": true, "choices": "", "sort_order": 1, "help_text": "", "pk": 2, "label": "Email", "page": 24}, {"default_value": "", "field_type": "singleline", "required": true, "choices": "", "sort_order": 2, "help_text": "", "pk": 3, "label": "Subject", "page": 24}, {"default_value": "", "field_type": "multiline", "required": true, "choices": "", "sort_order": 3, "help_text": "", "pk": 4, "label": "Message", "page": 24}], "depth": 3, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 24 1 -42 f 2016-06-17 12:24:05.539234-04 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:23:23.769Z", "go_live_at": null, "feed_image": null, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 3, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:21:56.197Z", "expire_at": null} \N 23 1 +1 f 2016-06-17 21:17:11.217612+05:30 {"carousel_items": [{"link_page": null, "embed_url": "", "image": 3, "link_external": "", "caption": "", "sort_order": 0, "link_document": null, "pk": null, "page": 3}, {"link_page": null, "embed_url": "", "image": 8, "link_external": "", "caption": "", "sort_order": 1, "link_document": null, "pk": null, "page": 3}, {"link_page": null, "embed_url": "", "image": 4, "link_external": "", "caption": "", "sort_order": 2, "link_document": null, "pk": null, "page": 3}, {"link_page": null, "embed_url": "", "image": 6, "link_external": "", "caption": "", "sort_order": 3, "link_document": null, "pk": null, "page": 3}], "search_description": "", "owner": null, "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Homepage", "seo_title": "", "slug": "home", "live": true, "has_unpublished_changes": false, "body": "

A cookiecutter template for Wagtail CMS featuring Zurb Foundation front-end framework.

", "content_items": [{"slug": "1", "link_page": null, "title": "Foundation 6", "image": 10, "link_external": "", "summary": "", "content": "

", "sort_order": 0, "link_document": null, "pk": null, "page": 3}], "numchild": 0, "title_text": "

Welcome to\\u00a0Wagtail Cookiecutter Foundation

", "content_type": 4, "show_in_menus": false, "path": "00010001", "url_path": "/home/", "expired": false, "pk": 3, "locked": false, "depth": 2, "first_published_at": null, "expire_at": null} \N 3 1 +2 f 2016-06-17 21:24:26.111309+05:30 {"carousel_items": [{"link_page": null, "embed_url": "", "image": 3, "link_external": "", "caption": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 3}, {"link_page": null, "embed_url": "", "image": 8, "link_external": "", "caption": "", "sort_order": 1, "link_document": null, "pk": 2, "page": 3}, {"link_page": null, "embed_url": "", "image": 4, "link_external": "", "caption": "", "sort_order": 2, "link_document": null, "pk": 3, "page": 3}, {"link_page": null, "embed_url": "", "image": 6, "link_external": "", "caption": "", "sort_order": 3, "link_document": null, "pk": 4, "page": 3}], "search_description": "", "owner": null, "latest_revision_created_at": "2016-06-17T15:47:11.217Z", "go_live_at": null, "related_links": [], "title": "Homepage", "seo_title": "", "slug": "home", "live": true, "has_unpublished_changes": false, "body": "

A cookiecutter template for Wagtail CMS featuring Zurb Foundation front-end framework.

", "content_items": [{"slug": "foundation", "link_page": null, "title": "Foundation 6", "image": 10, "link_external": "http://foundation.zurb.com/", "summary": "", "content": "

The most advanced responsive front-end framework in the world.

", "sort_order": 0, "link_document": null, "pk": null, "page": 3}, {"slug": "wagtail", "link_page": null, "title": "Wagtail", "image": 9, "link_external": "https://wagtail.io/", "summary": "

Wagtail is an open source CMS written in Python and built on the Django framework.

", "content": "", "sort_order": 1, "link_document": null, "pk": null, "page": 3}, {"slug": "ansible", "link_page": null, "title": "Ansible", "image": 1, "link_external": "https://www.ansible.com/", "summary": "", "content": "

Ansible for easy Provisioning and Deployment.

", "sort_order": 2, "link_document": null, "pk": null, "page": 3}, {"slug": "sass", "link_page": null, "title": "Sass", "image": 7, "link_external": "http://sass-lang.com/", "summary": "", "content": "

Sass 100%

", "sort_order": 3, "link_document": null, "pk": null, "page": 3}, {"slug": "postgresql", "link_page": null, "title": "PostgreSQL", "image": 5, "link_external": "https://www.postgresql.org/", "summary": "", "content": "

PostgreSQL everywhere!

", "sort_order": 4, "link_document": null, "pk": null, "page": 3}, {"slug": "digital-ocean", "link_page": null, "title": "Digital Ocean", "image": 2, "link_external": "https://www.digitalocean.com/", "summary": "", "content": "

Spin up your server with the Digital Ocean API

", "sort_order": 5, "link_document": null, "pk": null, "page": 3}], "numchild": 0, "title_text": "

Welcome to\\u00a0Wagtail Cookiecutter Foundation

", "content_type": 4, "show_in_menus": false, "path": "00010001", "url_path": "/home/", "expired": false, "pk": 3, "locked": false, "depth": 2, "first_published_at": "2016-06-17T15:47:11.474Z", "expire_at": null} \N 3 1 +20 f 2016-06-17 21:35:18.331695+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:05:07.507Z", "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 +23 f 2016-06-17 21:36:13.126926+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:05:18.331Z", "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 +3 f 2016-06-17 21:25:56.169067+05:30 {"carousel_items": [{"link_page": null, "embed_url": "", "image": 3, "link_external": "", "caption": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 3}, {"link_page": null, "embed_url": "", "image": 8, "link_external": "", "caption": "", "sort_order": 1, "link_document": null, "pk": 2, "page": 3}, {"link_page": null, "embed_url": "", "image": 4, "link_external": "", "caption": "", "sort_order": 2, "link_document": null, "pk": 3, "page": 3}, {"link_page": null, "embed_url": "", "image": 6, "link_external": "", "caption": "", "sort_order": 3, "link_document": null, "pk": 4, "page": 3}], "search_description": "", "owner": null, "latest_revision_created_at": "2016-06-17T15:54:26.111Z", "go_live_at": null, "related_links": [], "title": "Homepage", "seo_title": "", "slug": "home", "live": true, "has_unpublished_changes": false, "body": "

A cookiecutter template for Wagtail CMS featuring Zurb Foundation front-end framework.

", "content_items": [{"slug": "foundation", "link_page": null, "title": "Foundation 6", "image": 10, "link_external": "http://foundation.zurb.com/", "summary": "", "content": "

The most advanced responsive front-end framework in the world.

", "sort_order": 0, "link_document": null, "pk": 2, "page": 3}, {"slug": "wagtail", "link_page": null, "title": "Wagtail", "image": 9, "link_external": "https://wagtail.io/", "summary": "", "content": "

Wagtail is an open source CMS written in Python and built on the Django framework.

", "sort_order": 1, "link_document": null, "pk": 3, "page": 3}, {"slug": "ansible", "link_page": null, "title": "Ansible", "image": 1, "link_external": "https://www.ansible.com/", "summary": "", "content": "

Ansible for easy Provisioning and Deployment.

", "sort_order": 2, "link_document": null, "pk": 4, "page": 3}, {"slug": "sass", "link_page": null, "title": "Sass", "image": 7, "link_external": "http://sass-lang.com/", "summary": "", "content": "

Sass 100%

", "sort_order": 3, "link_document": null, "pk": 5, "page": 3}, {"slug": "postgresql", "link_page": null, "title": "PostgreSQL", "image": 5, "link_external": "https://www.postgresql.org/", "summary": "", "content": "

PostgreSQL everywhere!

", "sort_order": 4, "link_document": null, "pk": 6, "page": 3}, {"slug": "digital-ocean", "link_page": null, "title": "Digital Ocean", "image": 2, "link_external": "https://www.digitalocean.com/", "summary": "", "content": "

Spin up your server with the Digital Ocean API

", "sort_order": 5, "link_document": null, "pk": 7, "page": 3}], "numchild": 0, "title_text": "

Welcome to\\u00a0Wagtail Cookiecutter Foundation

", "content_type": 4, "show_in_menus": false, "path": "00010001", "url_path": "/home/", "expired": false, "pk": 3, "locked": false, "depth": 2, "first_published_at": "2016-06-17T15:47:11.474Z", "expire_at": null} \N 3 1 +5 f 2016-06-17 21:28:06.247298+05:30 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page", "seo_title": "", "slug": "standard-page", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": false, "path": "0001000100010001", "url_path": "/home/standard-index-page/standard-page/", "expired": false, "pk": 5, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 5 1 +27 f 2016-06-17 21:37:57.801785+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:06:13.126Z", "time_to": null, "go_live_at": null, "feed_image": 4, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 +4 f 2016-06-17 21:26:57.612429+05:30 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Index Page", "seo_title": "", "slug": "standard-index-page", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 34, "show_in_menus": true, "path": "000100010001", "url_path": "/home/standard-index-page/", "expired": false, "pk": 4, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 4 1 +25 f 2016-06-17 21:37:10.441761+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:06:40.829Z", "time_to": null, "go_live_at": null, "feed_image": 8, "related_links": [], "title": "Event Page 3", "signup_link": "", "date_from": "2021-08-12", "seo_title": "", "slug": "event-page-3", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030003", "url_path": "/home/event-index/event-page-3/", "expired": false, "pk": 15, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:06:40.965Z", "expire_at": null} \N 15 1 +6 f 2016-06-17 21:28:15.836835+05:30 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": "2016-06-17T15:58:06.247Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page", "seo_title": "", "slug": "standard-page", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": true, "path": "0001000100010001", "url_path": "/home/standard-index-page/standard-page/", "expired": false, "pk": 5, "locked": false, "depth": 4, "first_published_at": "2016-06-17T15:58:06.440Z", "expire_at": null} \N 5 1 +9 f 2016-06-17 21:29:56.685472+05:30 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Person Index Page", "seo_title": "", "slug": "person-index-page", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 59, "show_in_menus": true, "path": "000100010002", "url_path": "/home/person-index-page/", "expired": false, "pk": 7, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 7 1 +22 f 2016-06-17 21:36:04.529968+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:05:52.113Z", "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 2", "signup_link": "", "date_from": "2020-06-17", "seo_title": "", "slug": "event-page-2", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030002", "url_path": "/home/event-index/event-page-2/", "expired": false, "pk": 14, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:52.253Z", "expire_at": null} \N 14 1 +26 f 2016-06-17 21:37:41.45225+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:06:04.529Z", "time_to": null, "go_live_at": null, "feed_image": 3, "related_links": [], "title": "Event Page 2", "signup_link": "", "date_from": "2020-06-17", "seo_title": "", "slug": "event-page-2", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030002", "url_path": "/home/event-index/event-page-2/", "expired": false, "pk": 14, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:52.253Z", "expire_at": null} \N 14 1 +7 f 2016-06-17 21:29:06.217744+05:30 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page w/o Sidebar", "seo_title": "", "slug": "standard-page-wo-sidebar", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": false, "path": "0001000100010002", "url_path": "/home/standard-index-page/standard-page-wo-sidebar/", "expired": false, "pk": 6, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 6 1 +8 f 2016-06-17 21:29:17.440366+05:30 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": "2016-06-17T15:59:06.217Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page w/o Sidebar", "seo_title": "", "slug": "standard-page-wo-sidebar", "template_string": "pages/standard_page.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": true, "path": "0001000100010002", "url_path": "/home/standard-index-page/standard-page-wo-sidebar/", "expired": false, "pk": 6, "locked": false, "depth": 4, "first_published_at": "2016-06-17T15:59:06.352Z", "expire_at": null} \N 6 1 +28 f 2016-06-17 21:42:41.444676+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": "2016-06-17T16:07:57.801Z", "time_to": null, "go_live_at": null, "feed_image": 8, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:05:07.651Z", "expire_at": null} \N 13 1 +41 f 2016-06-17 21:53:55.895032+05:30 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:19:46.320Z", "go_live_at": null, "feed_image": null, "title": "Sample Documents", "seo_title": "", "slug": "sample-documents", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 2, "content_object": 21}], "numchild": 0, "content_type": 74, "show_in_menus": false, "path": "0001000100050001", "url_path": "/home/documents-gallery/sample-documents/", "expired": false, "pk": 21, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:19:46.496Z", "expire_at": null} \N 21 1 +10 f 2016-06-17 21:30:24.12037+05:30 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 1", "seo_title": "", "slug": "person-page-1", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": true, "path": "0001000100020001", "url_path": "/home/person-index-page/person-page-1/", "expired": false, "pk": 8, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 8 1 +11 f 2016-06-17 21:31:00.336654+05:30 {"subtitle": "", "carousel_items": [], "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": "2016-06-17T15:59:17.440Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Page w/o Sidebar", "seo_title": "", "slug": "standard-page-wo-sidebar", "template_string": "pages/standard_page_full.html", "live": true, "has_unpublished_changes": false, "body": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.


Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "numchild": 0, "content_type": 37, "show_in_menus": true, "path": "0001000100010002", "url_path": "/home/standard-index-page/standard-page-wo-sidebar/", "expired": false, "pk": 6, "locked": false, "depth": 4, "first_published_at": "2016-06-17T15:59:06.352Z", "expire_at": null} \N 6 1 +12 f 2016-06-17 21:31:33.981782+05:30 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

\\n

", "latest_revision_created_at": "2016-06-17T15:59:56.685Z", "go_live_at": null, "related_links": [], "title": "Person Index Page", "seo_title": "", "slug": "person-index-page", "live": true, "has_unpublished_changes": false, "numchild": 1, "content_type": 59, "show_in_menus": true, "path": "000100010002", "url_path": "/home/person-index-page/", "expired": false, "pk": 7, "locked": false, "depth": 3, "first_published_at": "2016-06-17T15:59:56.836Z", "expire_at": null} \N 7 1 +14 f 2016-06-17 21:32:38.487866+05:30 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 3", "seo_title": "", "slug": "person-page-3", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": true, "path": "0001000100020003", "url_path": "/home/person-index-page/person-page-3/", "expired": false, "pk": 10, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 10 1 +13 f 2016-06-17 21:32:15.456572+05:30 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 2", "seo_title": "", "slug": "person-page-2", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": true, "path": "0001000100020002", "url_path": "/home/person-index-page/person-page-2/", "expired": false, "pk": 9, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 9 1 +15 f 2016-06-17 21:33:01.261448+05:30 {"image": 11, "telephone": "", "search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "biography": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

Fusce\\n et diam quis ipsum pulvinar euismod sit amet ac libero. Proin mauris \\nligula, egestas at tempus non, tempor et dolor. Proin porttitor, nibh \\nquis consequat posuere, dolor eros eleifend nisi, ac semper ex nulla sit\\n amet urna. Ut venenatis eros nec gravida molestie. Integer hendrerit \\nmollis odio vitae porttitor. Sed ut elementum magna. Morbi laoreet odio \\nlorem, eu fringilla nulla venenatis id. Duis nisl erat, aliquet in \\ntortor eget, ullamcorper varius quam. Sed venenatis posuere ipsum, ut \\nmaximus ligula tristique fermentum. Ut eget porttitor quam. In varius \\ndiam quis viverra porttutor.

\\n

", "go_live_at": null, "name_organization": "", "city": "", "related_links": [], "title": "Person Page 4", "seo_title": "", "slug": "person-page-4", "live": true, "role": null, "has_unpublished_changes": false, "email": "", "feed_image": null, "post_code": "", "numchild": 0, "content_type": 63, "show_in_menus": false, "path": "0001000100020004", "url_path": "/home/person-index-page/person-page-4/", "expired": false, "pk": 11, "locked": false, "country": "", "tagged_items": [], "depth": 4, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 11 1 +16 f 2016-06-17 21:34:00.906226+05:30 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T15:56:57.612Z", "go_live_at": null, "feed_image": null, "related_links": [], "title": "Standard Index", "seo_title": "", "slug": "standard-index-page", "live": true, "has_unpublished_changes": false, "numchild": 2, "content_type": 34, "show_in_menus": true, "path": "000100010001", "url_path": "/home/standard-index-page/", "expired": false, "pk": 4, "locked": false, "depth": 3, "first_published_at": "2016-06-17T15:56:57.824Z", "expire_at": null} \N 4 1 +17 f 2016-06-17 21:34:11.182875+05:30 {"subtitle": "", "search_description": "", "owner": 1, "intro": "

\\n

Lorem ipsum dolor sit amet, consectetur \\nadipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit \\namet enim. Quisque massa leo, ornare in mattis vitae, vehicula \\nvestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum \\nmi. Nunc lacinia massa tristique nunc accumsan, eu dapibus odio feugiat.\\n Donec varius quam dictum placerat porttitor. Vivamus fermentum cursus \\nnibh in facilisis. Aenean in justo auctor, faucibus risus eu, semper \\nnisl. Ut nec suscipit nibh. Donec feugiat eget dui in rhoncus. Curabitur\\n imperdiet tortor ut quam tempus sagittis. Morbi lectus magna, viverra \\nut turpis a, dapibus sollicitudin diam. Morbi vel urna suscipit, sodales\\n ante id, luctus velit.

\\n

", "latest_revision_created_at": "2016-06-17T16:01:33.981Z", "go_live_at": null, "related_links": [], "title": "Person Index", "seo_title": "", "slug": "person-index-page", "live": true, "has_unpublished_changes": false, "numchild": 4, "content_type": 59, "show_in_menus": true, "path": "000100010002", "url_path": "/home/person-index-page/", "expired": false, "pk": 7, "locked": false, "depth": 3, "first_published_at": "2016-06-17T15:59:56.836Z", "expire_at": null} \N 7 1 +19 f 2016-06-17 21:35:07.507362+05:30 {"carousel_items": [], "show_in_menus": true, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": null, "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 1", "signup_link": "", "date_from": "2019-06-01", "seo_title": "", "slug": "event-page-1", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030001", "url_path": "/home/event-index/event-page-1/", "expired": false, "pk": 13, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 13 1 +18 f 2016-06-17 21:34:32.007271+05:30 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Event Index", "seo_title": "", "slug": "event-index", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 49, "show_in_menus": true, "path": "000100010003", "url_path": "/home/event-index/", "expired": false, "pk": 12, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 12 1 +21 f 2016-06-17 21:35:52.113206+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": null, "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 2", "signup_link": "", "date_from": "2016-06-17", "seo_title": "", "slug": "event-page-2", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030002", "url_path": "/home/event-index/event-page-2/", "expired": false, "pk": 14, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 14 1 +24 f 2016-06-17 21:36:40.829884+05:30 {"carousel_items": [], "show_in_menus": false, "search_description": "", "owner": 1, "cost": "", "latest_revision_created_at": null, "time_to": null, "go_live_at": null, "feed_image": null, "related_links": [], "title": "Event Page 3", "signup_link": "", "date_from": "2021-08-12", "seo_title": "", "slug": "event-page-3", "live": true, "location": "", "has_unpublished_changes": false, "body": "", "numchild": 0, "time_from": null, "speakers": [], "audience": null, "content_type": 53, "date_to": null, "path": "0001000100030003", "url_path": "/home/event-index/event-page-3/", "expired": false, "pk": 15, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 15 1 +29 f 2016-06-17 21:43:05.085856+05:30 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "related_links": [], "title": "Blog Index", "seo_title": "", "slug": "blog-index", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 43, "show_in_menus": true, "path": "000100010004", "url_path": "/home/blog-index/", "expired": false, "pk": 16, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 16 1 +38 f 2016-06-17 21:51:30.7016+05:30 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Photo Gallery", "seo_title": "", "slug": "photo-gallery", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 64, "show_in_menus": true, "path": "000100010006", "url_path": "/home/photo-gallery/", "expired": false, "pk": 22, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 22 1 +39 f 2016-06-17 21:51:55.91781+05:30 {"search_description": "", "owner": 1, "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": 1, "tag": 3, "content_object": 23}, {"pk": 2, "tag": 4, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 23 1 +30 f 2016-06-17 21:44:23.709289+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": null, "title": "Blog Post 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 17 1 +33 f 2016-06-17 21:47:30.690816+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:15:09.700Z", "go_live_at": null, "feed_image": 3, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": null, "page": 18}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": null, "page": 18}], "title": "Blog Page 2", "seo_title": "", "slug": "blog-post-2", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040002", "url_path": "/home/blog-index/blog-post-2/", "expired": false, "pk": 18, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:15:09.867Z", "expire_at": null} \N 18 1 +32 f 2016-06-17 21:46:55.492837+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 2, "page": 19}, {"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 1, "link_document": null, "pk": 3, "page": 19}], "title": "Blog Page 3", "seo_title": "", "slug": "blog-page-3", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040003", "url_path": "/home/blog-index/blog-page-3/", "expired": false, "pk": 19, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 19 1 +31 f 2016-06-17 21:45:09.700902+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": null, "go_live_at": null, "feed_image": 3, "related_links": [], "title": "Blog Post 2", "seo_title": "", "slug": "blog-post-2", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040002", "url_path": "/home/blog-index/blog-post-2/", "expired": false, "pk": 18, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 18 1 +35 f 2016-06-17 21:49:19.058749+05:30 {"search_description": "", "owner": 1, "intro": "", "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Documents Gallery", "seo_title": "", "slug": "documents-gallery", "live": true, "has_unpublished_changes": false, "numchild": 0, "content_type": 72, "show_in_menus": true, "path": "000100010005", "url_path": "/home/documents-gallery/", "expired": false, "pk": 20, "locked": false, "depth": 3, "first_published_at": null, "expire_at": null} \N 20 1 +37 f 2016-06-17 21:51:13.464215+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:16:55.492Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 2, "page": 19}, {"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 1, "link_document": null, "pk": 3, "page": 19}], "title": "Blog Page 3", "seo_title": "", "slug": "blog-page-3", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040003", "url_path": "/home/blog-index/blog-page-3/", "expired": false, "pk": 19, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:16:55.677Z", "expire_at": null} \N 19 1 +36 f 2016-06-17 21:49:46.320458+05:30 {"search_description": "", "owner": 1, "latest_revision_created_at": null, "go_live_at": null, "feed_image": null, "title": "Sample Documents", "seo_title": "", "slug": "sample-documents", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": 1, "tag": 1, "content_object": 21}, {"pk": 2, "tag": 2, "content_object": 21}], "numchild": 0, "content_type": 74, "show_in_menus": false, "path": "0001000100050001", "url_path": "/home/documents-gallery/sample-documents/", "expired": false, "pk": 21, "locked": false, "depth": 4, "first_published_at": null, "expire_at": null} \N 21 1 +43 f 2016-06-17 21:56:38.004607+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:18:06.254Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": 6, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:14:23.952Z", "expire_at": null} \N 17 1 +44 f 2016-06-17 21:57:05.945368+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:21:13.464Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 2, "page": 19}, {"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 1, "link_document": null, "pk": 3, "page": 19}], "title": "Blog Page 3", "seo_title": "", "slug": "blog-page-3", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040003", "url_path": "/home/blog-index/blog-page-3/", "expired": false, "pk": 19, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:16:55.677Z", "expire_at": null} \N 19 1 +34 f 2016-06-17 21:48:06.254326+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:14:23.709Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": null, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": false, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:14:23.952Z", "expire_at": null} \N 17 1 +40 f 2016-06-17 21:53:23.769398+05:30 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:21:55.917Z", "go_live_at": null, "feed_image": null, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 3, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:21:56.197Z", "expire_at": null} \N 23 1 +48 f 2016-06-17 23:27:08.331751+05:30 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:24:05.539Z", "go_live_at": null, "feed_image": 8, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 3, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:21:56.197Z", "expire_at": null} \N 23 1 +45 f 2016-06-17 21:57:18.745911+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:17:30.690Z", "go_live_at": null, "feed_image": 3, "related_links": [{"link_page": 17, "title": "Blog Page 1", "link_external": "", "sort_order": 0, "link_document": null, "pk": 4, "page": 18}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": 5, "page": 18}], "title": "Blog Page 2", "seo_title": "", "slug": "blog-post-2", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040002", "url_path": "/home/blog-index/blog-post-2/", "expired": false, "pk": 18, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:15:09.867Z", "expire_at": null} \N 18 1 +46 f 2016-06-17 21:57:30.797724+05:30 {"carousel_items": [], "search_description": "", "owner": 1, "intro": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.

", "latest_revision_created_at": "2016-06-17T16:26:38.004Z", "go_live_at": null, "feed_image": 8, "related_links": [{"link_page": 18, "title": "Blog Page 2", "link_external": "", "sort_order": 0, "link_document": null, "pk": 1, "page": 17}, {"link_page": 19, "title": "Blog Page 3", "link_external": "", "sort_order": 1, "link_document": null, "pk": 6, "page": 17}], "title": "Blog Page 1", "seo_title": "", "slug": "blog-page-1", "live": true, "has_unpublished_changes": false, "tagged_items": [], "body": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et \\nmauris eu nibh elementum blandit varius sit amet enim. Quisque massa \\nleo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo \\nplacerat, vehicula diam nec, interdum mi. Nunc lacinia massa tristique \\nnunc accumsan, eu dapibus odio feugiat. Donec varius quam dictum \\nplacerat porttitor. Vivamus fermentum cursus nibh in facilisis. Aenean \\nin justo auctor, faucibus risus eu, semper nisl. Ut nec suscipit nibh. \\nDonec feugiat eget dui in rhoncus. Curabitur imperdiet tortor ut quam \\ntempus sagittis. Morbi lectus magna, viverra ut turpis a, dapibus \\nsollicitudin diam. Morbi vel urna suscipit, sodales ante id, luctus \\nvelit.


Fusce et diam quis ipsum pulvinar euismod sit amet ac \\nlibero. Proin mauris ligula, egestas at tempus non, tempor et dolor. \\nProin porttitor, nibh quis consequat posuere, dolor eros eleifend nisi, \\nac semper ex nulla sit amet urna. Ut venenatis eros nec gravida \\nmolestie. Integer hendrerit mollis odio vitae porttitor. Sed ut \\nelementum magna. Morbi laoreet odio lorem, eu fringilla nulla venenatis \\nid. Duis nisl erat, aliquet in tortor eget, ullamcorper varius quam. Sed\\n venenatis posuere ipsum, ut maximus ligula tristique fermentum. Ut eget\\n porttitor quam. In varius diam quis viverra porttitor.

", "numchild": 0, "content_type": 47, "show_in_menus": true, "date": "2016-06-17", "path": "0001000100040001", "url_path": "/home/blog-index/blog-page-1/", "expired": false, "pk": 17, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:14:23.952Z", "expire_at": null} \N 17 1 +47 f 2016-06-17 21:59:19.362915+05:30 {"to_address": "", "from_address": "", "telephone": "", "search_description": "", "owner": 1, "intro": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et mauris eu nibh elementum blandit varius sit amet enim. Quisque massa leo, ornare in mattis vitae, vehicula vestibulum diam. Phasellus id leo placerat, vehicula diam nec, interdum mi.", "latest_revision_created_at": null, "go_live_at": null, "name_organization": "", "city": "", "title": "Contact Us", "seo_title": "", "slug": "contact-us", "live": true, "has_unpublished_changes": false, "subject": "", "email": "", "post_code": "", "numchild": 0, "content_type": 57, "show_in_menus": true, "thank_you_text": "", "path": "000100010007", "url_path": "/home/contact-us/", "expired": false, "pk": 24, "locked": false, "country": "", "form_fields": [{"default_value": "", "field_type": "singleline", "required": true, "choices": "", "sort_order": 0, "help_text": "", "pk": 1, "label": "Name", "page": 24}, {"default_value": "", "field_type": "email", "required": true, "choices": "", "sort_order": 1, "help_text": "", "pk": 2, "label": "Email", "page": 24}, {"default_value": "", "field_type": "singleline", "required": true, "choices": "", "sort_order": 2, "help_text": "", "pk": 3, "label": "Subject", "page": 24}, {"default_value": "", "field_type": "multiline", "required": true, "choices": "", "sort_order": 3, "help_text": "", "pk": 4, "label": "Message", "page": 24}], "depth": 3, "address_1": "", "address_2": "", "first_published_at": null, "expire_at": null} \N 24 1 +42 f 2016-06-17 21:54:05.539234+05:30 {"search_description": "", "owner": 1, "latest_revision_created_at": "2016-06-17T16:23:23.769Z", "go_live_at": null, "feed_image": null, "title": "Sample Gallery", "seo_title": "", "slug": "sample-gallery", "live": true, "has_unpublished_changes": false, "tagged_items": [{"pk": null, "tag": 3, "content_object": 23}], "numchild": 0, "content_type": 66, "show_in_menus": false, "path": "0001000100060001", "url_path": "/home/photo-gallery/sample-gallery/", "expired": false, "pk": 23, "locked": false, "depth": 4, "first_published_at": "2016-06-17T16:21:56.197Z", "expire_at": null} \N 23 1 \. -- --- Name: wagtailcore_pagerevision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_pagerevision_id_seq', 48, true); -- --- Data for Name: wagtailcore_pageviewrestriction; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_pageviewrestriction; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_pageviewrestriction (id, password, page_id) FROM stdin; @@ -4030,14 +4370,14 @@ COPY wagtailcore_pageviewrestriction (id, password, page_id) FROM stdin; -- --- Name: wagtailcore_pageviewrestriction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_pageviewrestriction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_pageviewrestriction_id_seq', 1, false); -- --- Data for Name: wagtailcore_site; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailcore_site; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailcore_site (id, hostname, port, is_default_site, root_page_id, site_name) FROM stdin; @@ -4046,32 +4386,32 @@ COPY wagtailcore_site (id, hostname, port, is_default_site, root_page_id, site_n -- --- Name: wagtailcore_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailcore_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailcore_site_id_seq', 2, true); -- --- Data for Name: wagtaildocs_document; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtaildocs_document; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtaildocs_document (id, title, file, created_at, uploaded_by_user_id, collection_id) FROM stdin; -3 sample.pdf documents/sample.pdf 2016-06-17 12:18:21.314932-04 1 1 -2 example.docx documents/example.docx 2016-06-17 12:18:21.107695-04 1 1 -1 document.doc documents/document.doc 2016-06-17 12:18:20.942244-04 1 1 +3 sample.pdf documents/sample.pdf 2016-06-17 21:48:21.314932+05:30 1 1 +2 example.docx documents/example.docx 2016-06-17 21:48:21.107695+05:30 1 1 +1 document.doc documents/document.doc 2016-06-17 21:48:20.942244+05:30 1 1 \. -- --- Name: wagtaildocs_document_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtaildocs_document_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtaildocs_document_id_seq', 3, true); -- --- Data for Name: wagtailembeds_embed; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailembeds_embed; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailembeds_embed (id, url, max_width, type, html, title, author_name, provider_name, thumbnail_url, width, height, last_updated) FROM stdin; @@ -4079,14 +4419,14 @@ COPY wagtailembeds_embed (id, url, max_width, type, html, title, author_name, pr -- --- Name: wagtailembeds_embed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailembeds_embed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailembeds_embed_id_seq', 1, false); -- --- Data for Name: wagtailforms_formsubmission; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailforms_formsubmission; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailforms_formsubmission (id, form_data, submit_time, page_id) FROM stdin; @@ -4094,14 +4434,14 @@ COPY wagtailforms_formsubmission (id, form_data, submit_time, page_id) FROM stdi -- --- Name: wagtailforms_formsubmission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailforms_formsubmission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailforms_formsubmission_id_seq', 1, false); -- --- Data for Name: wagtailimages_filter; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailimages_filter; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailimages_filter (id, spec) FROM stdin; @@ -4120,40 +4460,40 @@ COPY wagtailimages_filter (id, spec) FROM stdin; -- --- Name: wagtailimages_filter_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailimages_filter_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailimages_filter_id_seq', 11, true); -- --- Data for Name: wagtailimages_image; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailimages_image; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailimages_image (id, title, file, width, height, created_at, focal_point_x, focal_point_y, focal_point_width, focal_point_height, uploaded_by_user_id, file_size, collection_id) FROM stdin; -1 ansible.png original_images/ansible.png 512 512 2016-06-17 11:42:58.767405-04 \N \N \N \N 1 43211 1 -2 digital_ocean.png original_images/digital_ocean.png 512 512 2016-06-17 11:42:59.095509-04 \N \N \N \N 1 58324 1 -5 postgresql.png original_images/postgresql.png 512 512 2016-06-17 11:43:00.409184-04 \N \N \N \N 1 225303 1 -7 sass.png original_images/sass.png 512 512 2016-06-17 11:43:00.887588-04 \N \N \N \N 1 88756 1 -9 wagtail.png original_images/wagtail.png 512 512 2016-06-17 11:43:01.179654-04 \N \N \N \N 1 28197 1 -10 yeti.png original_images/yeti.png 512 512 2016-06-17 11:43:01.353403-04 \N \N \N \N 1 101373 1 -11 placeholder_person.png original_images/placeholder_person.png 600 568 2016-06-17 11:44:24.011638-04 \N \N \N \N 1 \N 1 -8 wagtail.jpg original_images/wagtail.jpg 1300 500 2016-06-17 11:43:01.027187-04 \N \N \N \N 1 60370 1 -4 postgresql.jpg original_images/postgresql.jpg 1300 500 2016-06-17 11:43:00.090369-04 \N \N \N \N 1 117964 1 -6 sass.jpg original_images/sass.jpg 1300 500 2016-06-17 11:43:00.663125-04 \N \N \N \N 1 158244 1 -3 foundation.jpg original_images/foundation.jpg 1300 500 2016-06-17 11:42:59.371076-04 \N \N \N \N 1 131208 1 +1 ansible.png original_images/ansible.png 512 512 2016-06-17 21:12:58.767405+05:30 \N \N \N \N 1 43211 1 +2 digital_ocean.png original_images/digital_ocean.png 512 512 2016-06-17 21:12:59.095509+05:30 \N \N \N \N 1 58324 1 +5 postgresql.png original_images/postgresql.png 512 512 2016-06-17 21:13:00.409184+05:30 \N \N \N \N 1 225303 1 +7 sass.png original_images/sass.png 512 512 2016-06-17 21:13:00.887588+05:30 \N \N \N \N 1 88756 1 +9 wagtail.png original_images/wagtail.png 512 512 2016-06-17 21:13:01.179654+05:30 \N \N \N \N 1 28197 1 +10 yeti.png original_images/yeti.png 512 512 2016-06-17 21:13:01.353403+05:30 \N \N \N \N 1 101373 1 +11 placeholder_person.png original_images/placeholder_person.png 600 568 2016-06-17 21:14:24.011638+05:30 \N \N \N \N 1 \N 1 +8 wagtail.jpg original_images/wagtail.jpg 1300 500 2016-06-17 21:13:01.027187+05:30 \N \N \N \N 1 60370 1 +4 postgresql.jpg original_images/postgresql.jpg 1300 500 2016-06-17 21:13:00.090369+05:30 \N \N \N \N 1 117964 1 +6 sass.jpg original_images/sass.jpg 1300 500 2016-06-17 21:13:00.663125+05:30 \N \N \N \N 1 158244 1 +3 foundation.jpg original_images/foundation.jpg 1300 500 2016-06-17 21:12:59.371076+05:30 \N \N \N \N 1 131208 1 \. -- --- Name: wagtailimages_image_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailimages_image_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailimages_image_id_seq', 11, true); -- --- Data for Name: wagtailimages_rendition; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailimages_rendition; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailimages_rendition (id, file, width, height, focal_point_key, filter_id, image_id) FROM stdin; @@ -4205,14 +4545,14 @@ COPY wagtailimages_rendition (id, file, width, height, focal_point_key, filter_i -- --- Name: wagtailimages_rendition_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailimages_rendition_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailimages_rendition_id_seq', 44, true); -- --- Data for Name: wagtailredirects_redirect; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailredirects_redirect; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailredirects_redirect (id, old_path, is_permanent, redirect_link, redirect_page_id, site_id) FROM stdin; @@ -4220,21 +4560,21 @@ COPY wagtailredirects_redirect (id, old_path, is_permanent, redirect_link, redir -- --- Name: wagtailredirects_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailredirects_redirect_id_seq', 1, false); -- --- Name: wagtailsearch_editorspick_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailsearch_editorspick_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailsearch_editorspick_id_seq', 1, false); -- --- Data for Name: wagtailsearch_query; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailsearch_query; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailsearch_query (id, query_string) FROM stdin; @@ -4242,14 +4582,14 @@ COPY wagtailsearch_query (id, query_string) FROM stdin; -- --- Name: wagtailsearch_query_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailsearch_query_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailsearch_query_id_seq', 1, false); -- --- Data for Name: wagtailsearch_querydailyhits; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailsearch_querydailyhits; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailsearch_querydailyhits (id, date, hits, query_id) FROM stdin; @@ -4257,14 +4597,14 @@ COPY wagtailsearch_querydailyhits (id, date, hits, query_id) FROM stdin; -- --- Name: wagtailsearch_querydailyhits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailsearch_querydailyhits_id_seq', 1, false); -- --- Data for Name: wagtailsearchpromotions_searchpromotion; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailsearchpromotions_searchpromotion; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailsearchpromotions_searchpromotion (id, sort_order, description, page_id, query_id) FROM stdin; @@ -4272,7 +4612,7 @@ COPY wagtailsearchpromotions_searchpromotion (id, sort_order, description, page_ -- --- Data for Name: wagtailusers_userprofile; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: wagtailusers_userprofile; Type: TABLE DATA; Schema: public; Owner: puri -- COPY wagtailusers_userprofile (id, submitted_notifications, approved_notifications, rejected_notifications, user_id) FROM stdin; @@ -4280,14 +4620,14 @@ COPY wagtailusers_userprofile (id, submitted_notifications, approved_notificatio -- --- Name: wagtailusers_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: wagtailusers_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: puri -- SELECT pg_catalog.setval('wagtailusers_userprofile_id_seq', 1, false); -- --- Name: auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_group @@ -4295,7 +4635,7 @@ ALTER TABLE ONLY auth_group -- --- Name: auth_group_permissions_group_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_group_permissions_group_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_group_permissions @@ -4303,7 +4643,7 @@ ALTER TABLE ONLY auth_group_permissions -- --- Name: auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_group_permissions @@ -4311,7 +4651,7 @@ ALTER TABLE ONLY auth_group_permissions -- --- Name: auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_group @@ -4319,7 +4659,7 @@ ALTER TABLE ONLY auth_group -- --- Name: auth_permission_content_type_id_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_permission_content_type_id_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_permission @@ -4327,7 +4667,7 @@ ALTER TABLE ONLY auth_permission -- --- Name: auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_permission @@ -4335,7 +4675,7 @@ ALTER TABLE ONLY auth_permission -- --- Name: auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_user_groups @@ -4343,7 +4683,7 @@ ALTER TABLE ONLY auth_user_groups -- --- Name: auth_user_groups_user_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_groups_user_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_user_groups @@ -4351,7 +4691,7 @@ ALTER TABLE ONLY auth_user_groups -- --- Name: auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_user @@ -4359,7 +4699,7 @@ ALTER TABLE ONLY auth_user -- --- Name: auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_user_user_permissions @@ -4367,7 +4707,7 @@ ALTER TABLE ONLY auth_user_user_permissions -- --- Name: auth_user_user_permissions_user_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_user_permissions_user_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_user_user_permissions @@ -4375,7 +4715,7 @@ ALTER TABLE ONLY auth_user_user_permissions -- --- Name: auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY auth_user @@ -4383,7 +4723,7 @@ ALTER TABLE ONLY auth_user -- --- Name: blog_blogindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY blog_blogindexpage @@ -4391,7 +4731,7 @@ ALTER TABLE ONLY blog_blogindexpage -- --- Name: blog_blogindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY blog_blogindexpagerelatedlink @@ -4399,7 +4739,7 @@ ALTER TABLE ONLY blog_blogindexpagerelatedlink -- --- Name: blog_blogpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY blog_blogpage @@ -4407,7 +4747,7 @@ ALTER TABLE ONLY blog_blogpage -- --- Name: blog_blogpagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY blog_blogpagecarouselitem @@ -4415,7 +4755,7 @@ ALTER TABLE ONLY blog_blogpagecarouselitem -- --- Name: blog_blogpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY blog_blogpagerelatedlink @@ -4423,7 +4763,7 @@ ALTER TABLE ONLY blog_blogpagerelatedlink -- --- Name: blog_blogpagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY blog_blogpagetag @@ -4431,7 +4771,7 @@ ALTER TABLE ONLY blog_blogpagetag -- --- Name: contact_contactformfield_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: contact_contactformfield_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY contact_contactformfield @@ -4439,7 +4779,7 @@ ALTER TABLE ONLY contact_contactformfield -- --- Name: contact_contactpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: contact_contactpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY contact_contactpage @@ -4447,7 +4787,7 @@ ALTER TABLE ONLY contact_contactpage -- --- Name: contact_formfield_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: contact_formfield_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY contact_formfield @@ -4455,7 +4795,7 @@ ALTER TABLE ONLY contact_formfield -- --- Name: contact_formpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: contact_formpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY contact_formpage @@ -4463,7 +4803,7 @@ ALTER TABLE ONLY contact_formpage -- --- Name: django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY django_admin_log @@ -4471,7 +4811,7 @@ ALTER TABLE ONLY django_admin_log -- --- Name: django_content_type_app_label_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: django_content_type_app_label_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY django_content_type @@ -4479,7 +4819,7 @@ ALTER TABLE ONLY django_content_type -- --- Name: django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY django_content_type @@ -4487,7 +4827,7 @@ ALTER TABLE ONLY django_content_type -- --- Name: django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY django_migrations @@ -4495,7 +4835,7 @@ ALTER TABLE ONLY django_migrations -- --- Name: django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY django_session @@ -4503,7 +4843,7 @@ ALTER TABLE ONLY django_session -- --- Name: documents_gallery_documentsindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gallery_documentsindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY documents_gallery_documentsindexpage @@ -4511,7 +4851,7 @@ ALTER TABLE ONLY documents_gallery_documentsindexpage -- --- Name: documents_gallery_documentspage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gallery_documentspage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY documents_gallery_documentspage @@ -4519,7 +4859,7 @@ ALTER TABLE ONLY documents_gallery_documentspage -- --- Name: documents_gallery_documentspagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY documents_gallery_documentspagetag @@ -4527,7 +4867,7 @@ ALTER TABLE ONLY documents_gallery_documentspagetag -- --- Name: events_eventindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY events_eventindexpage @@ -4535,7 +4875,7 @@ ALTER TABLE ONLY events_eventindexpage -- --- Name: events_eventindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY events_eventindexpagerelatedlink @@ -4543,7 +4883,7 @@ ALTER TABLE ONLY events_eventindexpagerelatedlink -- --- Name: events_eventpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY events_eventpage @@ -4551,7 +4891,7 @@ ALTER TABLE ONLY events_eventpage -- --- Name: events_eventpagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY events_eventpagecarouselitem @@ -4559,7 +4899,7 @@ ALTER TABLE ONLY events_eventpagecarouselitem -- --- Name: events_eventpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY events_eventpagerelatedlink @@ -4567,7 +4907,7 @@ ALTER TABLE ONLY events_eventpagerelatedlink -- --- Name: events_eventpagespeaker_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagespeaker_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY events_eventpagespeaker @@ -4575,7 +4915,23 @@ ALTER TABLE ONLY events_eventpagespeaker -- --- Name: pages_advert_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: feeds_feedsappsettings_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: +-- + +ALTER TABLE ONLY feeds_feedsappsettings + ADD CONSTRAINT feeds_feedsappsettings_pkey PRIMARY KEY (id); + + +-- +-- Name: feeds_feedsappsettings_site_id_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: +-- + +ALTER TABLE ONLY feeds_feedsappsettings + ADD CONSTRAINT feeds_feedsappsettings_site_id_key UNIQUE (site_id); + + +-- +-- Name: pages_advert_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_advert @@ -4583,7 +4939,7 @@ ALTER TABLE ONLY pages_advert -- --- Name: pages_contentblock_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_contentblock_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_contentblock @@ -4591,7 +4947,7 @@ ALTER TABLE ONLY pages_contentblock -- --- Name: pages_faqspage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_faqspage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_faqspage @@ -4599,7 +4955,7 @@ ALTER TABLE ONLY pages_faqspage -- --- Name: pages_homepage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_homepage @@ -4607,7 +4963,7 @@ ALTER TABLE ONLY pages_homepage -- --- Name: pages_homepagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_homepagecarouselitem @@ -4615,7 +4971,7 @@ ALTER TABLE ONLY pages_homepagecarouselitem -- --- Name: pages_homepagecontentitem_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_homepagecontentitem @@ -4623,7 +4979,7 @@ ALTER TABLE ONLY pages_homepagecontentitem -- --- Name: pages_homepagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_homepagerelatedlink @@ -4631,7 +4987,7 @@ ALTER TABLE ONLY pages_homepagerelatedlink -- --- Name: pages_socialmediasettings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_socialmediasettings_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_socialmediasettings @@ -4639,7 +4995,7 @@ ALTER TABLE ONLY pages_socialmediasettings -- --- Name: pages_socialmediasettings_site_id_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_socialmediasettings_site_id_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_socialmediasettings @@ -4647,7 +5003,7 @@ ALTER TABLE ONLY pages_socialmediasettings -- --- Name: pages_standardindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_standardindexpage @@ -4655,7 +5011,7 @@ ALTER TABLE ONLY pages_standardindexpage -- --- Name: pages_standardindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_standardindexpagerelatedlink @@ -4663,7 +5019,7 @@ ALTER TABLE ONLY pages_standardindexpagerelatedlink -- --- Name: pages_standardpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_standardpage @@ -4671,7 +5027,7 @@ ALTER TABLE ONLY pages_standardpage -- --- Name: pages_standardpagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_standardpagecarouselitem @@ -4679,7 +5035,7 @@ ALTER TABLE ONLY pages_standardpagecarouselitem -- --- Name: pages_standardpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_standardpagerelatedlink @@ -4687,7 +5043,7 @@ ALTER TABLE ONLY pages_standardpagerelatedlink -- --- Name: pages_testimonial_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: pages_testimonial_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY pages_testimonial @@ -4695,7 +5051,7 @@ ALTER TABLE ONLY pages_testimonial -- --- Name: people_personindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: people_personindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY people_personindexpage @@ -4703,7 +5059,7 @@ ALTER TABLE ONLY people_personindexpage -- --- Name: people_personindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY people_personindexpagerelatedlink @@ -4711,7 +5067,7 @@ ALTER TABLE ONLY people_personindexpagerelatedlink -- --- Name: people_personpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY people_personpage @@ -4719,7 +5075,7 @@ ALTER TABLE ONLY people_personpage -- --- Name: people_personpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY people_personpagerelatedlink @@ -4727,7 +5083,7 @@ ALTER TABLE ONLY people_personpagerelatedlink -- --- Name: people_personpagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY people_personpagetag @@ -4735,7 +5091,7 @@ ALTER TABLE ONLY people_personpagetag -- --- Name: people_personrole_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: people_personrole_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY people_personrole @@ -4743,7 +5099,7 @@ ALTER TABLE ONLY people_personrole -- --- Name: photo_gallery_galleryindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery_galleryindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY photo_gallery_galleryindexpage @@ -4751,7 +5107,7 @@ ALTER TABLE ONLY photo_gallery_galleryindexpage -- --- Name: photo_gallery_gallerypage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery_gallerypage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY photo_gallery_gallerypage @@ -4759,7 +5115,7 @@ ALTER TABLE ONLY photo_gallery_gallerypage -- --- Name: photo_gallery_gallerypagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY photo_gallery_gallerypagetag @@ -4767,7 +5123,7 @@ ALTER TABLE ONLY photo_gallery_gallerypagetag -- --- Name: products_productindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: products_productindexpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY products_productindexpage @@ -4775,7 +5131,7 @@ ALTER TABLE ONLY products_productindexpage -- --- Name: products_productindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY products_productindexpagerelatedlink @@ -4783,7 +5139,7 @@ ALTER TABLE ONLY products_productindexpagerelatedlink -- --- Name: products_productpage_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpage_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY products_productpage @@ -4791,7 +5147,7 @@ ALTER TABLE ONLY products_productpage -- --- Name: products_productpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY products_productpagerelatedlink @@ -4799,7 +5155,7 @@ ALTER TABLE ONLY products_productpagerelatedlink -- --- Name: products_productpagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpagetag_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY products_productpagetag @@ -4807,7 +5163,7 @@ ALTER TABLE ONLY products_productpagetag -- --- Name: taggit_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: taggit_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY taggit_tag @@ -4815,7 +5171,7 @@ ALTER TABLE ONLY taggit_tag -- --- Name: taggit_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: taggit_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY taggit_tag @@ -4823,7 +5179,7 @@ ALTER TABLE ONLY taggit_tag -- --- Name: taggit_tag_slug_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: taggit_tag_slug_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY taggit_tag @@ -4831,7 +5187,7 @@ ALTER TABLE ONLY taggit_tag -- --- Name: taggit_taggeditem_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: taggit_taggeditem_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY taggit_taggeditem @@ -4839,7 +5195,7 @@ ALTER TABLE ONLY taggit_taggeditem -- --- Name: wagtailcore_collection_path_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_collection_path_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_collection @@ -4847,7 +5203,7 @@ ALTER TABLE ONLY wagtailcore_collection -- --- Name: wagtailcore_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_collection @@ -4855,7 +5211,7 @@ ALTER TABLE ONLY wagtailcore_collection -- --- Name: wagtailcore_groupcollectionpermission_group_id_a21cefe9_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_group_id_a21cefe9_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_groupcollectionpermission @@ -4863,7 +5219,7 @@ ALTER TABLE ONLY wagtailcore_groupcollectionpermission -- --- Name: wagtailcore_groupcollectionpermission_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_groupcollectionpermission @@ -4871,7 +5227,7 @@ ALTER TABLE ONLY wagtailcore_groupcollectionpermission -- --- Name: wagtailcore_grouppagepermission_group_id_0898bdf8_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_group_id_0898bdf8_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_grouppagepermission @@ -4879,7 +5235,7 @@ ALTER TABLE ONLY wagtailcore_grouppagepermission -- --- Name: wagtailcore_grouppagepermission_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_grouppagepermission @@ -4887,7 +5243,7 @@ ALTER TABLE ONLY wagtailcore_grouppagepermission -- --- Name: wagtailcore_page_path_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_page_path_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_page @@ -4895,7 +5251,7 @@ ALTER TABLE ONLY wagtailcore_page -- --- Name: wagtailcore_page_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_page_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_page @@ -4903,7 +5259,7 @@ ALTER TABLE ONLY wagtailcore_page -- --- Name: wagtailcore_pagerevision_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_pagerevision @@ -4911,7 +5267,7 @@ ALTER TABLE ONLY wagtailcore_pagerevision -- --- Name: wagtailcore_pageviewrestriction_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_pageviewrestriction_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_pageviewrestriction @@ -4919,7 +5275,7 @@ ALTER TABLE ONLY wagtailcore_pageviewrestriction -- --- Name: wagtailcore_site_hostname_2c626d70_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_site_hostname_2c626d70_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_site @@ -4927,7 +5283,7 @@ ALTER TABLE ONLY wagtailcore_site -- --- Name: wagtailcore_site_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_site_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailcore_site @@ -4935,7 +5291,7 @@ ALTER TABLE ONLY wagtailcore_site -- --- Name: wagtaildocs_document_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtaildocs_document_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtaildocs_document @@ -4943,7 +5299,7 @@ ALTER TABLE ONLY wagtaildocs_document -- --- Name: wagtailembeds_embed_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailembeds_embed_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailembeds_embed @@ -4951,7 +5307,7 @@ ALTER TABLE ONLY wagtailembeds_embed -- --- Name: wagtailembeds_embed_url_8a2922d8_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailembeds_embed_url_8a2922d8_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailembeds_embed @@ -4959,7 +5315,7 @@ ALTER TABLE ONLY wagtailembeds_embed -- --- Name: wagtailforms_formsubmission_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailforms_formsubmission_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailforms_formsubmission @@ -4967,7 +5323,7 @@ ALTER TABLE ONLY wagtailforms_formsubmission -- --- Name: wagtailimages_filter_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_filter_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailimages_filter @@ -4975,7 +5331,7 @@ ALTER TABLE ONLY wagtailimages_filter -- --- Name: wagtailimages_filter_spec_42ad6e02_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_filter_spec_42ad6e02_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailimages_filter @@ -4983,7 +5339,7 @@ ALTER TABLE ONLY wagtailimages_filter -- --- Name: wagtailimages_image_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_image_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailimages_image @@ -4991,7 +5347,7 @@ ALTER TABLE ONLY wagtailimages_image -- --- Name: wagtailimages_rendition_image_id_03110280_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_rendition_image_id_03110280_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailimages_rendition @@ -4999,7 +5355,7 @@ ALTER TABLE ONLY wagtailimages_rendition -- --- Name: wagtailimages_rendition_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_rendition_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailimages_rendition @@ -5007,7 +5363,7 @@ ALTER TABLE ONLY wagtailimages_rendition -- --- Name: wagtailredirects_redirect_old_path_783622d7_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_old_path_783622d7_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailredirects_redirect @@ -5015,7 +5371,7 @@ ALTER TABLE ONLY wagtailredirects_redirect -- --- Name: wagtailredirects_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailredirects_redirect @@ -5023,7 +5379,7 @@ ALTER TABLE ONLY wagtailredirects_redirect -- --- Name: wagtailsearch_editorspick_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_editorspick_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion @@ -5031,7 +5387,7 @@ ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion -- --- Name: wagtailsearch_query_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_query_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailsearch_query @@ -5039,7 +5395,7 @@ ALTER TABLE ONLY wagtailsearch_query -- --- Name: wagtailsearch_query_query_string_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_query_query_string_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailsearch_query @@ -5047,7 +5403,7 @@ ALTER TABLE ONLY wagtailsearch_query -- --- Name: wagtailsearch_querydailyhits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailsearch_querydailyhits @@ -5055,7 +5411,7 @@ ALTER TABLE ONLY wagtailsearch_querydailyhits -- --- Name: wagtailsearch_querydailyhits_query_id_1dd232e6_uniq; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits_query_id_1dd232e6_uniq; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailsearch_querydailyhits @@ -5063,7 +5419,7 @@ ALTER TABLE ONLY wagtailsearch_querydailyhits -- --- Name: wagtailusers_userprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailusers_userprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailusers_userprofile @@ -5071,7 +5427,7 @@ ALTER TABLE ONLY wagtailusers_userprofile -- --- Name: wagtailusers_userprofile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailusers_userprofile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: puri; Tablespace: -- ALTER TABLE ONLY wagtailusers_userprofile @@ -5079,1057 +5435,1057 @@ ALTER TABLE ONLY wagtailusers_userprofile -- --- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: - +-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_group_name_a6ea08ec_like ON auth_group USING btree (name varchar_pattern_ops); -- --- Name: auth_group_permissions_0e939a4f; Type: INDEX; Schema: public; Owner: - +-- Name: auth_group_permissions_0e939a4f; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_group_permissions_0e939a4f ON auth_group_permissions USING btree (group_id); -- --- Name: auth_group_permissions_8373b171; Type: INDEX; Schema: public; Owner: - +-- Name: auth_group_permissions_8373b171; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_group_permissions_8373b171 ON auth_group_permissions USING btree (permission_id); -- --- Name: auth_permission_417f1b1c; Type: INDEX; Schema: public; Owner: - +-- Name: auth_permission_417f1b1c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_permission_417f1b1c ON auth_permission USING btree (content_type_id); -- --- Name: auth_user_groups_0e939a4f; Type: INDEX; Schema: public; Owner: - +-- Name: auth_user_groups_0e939a4f; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_user_groups_0e939a4f ON auth_user_groups USING btree (group_id); -- --- Name: auth_user_groups_e8701ad4; Type: INDEX; Schema: public; Owner: - +-- Name: auth_user_groups_e8701ad4; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_user_groups_e8701ad4 ON auth_user_groups USING btree (user_id); -- --- Name: auth_user_user_permissions_8373b171; Type: INDEX; Schema: public; Owner: - +-- Name: auth_user_user_permissions_8373b171; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_user_user_permissions_8373b171 ON auth_user_user_permissions USING btree (permission_id); -- --- Name: auth_user_user_permissions_e8701ad4; Type: INDEX; Schema: public; Owner: - +-- Name: auth_user_user_permissions_e8701ad4; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_user_user_permissions_e8701ad4 ON auth_user_user_permissions USING btree (user_id); -- --- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: - +-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX auth_user_username_6821ab7c_like ON auth_user USING btree (username varchar_pattern_ops); -- --- Name: blog_blogindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogindexpagerelatedlink_121087a8 ON blog_blogindexpagerelatedlink USING btree (link_document_id); -- --- Name: blog_blogindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogindexpagerelatedlink_1a63c800 ON blog_blogindexpagerelatedlink USING btree (page_id); -- --- Name: blog_blogindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogindexpagerelatedlink_5b76e141 ON blog_blogindexpagerelatedlink USING btree (link_page_id); -- --- Name: blog_blogpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpage_92482941 ON blog_blogpage USING btree (feed_image_id); -- --- Name: blog_blogpagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagecarouselitem_121087a8 ON blog_blogpagecarouselitem USING btree (link_document_id); -- --- Name: blog_blogpagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagecarouselitem_1a63c800 ON blog_blogpagecarouselitem USING btree (page_id); -- --- Name: blog_blogpagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagecarouselitem_5b76e141 ON blog_blogpagecarouselitem USING btree (link_page_id); -- --- Name: blog_blogpagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagecarouselitem_f33175e6 ON blog_blogpagecarouselitem USING btree (image_id); -- --- Name: blog_blogpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagerelatedlink_121087a8 ON blog_blogpagerelatedlink USING btree (link_document_id); -- --- Name: blog_blogpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagerelatedlink_1a63c800 ON blog_blogpagerelatedlink USING btree (page_id); -- --- Name: blog_blogpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagerelatedlink_5b76e141 ON blog_blogpagerelatedlink USING btree (link_page_id); -- --- Name: blog_blogpagetag_09a80f33; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagetag_09a80f33; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagetag_09a80f33 ON blog_blogpagetag USING btree (content_object_id); -- --- Name: blog_blogpagetag_76f094bc; Type: INDEX; Schema: public; Owner: - +-- Name: blog_blogpagetag_76f094bc; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX blog_blogpagetag_76f094bc ON blog_blogpagetag USING btree (tag_id); -- --- Name: contact_contactformfield_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: contact_contactformfield_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX contact_contactformfield_1a63c800 ON contact_contactformfield USING btree (page_id); -- --- Name: contact_formfield_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: contact_formfield_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX contact_formfield_1a63c800 ON contact_formfield USING btree (page_id); -- --- Name: django_admin_log_417f1b1c; Type: INDEX; Schema: public; Owner: - +-- Name: django_admin_log_417f1b1c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX django_admin_log_417f1b1c ON django_admin_log USING btree (content_type_id); -- --- Name: django_admin_log_e8701ad4; Type: INDEX; Schema: public; Owner: - +-- Name: django_admin_log_e8701ad4; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX django_admin_log_e8701ad4 ON django_admin_log USING btree (user_id); -- --- Name: django_session_de54fa62; Type: INDEX; Schema: public; Owner: - +-- Name: django_session_de54fa62; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX django_session_de54fa62 ON django_session USING btree (expire_date); -- --- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: - +-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX django_session_session_key_c0390e0f_like ON django_session USING btree (session_key varchar_pattern_ops); -- --- Name: documents_gallery_documentsindexpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: documents_gallery_documentsindexpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX documents_gallery_documentsindexpage_92482941 ON documents_gallery_documentsindexpage USING btree (feed_image_id); -- --- Name: documents_gallery_documentspage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: documents_gallery_documentspage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX documents_gallery_documentspage_92482941 ON documents_gallery_documentspage USING btree (feed_image_id); -- --- Name: documents_gallery_documentspagetag_09a80f33; Type: INDEX; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag_09a80f33; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX documents_gallery_documentspagetag_09a80f33 ON documents_gallery_documentspagetag USING btree (content_object_id); -- --- Name: documents_gallery_documentspagetag_76f094bc; Type: INDEX; Schema: public; Owner: - +-- Name: documents_gallery_documentspagetag_76f094bc; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX documents_gallery_documentspagetag_76f094bc ON documents_gallery_documentspagetag USING btree (tag_id); -- --- Name: events_eventindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventindexpagerelatedlink_121087a8 ON events_eventindexpagerelatedlink USING btree (link_document_id); -- --- Name: events_eventindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventindexpagerelatedlink_1a63c800 ON events_eventindexpagerelatedlink USING btree (page_id); -- --- Name: events_eventindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventindexpagerelatedlink_5b76e141 ON events_eventindexpagerelatedlink USING btree (link_page_id); -- --- Name: events_eventpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpage_92482941 ON events_eventpage USING btree (feed_image_id); -- --- Name: events_eventpagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagecarouselitem_121087a8 ON events_eventpagecarouselitem USING btree (link_document_id); -- --- Name: events_eventpagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagecarouselitem_1a63c800 ON events_eventpagecarouselitem USING btree (page_id); -- --- Name: events_eventpagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagecarouselitem_5b76e141 ON events_eventpagecarouselitem USING btree (link_page_id); -- --- Name: events_eventpagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagecarouselitem_f33175e6 ON events_eventpagecarouselitem USING btree (image_id); -- --- Name: events_eventpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagerelatedlink_121087a8 ON events_eventpagerelatedlink USING btree (link_document_id); -- --- Name: events_eventpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagerelatedlink_1a63c800 ON events_eventpagerelatedlink USING btree (page_id); -- --- Name: events_eventpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagerelatedlink_5b76e141 ON events_eventpagerelatedlink USING btree (link_page_id); -- --- Name: events_eventpagespeaker_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagespeaker_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagespeaker_121087a8 ON events_eventpagespeaker USING btree (link_document_id); -- --- Name: events_eventpagespeaker_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagespeaker_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagespeaker_1a63c800 ON events_eventpagespeaker USING btree (page_id); -- --- Name: events_eventpagespeaker_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagespeaker_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagespeaker_5b76e141 ON events_eventpagespeaker USING btree (link_page_id); -- --- Name: events_eventpagespeaker_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: events_eventpagespeaker_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX events_eventpagespeaker_f33175e6 ON events_eventpagespeaker USING btree (image_id); -- --- Name: pages_advert_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_advert_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_advert_121087a8 ON pages_advert USING btree (link_document_id); -- --- Name: pages_advert_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_advert_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_advert_1a63c800 ON pages_advert USING btree (page_id); -- --- Name: pages_advert_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_advert_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_advert_5b76e141 ON pages_advert USING btree (link_page_id); -- --- Name: pages_advert_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: pages_advert_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_advert_f33175e6 ON pages_advert USING btree (image_id); -- --- Name: pages_contentblock_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_contentblock_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_contentblock_121087a8 ON pages_contentblock USING btree (link_document_id); -- --- Name: pages_contentblock_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_contentblock_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_contentblock_1a63c800 ON pages_contentblock USING btree (page_id); -- --- Name: pages_contentblock_2dbcba41; Type: INDEX; Schema: public; Owner: - +-- Name: pages_contentblock_2dbcba41; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_contentblock_2dbcba41 ON pages_contentblock USING btree (slug); -- --- Name: pages_contentblock_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_contentblock_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_contentblock_5b76e141 ON pages_contentblock USING btree (link_page_id); -- --- Name: pages_contentblock_slug_946a161b_like; Type: INDEX; Schema: public; Owner: - +-- Name: pages_contentblock_slug_946a161b_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_contentblock_slug_946a161b_like ON pages_contentblock USING btree (slug varchar_pattern_ops); -- --- Name: pages_homepagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecarouselitem_121087a8 ON pages_homepagecarouselitem USING btree (link_document_id); -- --- Name: pages_homepagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecarouselitem_1a63c800 ON pages_homepagecarouselitem USING btree (page_id); -- --- Name: pages_homepagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecarouselitem_5b76e141 ON pages_homepagecarouselitem USING btree (link_page_id); -- --- Name: pages_homepagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecarouselitem_f33175e6 ON pages_homepagecarouselitem USING btree (image_id); -- --- Name: pages_homepagecontentitem_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecontentitem_121087a8 ON pages_homepagecontentitem USING btree (link_document_id); -- --- Name: pages_homepagecontentitem_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecontentitem_1a63c800 ON pages_homepagecontentitem USING btree (page_id); -- --- Name: pages_homepagecontentitem_2dbcba41; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_2dbcba41; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecontentitem_2dbcba41 ON pages_homepagecontentitem USING btree (slug); -- --- Name: pages_homepagecontentitem_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecontentitem_5b76e141 ON pages_homepagecontentitem USING btree (link_page_id); -- --- Name: pages_homepagecontentitem_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecontentitem_f33175e6 ON pages_homepagecontentitem USING btree (image_id); -- --- Name: pages_homepagecontentitem_slug_2f312148_like; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagecontentitem_slug_2f312148_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagecontentitem_slug_2f312148_like ON pages_homepagecontentitem USING btree (slug varchar_pattern_ops); -- --- Name: pages_homepagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagerelatedlink_121087a8 ON pages_homepagerelatedlink USING btree (link_document_id); -- --- Name: pages_homepagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagerelatedlink_1a63c800 ON pages_homepagerelatedlink USING btree (page_id); -- --- Name: pages_homepagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_homepagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_homepagerelatedlink_5b76e141 ON pages_homepagerelatedlink USING btree (link_page_id); -- --- Name: pages_standardindexpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardindexpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardindexpage_92482941 ON pages_standardindexpage USING btree (feed_image_id); -- --- Name: pages_standardindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardindexpagerelatedlink_121087a8 ON pages_standardindexpagerelatedlink USING btree (link_document_id); -- --- Name: pages_standardindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardindexpagerelatedlink_1a63c800 ON pages_standardindexpagerelatedlink USING btree (page_id); -- --- Name: pages_standardindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardindexpagerelatedlink_5b76e141 ON pages_standardindexpagerelatedlink USING btree (link_page_id); -- --- Name: pages_standardpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpage_92482941 ON pages_standardpage USING btree (feed_image_id); -- --- Name: pages_standardpagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagecarouselitem_121087a8 ON pages_standardpagecarouselitem USING btree (link_document_id); -- --- Name: pages_standardpagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagecarouselitem_1a63c800 ON pages_standardpagecarouselitem USING btree (page_id); -- --- Name: pages_standardpagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagecarouselitem_5b76e141 ON pages_standardpagecarouselitem USING btree (link_page_id); -- --- Name: pages_standardpagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagecarouselitem_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagecarouselitem_f33175e6 ON pages_standardpagecarouselitem USING btree (image_id); -- --- Name: pages_standardpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagerelatedlink_121087a8 ON pages_standardpagerelatedlink USING btree (link_document_id); -- --- Name: pages_standardpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagerelatedlink_1a63c800 ON pages_standardpagerelatedlink USING btree (page_id); -- --- Name: pages_standardpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_standardpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_standardpagerelatedlink_5b76e141 ON pages_standardpagerelatedlink USING btree (link_page_id); -- --- Name: pages_testimonial_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: pages_testimonial_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_testimonial_121087a8 ON pages_testimonial USING btree (link_document_id); -- --- Name: pages_testimonial_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: pages_testimonial_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_testimonial_1a63c800 ON pages_testimonial USING btree (page_id); -- --- Name: pages_testimonial_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: pages_testimonial_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_testimonial_5b76e141 ON pages_testimonial USING btree (link_page_id); -- --- Name: pages_testimonial_b4e75e23; Type: INDEX; Schema: public; Owner: - +-- Name: pages_testimonial_b4e75e23; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX pages_testimonial_b4e75e23 ON pages_testimonial USING btree (photo_id); -- --- Name: people_personindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personindexpagerelatedlink_121087a8 ON people_personindexpagerelatedlink USING btree (link_document_id); -- --- Name: people_personindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personindexpagerelatedlink_1a63c800 ON people_personindexpagerelatedlink USING btree (page_id); -- --- Name: people_personindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: people_personindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personindexpagerelatedlink_5b76e141 ON people_personindexpagerelatedlink USING btree (link_page_id); -- --- Name: people_personpage_84566833; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpage_84566833; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpage_84566833 ON people_personpage USING btree (role_id); -- --- Name: people_personpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpage_92482941 ON people_personpage USING btree (feed_image_id); -- --- Name: people_personpage_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpage_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpage_f33175e6 ON people_personpage USING btree (image_id); -- --- Name: people_personpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpagerelatedlink_121087a8 ON people_personpagerelatedlink USING btree (link_document_id); -- --- Name: people_personpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpagerelatedlink_1a63c800 ON people_personpagerelatedlink USING btree (page_id); -- --- Name: people_personpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpagerelatedlink_5b76e141 ON people_personpagerelatedlink USING btree (link_page_id); -- --- Name: people_personpagetag_09a80f33; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpagetag_09a80f33; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpagetag_09a80f33 ON people_personpagetag USING btree (content_object_id); -- --- Name: people_personpagetag_76f094bc; Type: INDEX; Schema: public; Owner: - +-- Name: people_personpagetag_76f094bc; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX people_personpagetag_76f094bc ON people_personpagetag USING btree (tag_id); -- --- Name: photo_gallery_galleryindexpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: photo_gallery_galleryindexpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX photo_gallery_galleryindexpage_92482941 ON photo_gallery_galleryindexpage USING btree (feed_image_id); -- --- Name: photo_gallery_gallerypage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: photo_gallery_gallerypage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX photo_gallery_gallerypage_92482941 ON photo_gallery_gallerypage USING btree (feed_image_id); -- --- Name: photo_gallery_gallerypagetag_09a80f33; Type: INDEX; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_09a80f33; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX photo_gallery_gallerypagetag_09a80f33 ON photo_gallery_gallerypagetag USING btree (content_object_id); -- --- Name: photo_gallery_gallerypagetag_76f094bc; Type: INDEX; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_76f094bc; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX photo_gallery_gallerypagetag_76f094bc ON photo_gallery_gallerypagetag USING btree (tag_id); -- --- Name: products_productindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productindexpagerelatedlink_121087a8 ON products_productindexpagerelatedlink USING btree (link_document_id); -- --- Name: products_productindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productindexpagerelatedlink_1a63c800 ON products_productindexpagerelatedlink USING btree (page_id); -- --- Name: products_productindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: products_productindexpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productindexpagerelatedlink_5b76e141 ON products_productindexpagerelatedlink USING btree (link_page_id); -- --- Name: products_productpage_92482941; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpage_92482941; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpage_92482941 ON products_productpage USING btree (feed_image_id); -- --- Name: products_productpage_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpage_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpage_f33175e6 ON products_productpage USING btree (image_id); -- --- Name: products_productpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_121087a8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpagerelatedlink_121087a8 ON products_productpagerelatedlink USING btree (link_document_id); -- --- Name: products_productpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpagerelatedlink_1a63c800 ON products_productpagerelatedlink USING btree (page_id); -- --- Name: products_productpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpagerelatedlink_5b76e141; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpagerelatedlink_5b76e141 ON products_productpagerelatedlink USING btree (link_page_id); -- --- Name: products_productpagetag_09a80f33; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpagetag_09a80f33; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpagetag_09a80f33 ON products_productpagetag USING btree (content_object_id); -- --- Name: products_productpagetag_76f094bc; Type: INDEX; Schema: public; Owner: - +-- Name: products_productpagetag_76f094bc; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX products_productpagetag_76f094bc ON products_productpagetag USING btree (tag_id); -- --- Name: taggit_tag_name_58eb2ed9_like; Type: INDEX; Schema: public; Owner: - +-- Name: taggit_tag_name_58eb2ed9_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX taggit_tag_name_58eb2ed9_like ON taggit_tag USING btree (name varchar_pattern_ops); -- --- Name: taggit_tag_slug_6be58b2c_like; Type: INDEX; Schema: public; Owner: - +-- Name: taggit_tag_slug_6be58b2c_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX taggit_tag_slug_6be58b2c_like ON taggit_tag USING btree (slug varchar_pattern_ops); -- --- Name: taggit_taggeditem_417f1b1c; Type: INDEX; Schema: public; Owner: - +-- Name: taggit_taggeditem_417f1b1c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX taggit_taggeditem_417f1b1c ON taggit_taggeditem USING btree (content_type_id); -- --- Name: taggit_taggeditem_76f094bc; Type: INDEX; Schema: public; Owner: - +-- Name: taggit_taggeditem_76f094bc; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX taggit_taggeditem_76f094bc ON taggit_taggeditem USING btree (tag_id); -- --- Name: taggit_taggeditem_af31437c; Type: INDEX; Schema: public; Owner: - +-- Name: taggit_taggeditem_af31437c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX taggit_taggeditem_af31437c ON taggit_taggeditem USING btree (object_id); -- --- Name: taggit_taggeditem_content_type_id_196cc965_idx; Type: INDEX; Schema: public; Owner: - +-- Name: taggit_taggeditem_content_type_id_196cc965_idx; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX taggit_taggeditem_content_type_id_196cc965_idx ON taggit_taggeditem USING btree (content_type_id, object_id); -- --- Name: wagtailcore_collection_path_d848dc19_like; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_collection_path_d848dc19_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_collection_path_d848dc19_like ON wagtailcore_collection USING btree (path varchar_pattern_ops); -- --- Name: wagtailcore_groupcollectionpermission_0a1a4dd8; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_0a1a4dd8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_groupcollectionpermission_0a1a4dd8 ON wagtailcore_groupcollectionpermission USING btree (collection_id); -- --- Name: wagtailcore_groupcollectionpermission_0e939a4f; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_0e939a4f; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_groupcollectionpermission_0e939a4f ON wagtailcore_groupcollectionpermission USING btree (group_id); -- --- Name: wagtailcore_groupcollectionpermission_8373b171; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionpermission_8373b171; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_groupcollectionpermission_8373b171 ON wagtailcore_groupcollectionpermission USING btree (permission_id); -- --- Name: wagtailcore_grouppagepermission_0e939a4f; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_0e939a4f; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_grouppagepermission_0e939a4f ON wagtailcore_grouppagepermission USING btree (group_id); -- --- Name: wagtailcore_grouppagepermission_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermission_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_grouppagepermission_1a63c800 ON wagtailcore_grouppagepermission USING btree (page_id); -- --- Name: wagtailcore_page_2dbcba41; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_page_2dbcba41; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_page_2dbcba41 ON wagtailcore_page USING btree (slug); -- --- Name: wagtailcore_page_417f1b1c; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_page_417f1b1c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_page_417f1b1c ON wagtailcore_page USING btree (content_type_id); -- --- Name: wagtailcore_page_5e7b1936; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_page_5e7b1936; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_page_5e7b1936 ON wagtailcore_page USING btree (owner_id); -- --- Name: wagtailcore_page_first_published_at_2b5dd637_uniq; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_page_first_published_at_2b5dd637_uniq; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_page_first_published_at_2b5dd637_uniq ON wagtailcore_page USING btree (first_published_at); -- --- Name: wagtailcore_page_path_98eba2c8_like; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_page_path_98eba2c8_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_page_path_98eba2c8_like ON wagtailcore_page USING btree (path varchar_pattern_ops); -- --- Name: wagtailcore_page_slug_e7c11b8f_like; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_page_slug_e7c11b8f_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_page_slug_e7c11b8f_like ON wagtailcore_page USING btree (slug varchar_pattern_ops); -- --- Name: wagtailcore_pagerevision_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_pagerevision_1a63c800 ON wagtailcore_pagerevision USING btree (page_id); -- --- Name: wagtailcore_pagerevision_e8701ad4; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_e8701ad4; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_pagerevision_e8701ad4 ON wagtailcore_pagerevision USING btree (user_id); -- --- Name: wagtailcore_pagerevision_submitted_for_moderation_c682e44c_uniq; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_submitted_for_moderation_c682e44c_uniq; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_pagerevision_submitted_for_moderation_c682e44c_uniq ON wagtailcore_pagerevision USING btree (submitted_for_moderation); -- --- Name: wagtailcore_pageviewrestriction_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_pageviewrestriction_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_pageviewrestriction_1a63c800 ON wagtailcore_pageviewrestriction USING btree (page_id); -- --- Name: wagtailcore_site_0897acf4; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_site_0897acf4; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_site_0897acf4 ON wagtailcore_site USING btree (hostname); -- --- Name: wagtailcore_site_8372b497; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_site_8372b497; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_site_8372b497 ON wagtailcore_site USING btree (root_page_id); -- --- Name: wagtailcore_site_hostname_96b20b46_like; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailcore_site_hostname_96b20b46_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailcore_site_hostname_96b20b46_like ON wagtailcore_site USING btree (hostname varchar_pattern_ops); -- --- Name: wagtaildocs_document_0a1a4dd8; Type: INDEX; Schema: public; Owner: - +-- Name: wagtaildocs_document_0a1a4dd8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtaildocs_document_0a1a4dd8 ON wagtaildocs_document USING btree (collection_id); -- --- Name: wagtaildocs_document_ef01e2b6; Type: INDEX; Schema: public; Owner: - +-- Name: wagtaildocs_document_ef01e2b6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtaildocs_document_ef01e2b6 ON wagtaildocs_document USING btree (uploaded_by_user_id); -- --- Name: wagtailforms_formsubmission_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailforms_formsubmission_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailforms_formsubmission_1a63c800 ON wagtailforms_formsubmission USING btree (page_id); -- --- Name: wagtailimages_image_0a1a4dd8; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailimages_image_0a1a4dd8; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailimages_image_0a1a4dd8 ON wagtailimages_image USING btree (collection_id); -- --- Name: wagtailimages_image_created_at_86fa6cd4_uniq; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailimages_image_created_at_86fa6cd4_uniq; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailimages_image_created_at_86fa6cd4_uniq ON wagtailimages_image USING btree (created_at); -- --- Name: wagtailimages_image_ef01e2b6; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailimages_image_ef01e2b6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailimages_image_ef01e2b6 ON wagtailimages_image USING btree (uploaded_by_user_id); -- --- Name: wagtailimages_rendition_0a317463; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailimages_rendition_0a317463; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailimages_rendition_0a317463 ON wagtailimages_rendition USING btree (filter_id); -- --- Name: wagtailimages_rendition_f33175e6; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailimages_rendition_f33175e6; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailimages_rendition_f33175e6 ON wagtailimages_rendition USING btree (image_id); -- --- Name: wagtailredirects_redirect_2fd79f37; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_2fd79f37; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailredirects_redirect_2fd79f37 ON wagtailredirects_redirect USING btree (redirect_page_id); -- --- Name: wagtailredirects_redirect_9365d6e7; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_9365d6e7; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailredirects_redirect_9365d6e7 ON wagtailredirects_redirect USING btree (site_id); -- --- Name: wagtailredirects_redirect_old_path_bb35247b_like; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailredirects_redirect_old_path_bb35247b_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailredirects_redirect_old_path_bb35247b_like ON wagtailredirects_redirect USING btree (old_path varchar_pattern_ops); -- --- Name: wagtailsearch_editorspick_0bbeda9c; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailsearch_editorspick_0bbeda9c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailsearch_editorspick_0bbeda9c ON wagtailsearchpromotions_searchpromotion USING btree (query_id); -- --- Name: wagtailsearch_editorspick_1a63c800; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailsearch_editorspick_1a63c800; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailsearch_editorspick_1a63c800 ON wagtailsearchpromotions_searchpromotion USING btree (page_id); -- --- Name: wagtailsearch_query_query_string_e785ea07_like; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailsearch_query_query_string_e785ea07_like; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailsearch_query_query_string_e785ea07_like ON wagtailsearch_query USING btree (query_string varchar_pattern_ops); -- --- Name: wagtailsearch_querydailyhits_0bbeda9c; Type: INDEX; Schema: public; Owner: - +-- Name: wagtailsearch_querydailyhits_0bbeda9c; Type: INDEX; Schema: public; Owner: puri; Tablespace: -- CREATE INDEX wagtailsearch_querydailyhits_0bbeda9c ON wagtailsearch_querydailyhits USING btree (query_id); -- --- Name: D17c8edd4821aee444fb5a22b2e0a831; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: D17c8edd4821aee444fb5a22b2e0a831; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentspagetag @@ -6137,7 +6493,7 @@ ALTER TABLE ONLY documents_gallery_documentspagetag -- --- Name: auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_group_permissions @@ -6145,7 +6501,7 @@ ALTER TABLE ONLY auth_group_permissions -- --- Name: auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_group_permissions @@ -6153,7 +6509,7 @@ ALTER TABLE ONLY auth_group_permissions -- --- Name: auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_permission @@ -6161,7 +6517,7 @@ ALTER TABLE ONLY auth_permission -- --- Name: auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user_groups @@ -6169,7 +6525,7 @@ ALTER TABLE ONLY auth_user_groups -- --- Name: auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user_groups @@ -6177,7 +6533,7 @@ ALTER TABLE ONLY auth_user_groups -- --- Name: auth_user_user_per_permission_id_1fbb5f2c_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_user_per_permission_id_1fbb5f2c_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user_user_permissions @@ -6185,7 +6541,7 @@ ALTER TABLE ONLY auth_user_user_permissions -- --- Name: auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY auth_user_user_permissions @@ -6193,7 +6549,7 @@ ALTER TABLE ONLY auth_user_user_permissions -- --- Name: blog_bl_content_object_id_0dc644d2_fk_blog_blogpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_bl_content_object_id_0dc644d2_fk_blog_blogpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagetag @@ -6201,7 +6557,7 @@ ALTER TABLE ONLY blog_blogpagetag -- --- Name: blog_blogi_link_document_id_84c85fbf_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogi_link_document_id_84c85fbf_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogindexpagerelatedlink @@ -6209,7 +6565,7 @@ ALTER TABLE ONLY blog_blogindexpagerelatedlink -- --- Name: blog_blogind_page_id_905f99b7_fk_blog_blogindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogind_page_id_905f99b7_fk_blog_blogindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogindexpagerelatedlink @@ -6217,7 +6573,7 @@ ALTER TABLE ONLY blog_blogindexpagerelatedlink -- --- Name: blog_blogindexpage_link_page_id_fdd456c7_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogindexpage_link_page_id_fdd456c7_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogindexpagerelatedlink @@ -6225,7 +6581,7 @@ ALTER TABLE ONLY blog_blogindexpagerelatedlink -- --- Name: blog_blogindexpage_page_ptr_id_d87c3ac2_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogindexpage_page_ptr_id_d87c3ac2_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogindexpage @@ -6233,7 +6589,7 @@ ALTER TABLE ONLY blog_blogindexpage -- --- Name: blog_blogp_link_document_id_358015f9_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogp_link_document_id_358015f9_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagerelatedlink @@ -6241,7 +6597,7 @@ ALTER TABLE ONLY blog_blogpagerelatedlink -- --- Name: blog_blogp_link_document_id_944c5996_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogp_link_document_id_944c5996_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagecarouselitem @@ -6249,7 +6605,7 @@ ALTER TABLE ONLY blog_blogpagecarouselitem -- --- Name: blog_blogpage_feed_image_id_5f46dd6e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpage_feed_image_id_5f46dd6e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpage @@ -6257,7 +6613,7 @@ ALTER TABLE ONLY blog_blogpage -- --- Name: blog_blogpage_page_ptr_id_1d78e2b7_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpage_page_ptr_id_1d78e2b7_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpage @@ -6265,7 +6621,7 @@ ALTER TABLE ONLY blog_blogpage -- --- Name: blog_blogpagecaro_page_id_41128629_fk_blog_blogpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagecaro_page_id_41128629_fk_blog_blogpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagecarouselitem @@ -6273,7 +6629,7 @@ ALTER TABLE ONLY blog_blogpagecarouselitem -- --- Name: blog_blogpagecarou_link_page_id_86ebc051_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagecarou_link_page_id_86ebc051_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagecarouselitem @@ -6281,7 +6637,7 @@ ALTER TABLE ONLY blog_blogpagecarouselitem -- --- Name: blog_blogpagecarous_image_id_d51a8744_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagecarous_image_id_d51a8744_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagecarouselitem @@ -6289,7 +6645,7 @@ ALTER TABLE ONLY blog_blogpagecarouselitem -- --- Name: blog_blogpagerela_page_id_31c20323_fk_blog_blogpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagerela_page_id_31c20323_fk_blog_blogpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagerelatedlink @@ -6297,7 +6653,7 @@ ALTER TABLE ONLY blog_blogpagerelatedlink -- --- Name: blog_blogpagerelat_link_page_id_1edfe541_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagerelat_link_page_id_1edfe541_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagerelatedlink @@ -6305,7 +6661,7 @@ ALTER TABLE ONLY blog_blogpagerelatedlink -- --- Name: blog_blogpagetag_tag_id_81dc0e5f_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: blog_blogpagetag_tag_id_81dc0e5f_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY blog_blogpagetag @@ -6313,7 +6669,7 @@ ALTER TABLE ONLY blog_blogpagetag -- --- Name: contact_con_page_id_95a7af80_fk_contact_contactpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: contact_con_page_id_95a7af80_fk_contact_contactpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY contact_contactformfield @@ -6321,7 +6677,7 @@ ALTER TABLE ONLY contact_contactformfield -- --- Name: contact_contactpage_page_ptr_id_143c93c1_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: contact_contactpage_page_ptr_id_143c93c1_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY contact_contactpage @@ -6329,7 +6685,7 @@ ALTER TABLE ONLY contact_contactpage -- --- Name: contact_formfi_page_id_3ee48e6d_fk_contact_formpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: contact_formfi_page_id_3ee48e6d_fk_contact_formpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY contact_formfield @@ -6337,7 +6693,7 @@ ALTER TABLE ONLY contact_formfield -- --- Name: contact_formpage_page_ptr_id_93c16e67_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: contact_formpage_page_ptr_id_93c16e67_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY contact_formpage @@ -6345,7 +6701,7 @@ ALTER TABLE ONLY contact_formpage -- --- Name: content_object_id_1985a884_fk_products_productpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: content_object_id_1985a884_fk_products_productpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagetag @@ -6353,7 +6709,7 @@ ALTER TABLE ONLY products_productpagetag -- --- Name: django_admin_content_type_id_c4bce8eb_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: django_admin_content_type_id_c4bce8eb_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY django_admin_log @@ -6361,7 +6717,7 @@ ALTER TABLE ONLY django_admin_log -- --- Name: django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY django_admin_log @@ -6369,7 +6725,7 @@ ALTER TABLE ONLY django_admin_log -- --- Name: documents_gall_feed_image_id_72f32dc7_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gall_feed_image_id_72f32dc7_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentspage @@ -6377,7 +6733,7 @@ ALTER TABLE ONLY documents_gallery_documentspage -- --- Name: documents_gall_feed_image_id_732ac53b_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gall_feed_image_id_732ac53b_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentsindexpage @@ -6385,7 +6741,7 @@ ALTER TABLE ONLY documents_gallery_documentsindexpage -- --- Name: documents_gallery_d_page_ptr_id_ef81894a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gallery_d_page_ptr_id_ef81894a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentspage @@ -6393,7 +6749,7 @@ ALTER TABLE ONLY documents_gallery_documentspage -- --- Name: documents_gallery_d_page_ptr_id_f7fa951f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gallery_d_page_ptr_id_f7fa951f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentsindexpage @@ -6401,7 +6757,7 @@ ALTER TABLE ONLY documents_gallery_documentsindexpage -- --- Name: documents_gallery_documentspag_tag_id_50625f82_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: documents_gallery_documentspag_tag_id_50625f82_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY documents_gallery_documentspagetag @@ -6409,7 +6765,7 @@ ALTER TABLE ONLY documents_gallery_documentspagetag -- --- Name: events_ev_page_id_7ac7d364_fk_events_eventindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_ev_page_id_7ac7d364_fk_events_eventindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventindexpagerelatedlink @@ -6417,7 +6773,7 @@ ALTER TABLE ONLY events_eventindexpagerelatedlink -- --- Name: events_eve_link_document_id_0252ea0f_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eve_link_document_id_0252ea0f_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagespeaker @@ -6425,7 +6781,7 @@ ALTER TABLE ONLY events_eventpagespeaker -- --- Name: events_eve_link_document_id_85c089ab_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eve_link_document_id_85c089ab_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagecarouselitem @@ -6433,7 +6789,7 @@ ALTER TABLE ONLY events_eventpagecarouselitem -- --- Name: events_eve_link_document_id_bc602f32_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eve_link_document_id_bc602f32_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagerelatedlink @@ -6441,7 +6797,7 @@ ALTER TABLE ONLY events_eventpagerelatedlink -- --- Name: events_eve_link_document_id_f50895d4_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eve_link_document_id_f50895d4_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventindexpagerelatedlink @@ -6449,7 +6805,7 @@ ALTER TABLE ONLY events_eventindexpagerelatedlink -- --- Name: events_eventindexp_link_page_id_4c88907b_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventindexp_link_page_id_4c88907b_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventindexpagerelatedlink @@ -6457,7 +6813,7 @@ ALTER TABLE ONLY events_eventindexpagerelatedlink -- --- Name: events_eventindexpa_page_ptr_id_d4ed8796_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventindexpa_page_ptr_id_d4ed8796_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventindexpage @@ -6465,7 +6821,7 @@ ALTER TABLE ONLY events_eventindexpage -- --- Name: events_eventpa_feed_image_id_25a625d0_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpa_feed_image_id_25a625d0_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpage @@ -6473,7 +6829,7 @@ ALTER TABLE ONLY events_eventpage -- --- Name: events_eventpa_page_id_10883f65_fk_events_eventpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpa_page_id_10883f65_fk_events_eventpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagespeaker @@ -6481,7 +6837,7 @@ ALTER TABLE ONLY events_eventpagespeaker -- --- Name: events_eventpa_page_id_2da96f87_fk_events_eventpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpa_page_id_2da96f87_fk_events_eventpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagerelatedlink @@ -6489,7 +6845,7 @@ ALTER TABLE ONLY events_eventpagerelatedlink -- --- Name: events_eventpa_page_id_eec52587_fk_events_eventpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpa_page_id_eec52587_fk_events_eventpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagecarouselitem @@ -6497,7 +6853,7 @@ ALTER TABLE ONLY events_eventpagecarouselitem -- --- Name: events_eventpage_page_ptr_id_c6701067_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpage_page_ptr_id_c6701067_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpage @@ -6505,7 +6861,7 @@ ALTER TABLE ONLY events_eventpage -- --- Name: events_eventpageca_link_page_id_388fd2d0_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpageca_link_page_id_388fd2d0_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagecarouselitem @@ -6513,7 +6869,7 @@ ALTER TABLE ONLY events_eventpagecarouselitem -- --- Name: events_eventpagecar_image_id_fb4b4dcd_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagecar_image_id_fb4b4dcd_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagecarouselitem @@ -6521,7 +6877,7 @@ ALTER TABLE ONLY events_eventpagecarouselitem -- --- Name: events_eventpagere_link_page_id_378ea87f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagere_link_page_id_378ea87f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagerelatedlink @@ -6529,7 +6885,7 @@ ALTER TABLE ONLY events_eventpagerelatedlink -- --- Name: events_eventpagesp_link_page_id_f4549a64_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagesp_link_page_id_f4549a64_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagespeaker @@ -6537,7 +6893,7 @@ ALTER TABLE ONLY events_eventpagespeaker -- --- Name: events_eventpagespe_image_id_f48678eb_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: events_eventpagespe_image_id_f48678eb_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY events_eventpagespeaker @@ -6545,7 +6901,7 @@ ALTER TABLE ONLY events_eventpagespeaker -- --- Name: f30176145dc37361fd7bcfd229367ca4; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: f30176145dc37361fd7bcfd229367ca4; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_gallerypagetag @@ -6553,7 +6909,15 @@ ALTER TABLE ONLY photo_gallery_gallerypagetag -- --- Name: pages_adve_link_document_id_d804b3dc_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: feeds_feedsappsettings_site_id_c9055d51_fk_wagtailcore_site_id; Type: FK CONSTRAINT; Schema: public; Owner: puri +-- + +ALTER TABLE ONLY feeds_feedsappsettings + ADD CONSTRAINT feeds_feedsappsettings_site_id_c9055d51_fk_wagtailcore_site_id FOREIGN KEY (site_id) REFERENCES wagtailcore_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pages_adve_link_document_id_d804b3dc_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_advert @@ -6561,7 +6925,7 @@ ALTER TABLE ONLY pages_advert -- --- Name: pages_advert_image_id_c3df93a1_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_advert_image_id_c3df93a1_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_advert @@ -6569,7 +6933,7 @@ ALTER TABLE ONLY pages_advert -- --- Name: pages_advert_link_page_id_ae00fe23_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_advert_link_page_id_ae00fe23_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_advert @@ -6577,7 +6941,7 @@ ALTER TABLE ONLY pages_advert -- --- Name: pages_advert_page_id_21245cc0_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_advert_page_id_21245cc0_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_advert @@ -6585,7 +6949,7 @@ ALTER TABLE ONLY pages_advert -- --- Name: pages_cont_link_document_id_0b825445_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_cont_link_document_id_0b825445_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_contentblock @@ -6593,7 +6957,7 @@ ALTER TABLE ONLY pages_contentblock -- --- Name: pages_contentblock_link_page_id_84f7b516_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_contentblock_link_page_id_84f7b516_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_contentblock @@ -6601,7 +6965,7 @@ ALTER TABLE ONLY pages_contentblock -- --- Name: pages_contentblock_page_id_d29244b9_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_contentblock_page_id_d29244b9_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_contentblock @@ -6609,7 +6973,7 @@ ALTER TABLE ONLY pages_contentblock -- --- Name: pages_faqspage_page_ptr_id_15a8d513_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_faqspage_page_ptr_id_15a8d513_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_faqspage @@ -6617,7 +6981,7 @@ ALTER TABLE ONLY pages_faqspage -- --- Name: pages_home_link_document_id_1364f817_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_home_link_document_id_1364f817_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagerelatedlink @@ -6625,7 +6989,7 @@ ALTER TABLE ONLY pages_homepagerelatedlink -- --- Name: pages_home_link_document_id_902c9e7d_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_home_link_document_id_902c9e7d_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecarouselitem @@ -6633,7 +6997,7 @@ ALTER TABLE ONLY pages_homepagecarouselitem -- --- Name: pages_home_link_document_id_a2552580_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_home_link_document_id_a2552580_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecontentitem @@ -6641,7 +7005,7 @@ ALTER TABLE ONLY pages_homepagecontentitem -- --- Name: pages_homepage_page_ptr_id_5b805d74_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepage_page_ptr_id_5b805d74_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepage @@ -6649,7 +7013,7 @@ ALTER TABLE ONLY pages_homepage -- --- Name: pages_homepageca_page_id_915b43c4_fk_pages_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepageca_page_id_915b43c4_fk_pages_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecarouselitem @@ -6657,7 +7021,7 @@ ALTER TABLE ONLY pages_homepagecarouselitem -- --- Name: pages_homepagecaro_link_page_id_799b1594_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagecaro_link_page_id_799b1594_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecarouselitem @@ -6665,7 +7029,7 @@ ALTER TABLE ONLY pages_homepagecarouselitem -- --- Name: pages_homepagecarou_image_id_45b3424e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagecarou_image_id_45b3424e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecarouselitem @@ -6673,7 +7037,7 @@ ALTER TABLE ONLY pages_homepagecarouselitem -- --- Name: pages_homepageco_page_id_8b646417_fk_pages_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepageco_page_id_8b646417_fk_pages_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecontentitem @@ -6681,7 +7045,7 @@ ALTER TABLE ONLY pages_homepagecontentitem -- --- Name: pages_homepagecont_link_page_id_9aa371ca_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagecont_link_page_id_9aa371ca_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecontentitem @@ -6689,7 +7053,7 @@ ALTER TABLE ONLY pages_homepagecontentitem -- --- Name: pages_homepageconte_image_id_85ec39f6_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepageconte_image_id_85ec39f6_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagecontentitem @@ -6697,7 +7061,7 @@ ALTER TABLE ONLY pages_homepagecontentitem -- --- Name: pages_homepagere_page_id_b0a3517a_fk_pages_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagere_page_id_b0a3517a_fk_pages_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagerelatedlink @@ -6705,7 +7069,7 @@ ALTER TABLE ONLY pages_homepagerelatedlink -- --- Name: pages_homepagerela_link_page_id_87ab8ff4_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_homepagerela_link_page_id_87ab8ff4_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_homepagerelatedlink @@ -6713,7 +7077,7 @@ ALTER TABLE ONLY pages_homepagerelatedlink -- --- Name: pages_s_page_id_d0df6fde_fk_pages_standardindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_s_page_id_d0df6fde_fk_pages_standardindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardindexpagerelatedlink @@ -6721,7 +7085,7 @@ ALTER TABLE ONLY pages_standardindexpagerelatedlink -- --- Name: pages_socialmediasettin_site_id_48a3ffb9_fk_wagtailcore_site_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_socialmediasettin_site_id_48a3ffb9_fk_wagtailcore_site_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_socialmediasettings @@ -6729,7 +7093,7 @@ ALTER TABLE ONLY pages_socialmediasettings -- --- Name: pages_stan_link_document_id_1e821170_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_stan_link_document_id_1e821170_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagecarouselitem @@ -6737,7 +7101,7 @@ ALTER TABLE ONLY pages_standardpagecarouselitem -- --- Name: pages_stan_link_document_id_ab0a20f8_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_stan_link_document_id_ab0a20f8_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardindexpagerelatedlink @@ -6745,7 +7109,7 @@ ALTER TABLE ONLY pages_standardindexpagerelatedlink -- --- Name: pages_stan_link_document_id_c02096ae_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_stan_link_document_id_c02096ae_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagerelatedlink @@ -6753,7 +7117,7 @@ ALTER TABLE ONLY pages_standardpagerelatedlink -- --- Name: pages_standa_page_id_1c982abb_fk_pages_standardpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standa_page_id_1c982abb_fk_pages_standardpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagerelatedlink @@ -6761,7 +7125,7 @@ ALTER TABLE ONLY pages_standardpagerelatedlink -- --- Name: pages_standa_page_id_ab87f566_fk_pages_standardpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standa_page_id_ab87f566_fk_pages_standardpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagecarouselitem @@ -6769,7 +7133,7 @@ ALTER TABLE ONLY pages_standardpagecarouselitem -- --- Name: pages_standard_feed_image_id_41c2eccd_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standard_feed_image_id_41c2eccd_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpage @@ -6777,7 +7141,7 @@ ALTER TABLE ONLY pages_standardpage -- --- Name: pages_standard_feed_image_id_a65c3494_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standard_feed_image_id_a65c3494_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardindexpage @@ -6785,7 +7149,7 @@ ALTER TABLE ONLY pages_standardindexpage -- --- Name: pages_standardinde_link_page_id_8ad61c91_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardinde_link_page_id_8ad61c91_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardindexpagerelatedlink @@ -6793,7 +7157,7 @@ ALTER TABLE ONLY pages_standardindexpagerelatedlink -- --- Name: pages_standardindex_page_ptr_id_70a0d3dc_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardindex_page_ptr_id_70a0d3dc_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardindexpage @@ -6801,7 +7165,7 @@ ALTER TABLE ONLY pages_standardindexpage -- --- Name: pages_standardpage_link_page_id_28e4472a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpage_link_page_id_28e4472a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagecarouselitem @@ -6809,7 +7173,7 @@ ALTER TABLE ONLY pages_standardpagecarouselitem -- --- Name: pages_standardpage_link_page_id_29341951_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpage_link_page_id_29341951_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagerelatedlink @@ -6817,7 +7181,7 @@ ALTER TABLE ONLY pages_standardpagerelatedlink -- --- Name: pages_standardpage_page_ptr_id_8d8149d9_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpage_page_ptr_id_8d8149d9_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpage @@ -6825,7 +7189,7 @@ ALTER TABLE ONLY pages_standardpage -- --- Name: pages_standardpagec_image_id_8d81528b_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_standardpagec_image_id_8d81528b_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_standardpagecarouselitem @@ -6833,7 +7197,7 @@ ALTER TABLE ONLY pages_standardpagecarouselitem -- --- Name: pages_test_link_document_id_3c7b9377_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_test_link_document_id_3c7b9377_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_testimonial @@ -6841,7 +7205,7 @@ ALTER TABLE ONLY pages_testimonial -- --- Name: pages_testimonial_link_page_id_70b58081_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_testimonial_link_page_id_70b58081_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_testimonial @@ -6849,7 +7213,7 @@ ALTER TABLE ONLY pages_testimonial -- --- Name: pages_testimonial_page_id_aedaf53f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_testimonial_page_id_aedaf53f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_testimonial @@ -6857,7 +7221,7 @@ ALTER TABLE ONLY pages_testimonial -- --- Name: pages_testimonial_photo_id_29360729_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: pages_testimonial_photo_id_29360729_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY pages_testimonial @@ -6865,7 +7229,7 @@ ALTER TABLE ONLY pages_testimonial -- --- Name: peo_content_object_id_219202ed_fk_people_personpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: peo_content_object_id_219202ed_fk_people_personpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagetag @@ -6873,7 +7237,7 @@ ALTER TABLE ONLY people_personpagetag -- --- Name: people_p_page_id_9074b56c_fk_people_personindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_p_page_id_9074b56c_fk_people_personindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personindexpagerelatedlink @@ -6881,7 +7245,7 @@ ALTER TABLE ONLY people_personindexpagerelatedlink -- --- Name: people_per_link_document_id_6fb113f2_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_per_link_document_id_6fb113f2_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personindexpagerelatedlink @@ -6889,7 +7253,7 @@ ALTER TABLE ONLY people_personindexpagerelatedlink -- --- Name: people_per_link_document_id_d330a140_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_per_link_document_id_d330a140_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagerelatedlink @@ -6897,7 +7261,7 @@ ALTER TABLE ONLY people_personpagerelatedlink -- --- Name: people_person_page_id_37654932_fk_people_personpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_person_page_id_37654932_fk_people_personpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagerelatedlink @@ -6905,7 +7269,7 @@ ALTER TABLE ONLY people_personpagerelatedlink -- --- Name: people_personindex_link_page_id_9a45cdb2_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personindex_link_page_id_9a45cdb2_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personindexpagerelatedlink @@ -6913,7 +7277,7 @@ ALTER TABLE ONLY people_personindexpagerelatedlink -- --- Name: people_personindexp_page_ptr_id_2aafa812_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personindexp_page_ptr_id_2aafa812_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personindexpage @@ -6921,7 +7285,7 @@ ALTER TABLE ONLY people_personindexpage -- --- Name: people_personp_feed_image_id_c8aaeda0_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personp_feed_image_id_c8aaeda0_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpage @@ -6929,7 +7293,7 @@ ALTER TABLE ONLY people_personpage -- --- Name: people_personpage_image_id_f13def2e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpage_image_id_f13def2e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpage @@ -6937,7 +7301,7 @@ ALTER TABLE ONLY people_personpage -- --- Name: people_personpage_page_ptr_id_0f038b98_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpage_page_ptr_id_0f038b98_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpage @@ -6945,7 +7309,7 @@ ALTER TABLE ONLY people_personpage -- --- Name: people_personpage_role_id_534a1c51_fk_people_personrole_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpage_role_id_534a1c51_fk_people_personrole_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpage @@ -6953,7 +7317,7 @@ ALTER TABLE ONLY people_personpage -- --- Name: people_personpager_link_page_id_1f38718a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpager_link_page_id_1f38718a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagerelatedlink @@ -6961,7 +7325,7 @@ ALTER TABLE ONLY people_personpagerelatedlink -- --- Name: people_personpagetag_tag_id_e0d52d9d_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: people_personpagetag_tag_id_e0d52d9d_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY people_personpagetag @@ -6969,7 +7333,7 @@ ALTER TABLE ONLY people_personpagetag -- --- Name: photo_gallery__feed_image_id_2efaf002_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery__feed_image_id_2efaf002_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_gallerypage @@ -6977,7 +7341,7 @@ ALTER TABLE ONLY photo_gallery_gallerypage -- --- Name: photo_gallery__feed_image_id_8fa24cf4_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery__feed_image_id_8fa24cf4_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_galleryindexpage @@ -6985,7 +7349,7 @@ ALTER TABLE ONLY photo_gallery_galleryindexpage -- --- Name: photo_gallery_galle_page_ptr_id_11be90ff_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery_galle_page_ptr_id_11be90ff_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_gallerypage @@ -6993,7 +7357,7 @@ ALTER TABLE ONLY photo_gallery_gallerypage -- --- Name: photo_gallery_galle_page_ptr_id_44a4f590_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery_galle_page_ptr_id_44a4f590_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_galleryindexpage @@ -7001,7 +7365,7 @@ ALTER TABLE ONLY photo_gallery_galleryindexpage -- --- Name: photo_gallery_gallerypagetag_tag_id_61ab4280_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: photo_gallery_gallerypagetag_tag_id_61ab4280_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY photo_gallery_gallerypagetag @@ -7009,7 +7373,7 @@ ALTER TABLE ONLY photo_gallery_gallerypagetag -- --- Name: produ_page_id_320a0204_fk_products_productindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: produ_page_id_320a0204_fk_products_productindexpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productindexpagerelatedlink @@ -7017,7 +7381,7 @@ ALTER TABLE ONLY products_productindexpagerelatedlink -- --- Name: products_p_link_document_id_7589e588_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_p_link_document_id_7589e588_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productindexpagerelatedlink @@ -7025,7 +7389,7 @@ ALTER TABLE ONLY products_productindexpagerelatedlink -- --- Name: products_p_link_document_id_d6cd7769_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_p_link_document_id_d6cd7769_fk_wagtaildocs_document_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagerelatedlink @@ -7033,7 +7397,7 @@ ALTER TABLE ONLY products_productpagerelatedlink -- --- Name: products_p_page_id_855d9c33_fk_products_productpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_p_page_id_855d9c33_fk_products_productpage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagerelatedlink @@ -7041,7 +7405,7 @@ ALTER TABLE ONLY products_productpagerelatedlink -- --- Name: products_produ_feed_image_id_fc5dc22b_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_produ_feed_image_id_fc5dc22b_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpage @@ -7049,7 +7413,7 @@ ALTER TABLE ONLY products_productpage -- --- Name: products_productin_link_page_id_cc9048a1_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_productin_link_page_id_cc9048a1_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productindexpagerelatedlink @@ -7057,7 +7421,7 @@ ALTER TABLE ONLY products_productindexpagerelatedlink -- --- Name: products_productind_page_ptr_id_896e5596_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_productind_page_ptr_id_896e5596_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productindexpage @@ -7065,7 +7429,7 @@ ALTER TABLE ONLY products_productindexpage -- --- Name: products_productpa_link_page_id_39628d87_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpa_link_page_id_39628d87_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagerelatedlink @@ -7073,7 +7437,7 @@ ALTER TABLE ONLY products_productpagerelatedlink -- --- Name: products_productpag_image_id_b4d3829e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpag_image_id_b4d3829e_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpage @@ -7081,7 +7445,7 @@ ALTER TABLE ONLY products_productpage -- --- Name: products_productpag_page_ptr_id_d4d9ff65_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpag_page_ptr_id_d4d9ff65_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpage @@ -7089,7 +7453,7 @@ ALTER TABLE ONLY products_productpage -- --- Name: products_productpagetag_tag_id_f0c81f66_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: products_productpagetag_tag_id_f0c81f66_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY products_productpagetag @@ -7097,7 +7461,7 @@ ALTER TABLE ONLY products_productpagetag -- --- Name: taggit_tagge_content_type_id_9957a03c_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: taggit_tagge_content_type_id_9957a03c_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY taggit_taggeditem @@ -7105,7 +7469,7 @@ ALTER TABLE ONLY taggit_taggeditem -- --- Name: taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY taggit_taggeditem @@ -7113,7 +7477,7 @@ ALTER TABLE ONLY taggit_taggeditem -- --- Name: wagtailcore__content_type_id_c28424df_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore__content_type_id_c28424df_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_page @@ -7121,7 +7485,7 @@ ALTER TABLE ONLY wagtailcore_page -- --- Name: wagtailcore_collection_id_5423575a_fk_wagtailcore_collection_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_collection_id_5423575a_fk_wagtailcore_collection_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_groupcollectionpermission @@ -7129,7 +7493,7 @@ ALTER TABLE ONLY wagtailcore_groupcollectionpermission -- --- Name: wagtailcore_groupc_permission_id_1b626275_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_groupc_permission_id_1b626275_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_groupcollectionpermission @@ -7137,7 +7501,7 @@ ALTER TABLE ONLY wagtailcore_groupcollectionpermission -- --- Name: wagtailcore_groupcollectionp_group_id_05d61460_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_groupcollectionp_group_id_05d61460_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_groupcollectionpermission @@ -7145,7 +7509,7 @@ ALTER TABLE ONLY wagtailcore_groupcollectionpermission -- --- Name: wagtailcore_grouppagepe_page_id_710b114a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepe_page_id_710b114a_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_grouppagepermission @@ -7153,7 +7517,7 @@ ALTER TABLE ONLY wagtailcore_grouppagepermission -- --- Name: wagtailcore_grouppagepermiss_group_id_fc07e671_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_grouppagepermiss_group_id_fc07e671_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_grouppagepermission @@ -7161,7 +7525,7 @@ ALTER TABLE ONLY wagtailcore_grouppagepermission -- --- Name: wagtailcore_page_owner_id_fbf7c332_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_page_owner_id_fbf7c332_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_page @@ -7169,7 +7533,7 @@ ALTER TABLE ONLY wagtailcore_page -- --- Name: wagtailcore_pagerevisio_page_id_d421cc1d_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_pagerevisio_page_id_d421cc1d_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_pagerevision @@ -7177,7 +7541,7 @@ ALTER TABLE ONLY wagtailcore_pagerevision -- --- Name: wagtailcore_pagerevision_user_id_2409d2f4_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_pagerevision_user_id_2409d2f4_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_pagerevision @@ -7185,7 +7549,7 @@ ALTER TABLE ONLY wagtailcore_pagerevision -- --- Name: wagtailcore_pageviewres_page_id_15a8bea6_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_pageviewres_page_id_15a8bea6_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_pageviewrestriction @@ -7193,7 +7557,7 @@ ALTER TABLE ONLY wagtailcore_pageviewrestriction -- --- Name: wagtailcore_site_root_page_id_e02fb95c_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailcore_site_root_page_id_e02fb95c_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailcore_site @@ -7201,7 +7565,7 @@ ALTER TABLE ONLY wagtailcore_site -- --- Name: wagtaildocs_collection_id_23881625_fk_wagtailcore_collection_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtaildocs_collection_id_23881625_fk_wagtailcore_collection_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtaildocs_document @@ -7209,7 +7573,7 @@ ALTER TABLE ONLY wagtaildocs_document -- --- Name: wagtaildocs_docume_uploaded_by_user_id_17258b41_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtaildocs_docume_uploaded_by_user_id_17258b41_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtaildocs_document @@ -7217,7 +7581,7 @@ ALTER TABLE ONLY wagtaildocs_document -- --- Name: wagtailforms_formsubmis_page_id_e48e93e7_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailforms_formsubmis_page_id_e48e93e7_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailforms_formsubmission @@ -7225,7 +7589,7 @@ ALTER TABLE ONLY wagtailforms_formsubmission -- --- Name: wagtailimag_collection_id_c2f8af7e_fk_wagtailcore_collection_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimag_collection_id_c2f8af7e_fk_wagtailcore_collection_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_image @@ -7233,7 +7597,7 @@ ALTER TABLE ONLY wagtailimages_image -- --- Name: wagtailimages_imag_uploaded_by_user_id_5d73dc75_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_imag_uploaded_by_user_id_5d73dc75_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_image @@ -7241,7 +7605,7 @@ ALTER TABLE ONLY wagtailimages_image -- --- Name: wagtailimages_ren_filter_id_7fc52567_fk_wagtailimages_filter_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_ren_filter_id_7fc52567_fk_wagtailimages_filter_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_rendition @@ -7249,7 +7613,7 @@ ALTER TABLE ONLY wagtailimages_rendition -- --- Name: wagtailimages_rendi_image_id_3e1fd774_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailimages_rendi_image_id_3e1fd774_fk_wagtailimages_image_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailimages_rendition @@ -7257,7 +7621,7 @@ ALTER TABLE ONLY wagtailimages_rendition -- --- Name: wagtailredirec_redirect_page_id_b5728a8f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailredirec_redirect_page_id_b5728a8f_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailredirects_redirect @@ -7265,7 +7629,7 @@ ALTER TABLE ONLY wagtailredirects_redirect -- --- Name: wagtailredirects_redire_site_id_780a0e1e_fk_wagtailcore_site_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailredirects_redire_site_id_780a0e1e_fk_wagtailcore_site_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailredirects_redirect @@ -7273,7 +7637,7 @@ ALTER TABLE ONLY wagtailredirects_redirect -- --- Name: wagtailsearch_edito_query_id_c6eee4a0_fk_wagtailsearch_query_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_edito_query_id_c6eee4a0_fk_wagtailsearch_query_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion @@ -7281,7 +7645,7 @@ ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion -- --- Name: wagtailsearch_query_query_id_2185994b_fk_wagtailsearch_query_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearch_query_query_id_2185994b_fk_wagtailsearch_query_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailsearch_querydailyhits @@ -7289,7 +7653,7 @@ ALTER TABLE ONLY wagtailsearch_querydailyhits -- --- Name: wagtailsearchpromotions_page_id_71920f17_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailsearchpromotions_page_id_71920f17_fk_wagtailcore_page_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion @@ -7297,13 +7661,23 @@ ALTER TABLE ONLY wagtailsearchpromotions_searchpromotion -- --- Name: wagtailusers_userprofile_user_id_59c92331_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: wagtailusers_userprofile_user_id_59c92331_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: puri -- ALTER TABLE ONLY wagtailusers_userprofile ADD CONSTRAINT wagtailusers_userprofile_user_id_59c92331_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED; +-- +-- Name: public; Type: ACL; Schema: -; Owner: postgres +-- + +REVOKE ALL ON SCHEMA public FROM PUBLIC; +REVOKE ALL ON SCHEMA public FROM postgres; +GRANT ALL ON SCHEMA public TO postgres; +GRANT ALL ON SCHEMA public TO PUBLIC; + + -- -- PostgreSQL database dump complete -- diff --git a/{{cookiecutter.repo_name}}/feeds/feeds.py b/{{cookiecutter.repo_name}}/feeds/feeds.py index b75f0fb7..280570c9 100644 --- a/{{cookiecutter.repo_name}}/feeds/feeds.py +++ b/{{cookiecutter.repo_name}}/feeds/feeds.py @@ -3,7 +3,6 @@ from django.utils.feedgenerator import Rss201rev2Feed from wagtail.wagtailimages.models import Filter from wagtail.wagtailcore.models import Site -from django.conf import settings from datetime import datetime, time from django.utils.html import strip_tags from django.apps import apps @@ -15,10 +14,17 @@ from urllib.parse import urljoin from django.utils import feedgenerator -feed_app_label = getattr(settings, "FEED_APP_LABEL") -feed_model_name = getattr(settings, "FEED_MODEL_NAME") -feed_model = apps.get_model(app_label=feed_app_label, - model_name=feed_model_name) +from .models import FeedsAppSettings + +feed_app_settings = FeedsAppSettings.for_site( + site=Site.objects.get(is_default_site=True)) +feed_app_label = feed_app_settings.feed_app_label +feed_model_name = feed_app_settings.feed_model_name +try: + feed_model = apps.get_model(app_label=feed_app_label, + model_name=feed_model_name) +except: + feed_model = None class CustomFeedGenerator(Rss201rev2Feed): @@ -53,15 +59,15 @@ class BasicFeed(Feed): feed_type = feedgenerator.Rss201rev2Feed # The RSS information that gets shown at the top of the feed. - title = getattr(settings, "FEED_TITLE", "") - link = getattr(settings, "FEED_LINK", "") - description = getattr(settings, "FEED_DESCRIPTION", "Blog Feed") + title = feed_app_settings.feed_title + link = feed_app_settings.feed_link + description = feed_app_settings.feed_description - author_email = getattr(settings, "FEED_AUTHOR_EMAIL", "") - author_link = getattr(settings, "FEED_AUTHOR_LINK", "") + author_email = feed_app_settings.feed_author_email + author_link = feed_app_settings.feed_author_link - item_description_field = getattr(settings, "FEED_ITEM_DESCRIPTION_FIELD") - item_content_field = getattr(settings, "FEED_ITEM_CONTENT_FIELD") + item_description_field = feed_app_settings.feed_item_description_field + item_content_field = feed_app_settings.feed_item_content_field def items(self): return feed_model.objects.order_by('-date').live() @@ -82,15 +88,15 @@ class ExtendedFeed(Feed): feed_type = CustomFeedGenerator # The RSS information that gets shown at the top of the feed. - title = getattr(settings, "FEED_TITLE", "") - link = getattr(settings, "FEED_LINK", "") - description = getattr(settings, "FEED_DESCRIPTION", "Blog Feed") + title = feed_app_settings.feed_title + link = feed_app_settings.feed_link + description = feed_app_settings.feed_description - author_email = getattr(settings, "FEED_AUTHOR_EMAIL", "") - author_link = getattr(settings, "FEED_AUTHOR_LINK", "") + author_email = feed_app_settings.feed_author_email + author_link = feed_app_settings.feed_author_link - item_description_field = getattr(settings, "FEED_ITEM_DESCRIPTION_FIELD") - item_content_field = getattr(settings, "FEED_ITEM_CONTENT_FIELD") + item_description_field = feed_app_settings.feed_item_description_field + item_content_field = feed_app_settings.feed_item_content_field def get_site_url(self): site = Site.objects.get(is_default_site=True) @@ -113,7 +119,7 @@ def item_link(self, item): return item.full_url def item_author_name(self, item): - return u'Jonh Blog' + pass def item_extra_kwargs(self, item): """ diff --git a/{{cookiecutter.repo_name}}/feeds/migrations/0001_initial.py b/{{cookiecutter.repo_name}}/feeds/migrations/0001_initial.py new file mode 100644 index 00000000..a1bfe30e --- /dev/null +++ b/{{cookiecutter.repo_name}}/feeds/migrations/0001_initial.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.7 on 2016-06-18 12:31 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('wagtailcore', '0028_merge'), + ] + + operations = [ + migrations.CreateModel( + name='FeedsAppSettings', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('feed_app_label', models.CharField(help_text=b'blog App whose Feed is to be generated', max_length=255)), + ('feed_model_name', models.CharField(help_text=b'Model to be used for feed generation', max_length=255)), + ('site', models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, to='wagtailcore.Site')), + ], + options={ + 'abstract': False, + }, + ), + ] diff --git a/{{cookiecutter.repo_name}}/feeds/migrations/0002_auto_20160620_1155.py b/{{cookiecutter.repo_name}}/feeds/migrations/0002_auto_20160620_1155.py new file mode 100644 index 00000000..dcd0288e --- /dev/null +++ b/{{cookiecutter.repo_name}}/feeds/migrations/0002_auto_20160620_1155.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.7 on 2016-06-20 11:55 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('feeds', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='feedsappsettings', + name='feed_author_email', + field=models.EmailField(blank=True, help_text=b'Email of author', max_length=255), + ), + migrations.AddField( + model_name='feedsappsettings', + name='feed_author_link', + field=models.URLField(blank=True, help_text=b'Link of author', max_length=255), + ), + migrations.AddField( + model_name='feedsappsettings', + name='feed_description', + field=models.CharField(blank=True, help_text=b'Description of field', max_length=255), + ), + migrations.AddField( + model_name='feedsappsettings', + name='feed_item_content_field', + field=models.CharField(blank=True, help_text=b'Content Field for feed item', max_length=255), + ), + migrations.AddField( + model_name='feedsappsettings', + name='feed_item_description_field', + field=models.CharField(blank=True, help_text=b'Description field for feed item', max_length=255), + ), + migrations.AddField( + model_name='feedsappsettings', + name='feed_link', + field=models.URLField(blank=True, help_text=b'link for Feed', max_length=255), + ), + migrations.AddField( + model_name='feedsappsettings', + name='feed_title', + field=models.CharField(blank=True, help_text=b'Title of Feed', max_length=255), + ), + ] diff --git a/{{cookiecutter.repo_name}}/feeds/migrations/0003_auto_20160620_1301.py b/{{cookiecutter.repo_name}}/feeds/migrations/0003_auto_20160620_1301.py new file mode 100644 index 00000000..558fec87 --- /dev/null +++ b/{{cookiecutter.repo_name}}/feeds/migrations/0003_auto_20160620_1301.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.7 on 2016-06-20 13:01 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('feeds', '0002_auto_20160620_1155'), + ] + + operations = [ + migrations.AlterField( + model_name='feedsappsettings', + name='feed_app_label', + field=models.CharField(blank=True, help_text=b'blog App whose Feed is to be generated', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_author_email', + field=models.EmailField(blank=True, help_text=b'Email of author', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_author_link', + field=models.URLField(blank=True, help_text=b'Link of author', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_description', + field=models.CharField(blank=True, help_text=b'Description of field', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_item_content_field', + field=models.CharField(blank=True, help_text=b'Content Field for feed item', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_item_description_field', + field=models.CharField(blank=True, help_text=b'Description field for feed item', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_link', + field=models.URLField(blank=True, help_text=b'link for Feed', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_model_name', + field=models.CharField(blank=True, help_text=b'Model to be used for feed generation', max_length=255, null=True), + ), + migrations.AlterField( + model_name='feedsappsettings', + name='feed_title', + field=models.CharField(blank=True, help_text=b'Title of Feed', max_length=255, null=True), + ), + ] diff --git a/{{cookiecutter.repo_name}}/feeds/models.py b/{{cookiecutter.repo_name}}/feeds/models.py index 71a83623..c44848e3 100644 --- a/{{cookiecutter.repo_name}}/feeds/models.py +++ b/{{cookiecutter.repo_name}}/feeds/models.py @@ -1,3 +1,33 @@ from django.db import models +from wagtail.contrib.settings.models import BaseSetting, register_setting + # Create your models here. + + +@register_setting +class FeedsAppSettings(BaseSetting): + feed_app_label = models.CharField( + max_length=255, help_text='blog App whose Feed is to be generated', + null=True, blank=True) + feed_model_name = models.CharField( + max_length=255, help_text='Model to be used for feed generation', + null=True, blank=True) + feed_title = models.CharField( + max_length=255, help_text='Title of Feed', null=True, blank=True) + feed_link = models.URLField( + max_length=255, help_text='link for Feed', null=True, blank=True) + feed_description = models.CharField( + max_length=255, help_text='Description of field', null=True, + blank=True) + feed_author_email = models.EmailField( + max_length=255, help_text='Email of author', null=True, blank=True) + feed_author_link = models.URLField( + max_length=255, help_text='Link of author', null=True, blank=True) + + feed_item_description_field = models.CharField( + max_length=255, help_text='Description field for feed item', + null=True, blank=True) + feed_item_content_field = models.CharField( + max_length=255, help_text='Content Field for feed item', + null=True, blank=True) diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/settings/base.py b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/settings/base.py index abdca138..ec699b7a 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/settings/base.py +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/settings/base.py @@ -76,7 +76,7 @@ def get_env_variable(var_name): 'wagalytics', 'wagtailfontawesome', - + 'utils', 'pages', 'blog', @@ -86,6 +86,7 @@ def get_env_variable(var_name): 'photo_gallery', 'products', 'documents_gallery', + 'feeds', ) MIDDLEWARE_CLASSES = ( @@ -183,19 +184,6 @@ def get_env_variable(var_name): COMPRESS_OFFLINE = True -# Feeds app for Wagtail CMS -FEED_APP_LABEL = 'blog' -FEED_MODEL_NAME = 'BlogPage' -FEED_ITEM_DESCRIPTION_FIELD = 'intro' -FEED_ITEM_CONTENT_FIELD = 'body' - -FEED_TITLE = 'From the Desk of John Blog' -FEED_LINK = '/news/' -FEED_DESCRIPTION = "News and views from around the Web" -FEED_AUTHOR_EMAIL = 'john@johnblog.com' -FEED_AUTHOR_LINK = 'https://johnblog.com' - - # Settings for wagalytics GA_KEY_FILEPATH = '' GA_VIEW_ID = '' From 2126447675bd8a1d13b9fdb3845a74d6ddc47e57 Mon Sep 17 00:00:00 2001 From: Parbhat Puri Date: Mon, 20 Jun 2016 18:57:35 +0530 Subject: [PATCH 2/2] requirements updated --- {{cookiecutter.repo_name}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/requirements/base.txt b/{{cookiecutter.repo_name}}/requirements/base.txt index 8d78ef49..c87b6dfa 100644 --- a/{{cookiecutter.repo_name}}/requirements/base.txt +++ b/{{cookiecutter.repo_name}}/requirements/base.txt @@ -7,4 +7,4 @@ celery==3.1.23 django-libsass==0.7 libsass==0.11.1 ansible==2.1.0.0 -wagalytics==0.5 \ No newline at end of file +wagalytics==0.6 \ No newline at end of file