Edit file File name : pgbackup.sql Content :PGDMP | shopify 16.2 16.2 2 E 0 0 ENCODING ENCODING SET client_encoding = 'UTF8'; false F 0 0 STDSTRINGS STDSTRINGS ( SET standard_conforming_strings = 'on'; false G 0 0 SEARCHPATH SEARCHPATH 8 SELECT pg_catalog.set_config('search_path', '', false); false H 1262 16388 shopify DATABASE i CREATE DATABASE shopify WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'C'; DROP DATABASE shopify; postgres false � 1259 16390 failed_jobs TABLE CREATE TABLE public.failed_jobs ( id integer NOT NULL, uuid character varying(191) NOT NULL, connection text NOT NULL, queue text NOT NULL, payload text NOT NULL, exception text NOT NULL, failed_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); DROP TABLE public.failed_jobs; public heap postgres false � 1259 16389 failed_jobs_id_seq SEQUENCE � CREATE SEQUENCE public.failed_jobs_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ) DROP SEQUENCE public.failed_jobs_id_seq; public postgres false 216 I 0 0 failed_jobs_id_seq SEQUENCE OWNED BY I ALTER SEQUENCE public.failed_jobs_id_seq OWNED BY public.failed_jobs.id; public postgres false 215 � 1259 16400 migrations TABLE � CREATE TABLE public.migrations ( id integer NOT NULL, migration character varying(191) NOT NULL, batch integer NOT NULL ); DROP TABLE public.migrations; public heap postgres false � 1259 16399 migrations_id_seq SEQUENCE � CREATE SEQUENCE public.migrations_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ( DROP SEQUENCE public.migrations_id_seq; public postgres false 218 J 0 0 migrations_id_seq SEQUENCE OWNED BY G ALTER SEQUENCE public.migrations_id_seq OWNED BY public.migrations.id; public postgres false 217 � 1259 16406 password_reset_tokens TABLE � CREATE TABLE public.password_reset_tokens ( email character varying(191) NOT NULL, token character varying(191) NOT NULL, created_at timestamp without time zone ); ) DROP TABLE public.password_reset_tokens; public heap postgres false � 1259 16412 personal_access_tokens TABLE � CREATE TABLE public.personal_access_tokens ( id integer NOT NULL, tokenable_type character varying(191) NOT NULL, tokenable_id integer NOT NULL, name character varying(191) NOT NULL, token character varying(64) NOT NULL, abilities text, last_used_at timestamp without time zone, expires_at timestamp without time zone, created_at timestamp without time zone, updated_at timestamp without time zone ); * DROP TABLE public.personal_access_tokens; public heap postgres false � 1259 16411 personal_access_tokens_id_seq SEQUENCE � CREATE SEQUENCE public.personal_access_tokens_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; 4 DROP SEQUENCE public.personal_access_tokens_id_seq; public postgres false 221 K 0 0 personal_access_tokens_id_seq SEQUENCE OWNED BY _ ALTER SEQUENCE public.personal_access_tokens_id_seq OWNED BY public.personal_access_tokens.id; public postgres false 220 � 1259 16421 shopify_user TABLE CREATE TABLE public.shopify_user ( id integer NOT NULL, merchant_id text NOT NULL, terminal_id text NOT NULL, secret_key text NOT NULL, hmac text NOT NULL, shop text NOT NULL, embedded text NOT NULL, modetoggle text NOT NULL ); DROP TABLE public.shopify_user; public heap postgres false � 1259 16420 shopify_user_id_seq SEQUENCE � CREATE SEQUENCE public.shopify_user_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; * DROP SEQUENCE public.shopify_user_id_seq; public postgres false 223 L 0 0 shopify_user_id_seq SEQUENCE OWNED BY K ALTER SEQUENCE public.shopify_user_id_seq OWNED BY public.shopify_user.id; public postgres false 222 � 1259 16430 shops TABLE � CREATE TABLE public.shops ( id integer NOT NULL, shop_name character varying(191) NOT NULL, api_token character varying(191) NOT NULL, created_at timestamp without time zone, updated_at timestamp without time zone, merchant_id character varying(191), merchant_name character varying(191), terminal_id character varying(191), secure_hash character varying(191) ); DROP TABLE public.shops; public heap postgres false � 1259 16429 shops_id_seq SEQUENCE � CREATE SEQUENCE public.shops_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; # DROP SEQUENCE public.shops_id_seq; public postgres false 225 M 0 0 shops_id_seq SEQUENCE OWNED BY = ALTER SEQUENCE public.shops_id_seq OWNED BY public.shops.id; public postgres false 224 � 1259 16439 users TABLE p CREATE TABLE public.users ( id integer NOT NULL, name character varying(191) NOT NULL, email character varying(191) NOT NULL, email_verified_at timestamp without time zone, password character varying(191) NOT NULL, remember_token character varying(100), created_at timestamp without time zone, updated_at timestamp without time zone ); DROP TABLE public.users; public heap postgres false � 1259 16438 users_id_seq SEQUENCE � CREATE SEQUENCE public.users_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; # DROP SEQUENCE public.users_id_seq; public postgres false 227 N 0 0 users_id_seq SEQUENCE OWNED BY = ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; public postgres false 226 � 2604 16393 failed_jobs id DEFAULT p ALTER TABLE ONLY public.failed_jobs ALTER COLUMN id SET DEFAULT nextval('public.failed_jobs_id_seq'::regclass); = ALTER TABLE public.failed_jobs ALTER COLUMN id DROP DEFAULT; public postgres false 216 215 216 � 2604 16403 migrations id DEFAULT n ALTER TABLE ONLY public.migrations ALTER COLUMN id SET DEFAULT nextval('public.migrations_id_seq'::regclass); <