PGDMP } vortex_v114.13"14.15 (Ubuntu 14.15-1.pgdg20.04+1)_00ENCODINGENCODINGSET client_encoding = 'UTF8'; false00 STDSTRINGS STDSTRINGS(SET standard_conforming_strings = 'on'; false00 SEARCHPATH SEARCHPATH8SELECT pg_catalog.set_config('search_path', '', false); false126242516 vortex_v1DATABASE]CREATE DATABASE vortex_v1 WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'en_US.UTF8'; DROP DATABASE vortex_v1; adminfalse125948096 auth_groupTABLEfCREATE TABLE public.auth_group ( id integer NOT NULL, name character varying(150) NOT NULL ); DROP TABLE public.auth_group; publicheappostgresfalse125948099auth_group_id_seqSEQUENCEALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse209125948100auth_group_permissionsTABLECREATE TABLE public.auth_group_permissions ( id bigint NOT NULL, group_id integer NOT NULL, permission_id integer NOT NULL ); *DROP TABLE public.auth_group_permissions; publicheappostgresfalse125948103auth_group_permissions_id_seqSEQUENCEALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_group_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse211125948104auth_permissionTABLECREATE TABLE public.auth_permission ( id integer NOT NULL, name character varying(255) NOT NULL, content_type_id integer NOT NULL, codename character varying(100) NOT NULL ); #DROP TABLE public.auth_permission; publicheappostgresfalse125948107auth_permission_id_seqSEQUENCEALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_permission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse213125948108 auth_userTABLECREATE TABLE public.auth_user ( id integer NOT NULL, password character varying(128) NOT NULL, last_login timestamp with time zone, is_superuser boolean NOT NULL, username character varying(150) NOT NULL, first_name character varying(150) NOT NULL, last_name character varying(150) NOT NULL, email character varying(254) NOT NULL, is_staff boolean NOT NULL, is_active boolean NOT NULL, date_joined timestamp with time zone NOT NULL ); DROP TABLE public.auth_user; publicheappostgresfalse125948113auth_user_groupsTABLE~CREATE TABLE public.auth_user_groups ( id bigint NOT NULL, user_id integer NOT NULL, group_id integer NOT NULL ); $DROP TABLE public.auth_user_groups; publicheappostgresfalse125948116auth_user_groups_id_seqSEQUENCEALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_user_groups_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse216125948117auth_user_id_seqSEQUENCEALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse215125948118auth_user_user_permissionsTABLECREATE TABLE public.auth_user_user_permissions ( id bigint NOT NULL, user_id integer NOT NULL, permission_id integer NOT NULL ); .DROP TABLE public.auth_user_user_permissions; publicheappostgresfalse125948121!auth_user_user_permissions_id_seqSEQUENCEALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_user_user_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse219125948122core_organisationTABLECREATE TABLE public.core_organisation ( id integer NOT NULL, created_at timestamp with time zone NOT NULL, modified_at timestamp with time zone NOT NULL, last_modified_by integer, token uuid NOT NULL, name character varying(128) NOT NULL, domain character varying(128) NOT NULL, address character varying(2048) NOT NULL, phone character varying(15) NOT NULL, email character varying(256) NOT NULL, pincode character varying(6) NOT NULL, state character varying(24) NOT NULL, country_code character varying(8) NOT NULL, gstin character varying(64) NOT NULL, currency character varying(8) NOT NULL, is_active boolean NOT NULL, logo character varying(256) NOT NULL, last_synced timestamp with time zone NOT NULL ); %DROP TABLE public.core_organisation; publicheappostgresfalse125948127core_organisation_id_seqSEQUENCEALTER TABLE public.core_organisation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.core_organisation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse221125948128core_userprofileTABLECREATE TABLE public.core_userprofile ( id integer NOT NULL, created_at timestamp with time zone NOT NULL, modified_at timestamp with time zone NOT NULL, last_modified_by integer, phone character varying(24), referred_by text, created_by_platform text, created_by_user bigint, is_email_verified boolean NOT NULL, is_phone_verified boolean NOT NULL, token character varying(128) NOT NULL, user_id integer NOT NULL ); $DROP TABLE public.core_userprofile; publicheappostgresfalse125948133core_userprofile_id_seqSEQUENCEALTER TABLE public.core_userprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.core_userprofile_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse223125948134django_admin_logTABLECREATE TABLE public.django_admin_log ( id integer NOT NULL, action_time timestamp with time zone NOT NULL, object_id text, object_repr character varying(200) NOT NULL, action_flag smallint NOT NULL, change_message text NOT NULL, content_type_id integer, user_id integer NOT NULL, CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) ); $DROP TABLE public.django_admin_log; publicheappostgresfalse125948140django_admin_log_id_seqSEQUENCEALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.django_admin_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse225125948141django_content_typeTABLECREATE TABLE public.django_content_type ( id integer NOT NULL, app_label character varying(100) NOT NULL, model character varying(100) NOT NULL ); 'DROP TABLE public.django_content_type; publicheappostgresfalse125948144django_content_type_id_seqSEQUENCEALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.django_content_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse227125948145django_migrationsTABLECREATE TABLE public.django_migrations ( id bigint NOT NULL, app character varying(255) NOT NULL, name character varying(255) NOT NULL, applied timestamp with time zone NOT NULL ); %DROP TABLE public.django_migrations; publicheappostgresfalse125948150django_migrations_id_seqSEQUENCEALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.django_migrations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); publicpostgresfalse229125948151django_sessionTABLECREATE TABLE public.django_session ( session_key character varying(40) NOT NULL, session_data text NOT NULL, expire_date timestamp with time zone NOT NULL ); "DROP TABLE public.django_session; publicheappostgresfalse048096 auth_group TABLE DATA.COPY public.auth_group (id, name) FROM stdin; publicpostgresfalse2094038.dat048100auth_group_permissions TABLE DATAMCOPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; publicpostgresfalse2114040.dat048104auth_permission TABLE DATANCOPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; publicpostgresfalse2134042.dat048108 auth_user TABLE DATACOPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; publicpostgresfalse2154044.dat048113auth_user_groups TABLE DATAACOPY public.auth_user_groups (id, user_id, group_id) FROM stdin; publicpostgresfalse2164045.dat048118auth_user_user_permissions TABLE DATAPCOPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin; publicpostgresfalse2194048.dat048122core_organisation TABLE DATACOPY public.core_organisation (id, created_at, modified_at, last_modified_by, token, name, domain, address, phone, email, pincode, state, country_code, gstin, currency, is_active, logo, last_synced) FROM stdin; publicpostgresfalse2214050.dat048128core_userprofile TABLE DATACOPY public.core_userprofile (id, created_at, modified_at, last_modified_by, phone, referred_by, created_by_platform, created_by_user, is_email_verified, is_phone_verified, token, user_id) FROM stdin; publicpostgresfalse2234052.dat048134django_admin_log TABLE DATACOPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; publicpostgresfalse2254054.dat048141django_content_type TABLE DATACCOPY public.django_content_type (id, app_label, model) FROM stdin; publicpostgresfalse2274056.dat048145django_migrations TABLE DATACCOPY public.django_migrations (id, app, name, applied) FROM stdin; publicpostgresfalse2294058.dat048151django_session TABLE DATAPCOPY public.django_session (session_key, session_data, expire_date) FROM stdin; publicpostgresfalse2314060.dat00auth_group_id_seq SEQUENCE SET@SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false); publicpostgresfalse21000auth_group_permissions_id_seq SEQUENCE SETLSELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false); publicpostgresfalse21200auth_permission_id_seq SEQUENCE SETESELECT pg_catalog.setval('public.auth_permission_id_seq', 36, true); publicpostgresfalse21400auth_user_groups_id_seq SEQUENCE SETFSELECT pg_catalog.setval('public.auth_user_groups_id_seq', 1, false); publicpostgresfalse21700auth_user_id_seq SEQUENCE SET>SELECT pg_catalog.setval('public.auth_user_id_seq', 7, true); publicpostgresfalse21800!auth_user_user_permissions_id_seq SEQUENCE SETPSELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false); publicpostgresfalse22000core_organisation_id_seq SEQUENCE SETGSELECT pg_catalog.setval('public.core_organisation_id_seq', 1, false); publicpostgresfalse22200core_userprofile_id_seq SEQUENCE SETESELECT pg_catalog.setval('public.core_userprofile_id_seq', 7, true); publicpostgresfalse22400django_admin_log_id_seq SEQUENCE SETFSELECT pg_catalog.setval('public.django_admin_log_id_seq', 1, false); publicpostgresfalse22600django_content_type_id_seq SEQUENCE SETHSELECT pg_catalog.setval('public.django_content_type_id_seq', 9, true); publicpostgresfalse22800django_migrations_id_seq SEQUENCE SETGSELECT pg_catalog.setval('public.django_migrations_id_seq', 20, true); publicpostgresfalse230260648263auth_group auth_group_name_key CONSTRAINTYALTER TABLE ONLY public.auth_group ADD CONSTRAINT auth_group_name_key UNIQUE (name); HALTER TABLE ONLY public.auth_group DROP CONSTRAINT auth_group_name_key; publicpostgresfalse209260648244Rauth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq CONSTRAINTALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id); |ALTER TABLE ONLY public.auth_group_permissions DROP CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq; publicpostgresfalse2112112606482602auth_group_permissions auth_group_permissions_pkey CONSTRAINTpALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); \ALTER TABLE ONLY public.auth_group_permissions DROP CONSTRAINT auth_group_permissions_pkey; publicpostgresfalse211260648272auth_group auth_group_pkey CONSTRAINTXALTER TABLE ONLY public.auth_group ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); DALTER TABLE ONLY public.auth_group DROP CONSTRAINT auth_group_pkey; publicpostgresfalse209260648188Fauth_permission auth_permission_content_type_id_codename_01ab375a_uniq CONSTRAINTALTER TABLE ONLY public.auth_permission ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename); pALTER TABLE ONLY public.auth_permission DROP CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq; publicpostgresfalse213213 260648198$auth_permission auth_permission_pkey CONSTRAINTbALTER TABLE ONLY public.auth_permission ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); NALTER TABLE ONLY public.auth_permission DROP CONSTRAINT auth_permission_pkey; publicpostgresfalse213260648211&auth_user_groups auth_user_groups_pkey CONSTRAINTdALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id); PALTER TABLE ONLY public.auth_user_groups DROP CONSTRAINT auth_user_groups_pkey; publicpostgresfalse216260648242@auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq CONSTRAINTALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id); jALTER TABLE ONLY public.auth_user_groups DROP CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq; publicpostgresfalse216216 260648182auth_user auth_user_pkey CONSTRAINTVALTER TABLE ONLY public.auth_user ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id); BALTER TABLE ONLY public.auth_user DROP CONSTRAINT auth_user_pkey; publicpostgresfalse215260648257:auth_user_user_permissions auth_user_user_permissions_pkey CONSTRAINTxALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id); dALTER TABLE ONLY public.auth_user_user_permissions DROP CONSTRAINT auth_user_user_permissions_pkey; publicpostgresfalse219260648265Yauth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq CONSTRAINTALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id); ALTER TABLE ONLY public.auth_user_user_permissions DROP CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; publicpostgresfalse219219260648203 auth_user auth_user_username_key CONSTRAINT_ALTER TABLE ONLY public.auth_user ADD CONSTRAINT auth_user_username_key UNIQUE (username); JALTER TABLE ONLY public.auth_user DROP CONSTRAINT auth_user_username_key; publicpostgresfalse215260648224(core_organisation core_organisation_pkey CONSTRAINTfALTER TABLE ONLY public.core_organisation ADD CONSTRAINT core_organisation_pkey PRIMARY KEY (id); RALTER TABLE ONLY public.core_organisation DROP CONSTRAINT core_organisation_pkey; publicpostgresfalse221 260648261&core_userprofile core_userprofile_pkey CONSTRAINTdALTER TABLE ONLY public.core_userprofile ADD CONSTRAINT core_userprofile_pkey PRIMARY KEY (id); PALTER TABLE ONLY public.core_userprofile DROP CONSTRAINT core_userprofile_pkey; publicpostgresfalse223"260648274-core_userprofile core_userprofile_user_id_key CONSTRAINTkALTER TABLE ONLY public.core_userprofile ADD CONSTRAINT core_userprofile_user_id_key UNIQUE (user_id); WALTER TABLE ONLY public.core_userprofile DROP CONSTRAINT core_userprofile_user_id_key; publicpostgresfalse223%260648217&django_admin_log django_admin_log_pkey CONSTRAINTdALTER TABLE ONLY public.django_admin_log ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); PALTER TABLE ONLY public.django_admin_log DROP CONSTRAINT django_admin_log_pkey; publicpostgresfalse225(260648186Edjango_content_type django_content_type_app_label_model_76bd3d3b_uniq CONSTRAINTALTER TABLE ONLY public.django_content_type ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model); oALTER TABLE ONLY public.django_content_type DROP CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq; publicpostgresfalse227227*260648193,django_content_type django_content_type_pkey CONSTRAINTjALTER TABLE ONLY public.django_content_type ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); VALTER TABLE ONLY public.django_content_type DROP CONSTRAINT django_content_type_pkey; publicpostgresfalse227,260648164(django_migrations django_migrations_pkey CONSTRAINTfALTER TABLE ONLY public.django_migrations ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); RALTER TABLE ONLY public.django_migrations DROP CONSTRAINT django_migrations_pkey; publicpostgresfalse229/260648206"django_session django_session_pkey CONSTRAINTiALTER TABLE ONLY public.django_session ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); LALTER TABLE ONLY public.django_session DROP CONSTRAINT django_session_pkey; publicpostgresfalse231125948247auth_group_name_a6ea08ec_likeINDEXhCREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops); 1DROP INDEX public.auth_group_name_a6ea08ec_like; publicpostgresfalse209125948201(auth_group_permissions_group_id_b120cbf9INDEXoCREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id); <DROP INDEX public.auth_group_permissions_group_id_b120cbf9; publicpostgresfalse211125948199-auth_group_permissions_permission_id_84c5c92eINDEXyCREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id); ADROP INDEX public.auth_group_permissions_permission_id_84c5c92e; publicpostgresfalse211125948177(auth_permission_content_type_id_2f476e4bINDEXoCREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id); <DROP INDEX public.auth_permission_content_type_id_2f476e4b; publicpostgresfalse213125948197"auth_user_groups_group_id_97559544INDEXcCREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id); 6DROP INDEX public.auth_user_groups_group_id_97559544; publicpostgresfalse216125948200!auth_user_groups_user_id_6a12ed8bINDEXaCREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id); 5DROP INDEX public.auth_user_groups_user_id_6a12ed8b; publicpostgresfalse2161259482161auth_user_user_permissions_permission_id_1fbb5f2cINDEXCREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id); EDROP INDEX public.auth_user_user_permissions_permission_id_1fbb5f2c; publicpostgresfalse219125948208+auth_user_user_permissions_user_id_a95ead1bINDEXuCREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id); ?DROP INDEX public.auth_user_user_permissions_user_id_a95ead1b; publicpostgresfalse219 125948190 auth_user_username_6821ab7c_likeINDEXnCREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops); 4DROP INDEX public.auth_user_username_6821ab7c_like; publicpostgresfalse215125948204core_organi_token_6da0b9_idxINDEX[CREATE INDEX core_organi_token_6da0b9_idx ON public.core_organisation USING btree (token); 0DROP INDEX public.core_organi_token_6da0b9_idx; publicpostgresfalse221125948230core_userpr_token_a8aba2_idxINDEXZCREATE INDEX core_userpr_token_a8aba2_idx ON public.core_userprofile USING btree (token); 0DROP INDEX public.core_userpr_token_a8aba2_idx; publicpostgresfalse223#125948191)django_admin_log_content_type_id_c4bce8ebINDEXqCREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id); =DROP INDEX public.django_admin_log_content_type_id_c4bce8eb; publicpostgresfalse225&125948194!django_admin_log_user_id_c564eba6INDEXaCREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id); 5DROP INDEX public.django_admin_log_user_id_c564eba6; publicpostgresfalse225-125948184#django_session_expire_date_a5c62663INDEXeCREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date); 7DROP INDEX public.django_session_expire_date_a5c62663; publicpostgresfalse2310125948189(django_session_session_key_c0390e0f_likeINDEX~CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops); <DROP INDEX public.django_session_session_key_c0390e0f_like; publicpostgresfalse2311260648225Oauth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FK CONSTRAINTALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; yALTER TABLE ONLY public.auth_group_permissions DROP CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; publicpostgresfalse21121338492260648275Pauth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FK CONSTRAINTALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; zALTER TABLE ONLY public.auth_group_permissions DROP CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; publicpostgresfalse21138382093260648207Eauth_permission auth_permission_content_type_id_2f476e4b_fk_django_co FK CONSTRAINTALTER TABLE ONLY public.auth_permission ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; oALTER TABLE ONLY public.auth_permission DROP CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co; publicpostgresfalse21322738824260648280Dauth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id FK CONSTRAINTALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; nALTER TABLE ONLY public.auth_user_groups DROP CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id; publicpostgresfalse20921638385260648218Bauth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FK CONSTRAINTALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; lALTER TABLE ONLY public.auth_user_groups DROP CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; publicpostgresfalse21621538516260648245Sauth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FK CONSTRAINTALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; }ALTER TABLE ONLY public.auth_user_user_permissions DROP CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; publicpostgresfalse21938492137260648232Vauth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FK CONSTRAINTALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; ALTER TABLE ONLY public.auth_user_user_permissions DROP CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; publicpostgresfalse38512152198260648266Bcore_userprofile core_userprofile_user_id_5141ad90_fk_auth_user_id FK CONSTRAINTALTER TABLE ONLY public.core_userprofile ADD CONSTRAINT core_userprofile_user_id_5141ad90_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; lALTER TABLE ONLY public.core_userprofile DROP CONSTRAINT core_userprofile_user_id_5141ad90_fk_auth_user_id; publicpostgresfalse21522338519260648231Gdjango_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co FK CONSTRAINTALTER TABLE ONLY public.django_admin_log ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; qALTER TABLE ONLY public.django_admin_log DROP CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co; publicpostgresfalse3882225227:260648249Bdjango_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id FK CONSTRAINTALTER TABLE ONLY public.django_admin_log ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; lALTER TABLE ONLY public.django_admin_log DROP CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id; publicpostgresfalse2252153851