Last active
February 5, 2024 18:54
-
-
Save Winslett/7a9db3f4bfce9ac1b1c5f7cf7d7ab5d3 to your computer and use it in GitHub Desktop.
Data for Row Level Security
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- PostgreSQL database dump | |
-- | |
-- | |
-- Name: accounts; Type: TABLE; Schema: public; Owner: - | |
-- | |
CREATE TABLE public.accounts ( | |
id BIGSERIAL PRIMARY KEY, | |
name character varying, | |
created_at timestamp(6) without time zone NOT NULL, | |
updated_at timestamp(6) without time zone NOT NULL | |
); | |
-- | |
-- Name: contacts; Type: TABLE; Schema: public; Owner: - | |
-- | |
CREATE TABLE public.contacts ( | |
id BIGSERIAL PRIMARY KEY, | |
name character varying, | |
email character varying, | |
account_id bigint, | |
created_at timestamp(6) without time zone NOT NULL, | |
updated_at timestamp(6) without time zone NOT NULL | |
); | |
-- | |
-- Name: opportunities; Type: TABLE; Schema: public; Owner: - | |
-- | |
CREATE TABLE public.opportunities ( | |
id BIGSERIAL PRIMARY KEY, | |
name character varying, | |
status character varying, | |
account_id bigint, | |
user_id bigint, | |
created_at timestamp(6) without time zone NOT NULL, | |
updated_at timestamp(6) without time zone NOT NULL | |
); | |
-- | |
-- Name: opportunity_contacts; Type: TABLE; Schema: public; Owner: - | |
-- | |
CREATE TABLE public.opportunity_contacts ( | |
id BIGSERIAL PRIMARY KEY, | |
opportunity_id bigint, | |
contact_id bigint, | |
account_id bigint, | |
created_at timestamp(6) without time zone NOT NULL, | |
updated_at timestamp(6) without time zone NOT NULL | |
); | |
-- Name: users; Type: TABLE; Schema: public; Owner: - | |
-- | |
CREATE TABLE public.users ( | |
id BIGSERIAL PRIMARY KEY, | |
name character varying, | |
email character varying, | |
account_id bigint, | |
created_at timestamp(6) without time zone NOT NULL, | |
updated_at timestamp(6) without time zone NOT NULL | |
); | |
-- | |
-- Data for Name: accounts; Type: TABLE DATA; Schema: public; Owner: - | |
-- | |
COPY public.accounts (id, name, created_at, updated_at) FROM stdin; | |
1 Grady-Hartmann 2024-02-05 18:24:17.897116 2024-02-05 18:24:17.897116 | |
2 Huel LLC 2024-02-05 18:24:18.0139 2024-02-05 18:24:18.0139 | |
3 Vandervort-Walker 2024-02-05 18:24:18.069204 2024-02-05 18:24:18.069204 | |
4 Witting-Walter 2024-02-05 18:24:18.124628 2024-02-05 18:24:18.124628 | |
5 Marvin-Hessel 2024-02-05 18:24:18.174106 2024-02-05 18:24:18.174106 | |
\. | |
-- | |
-- Data for Name: contacts; Type: TABLE DATA; Schema: public; Owner: - | |
-- | |
COPY public.contacts (id, name, email, account_id, created_at, updated_at) FROM stdin; | |
1 Joey McCullough [email protected] 1 2024-02-05 18:24:17.921763 2024-02-05 18:24:17.921763 | |
2 Emerson Daniel [email protected] 1 2024-02-05 18:24:17.923839 2024-02-05 18:24:17.923839 | |
3 Arielle Berge [email protected] 1 2024-02-05 18:24:17.92551 2024-02-05 18:24:17.92551 | |
4 Luana Balistreri [email protected] 1 2024-02-05 18:24:17.927226 2024-02-05 18:24:17.927226 | |
5 Miss Theda McClure [email protected] 1 2024-02-05 18:24:17.928871 2024-02-05 18:24:17.928871 | |
6 The Hon. Filomena White [email protected] 1 2024-02-05 18:24:17.930614 2024-02-05 18:24:17.930614 | |
7 Darius Smitham [email protected] 1 2024-02-05 18:24:17.932233 2024-02-05 18:24:17.932233 | |
8 Fermina Dietrich [email protected] 1 2024-02-05 18:24:17.933818 2024-02-05 18:24:17.933818 | |
9 Rosalyn Stoltenberg [email protected] 1 2024-02-05 18:24:17.935502 2024-02-05 18:24:17.935502 | |
10 Sammy Prosacco [email protected] 1 2024-02-05 18:24:17.9371 2024-02-05 18:24:17.9371 | |
11 Gayla Shanahan [email protected] 1 2024-02-05 18:24:17.938951 2024-02-05 18:24:17.938951 | |
12 Starla Bailey [email protected] 1 2024-02-05 18:24:17.94061 2024-02-05 18:24:17.94061 | |
13 Ileana Rempel [email protected] 1 2024-02-05 18:24:17.942181 2024-02-05 18:24:17.942181 | |
14 Darrin Weimann [email protected] 1 2024-02-05 18:24:17.94379 2024-02-05 18:24:17.94379 | |
15 Milford Crooks [email protected] 1 2024-02-05 18:24:17.945341 2024-02-05 18:24:17.945341 | |
16 Miss Mara Russel [email protected] 1 2024-02-05 18:24:17.95236 2024-02-05 18:24:17.95236 | |
17 Gregorio Smith [email protected] 1 2024-02-05 18:24:17.95441 2024-02-05 18:24:17.95441 | |
18 Stephan Ritchie [email protected] 1 2024-02-05 18:24:17.95668 2024-02-05 18:24:17.95668 | |
19 Simon Jenkins MD [email protected] 1 2024-02-05 18:24:17.958462 2024-02-05 18:24:17.958462 | |
20 Nia Johns DC [email protected] 1 2024-02-05 18:24:17.96015 2024-02-05 18:24:17.96015 | |
21 Ivory Hodkiewicz [email protected] 2 2024-02-05 18:24:18.023729 2024-02-05 18:24:18.023729 | |
22 Clinton Blanda [email protected] 2 2024-02-05 18:24:18.025356 2024-02-05 18:24:18.025356 | |
23 Miss Jewell Crona [email protected] 2 2024-02-05 18:24:18.026993 2024-02-05 18:24:18.026993 | |
24 Sigrid Larkin [email protected] 2 2024-02-05 18:24:18.028518 2024-02-05 18:24:18.028518 | |
25 Buena Carter [email protected] 2 2024-02-05 18:24:18.029966 2024-02-05 18:24:18.029966 | |
26 Norman Rodriguez [email protected] 2 2024-02-05 18:24:18.032416 2024-02-05 18:24:18.032416 | |
27 Tricia Bogan [email protected] 2 2024-02-05 18:24:18.034277 2024-02-05 18:24:18.034277 | |
28 Sandie Feeney [email protected] 2 2024-02-05 18:24:18.036125 2024-02-05 18:24:18.036125 | |
29 Annmarie Will [email protected] 2 2024-02-05 18:24:18.038151 2024-02-05 18:24:18.038151 | |
30 Delisa Douglas [email protected] 2 2024-02-05 18:24:18.039693 2024-02-05 18:24:18.039693 | |
31 Alphonso Prohaska [email protected] 2 2024-02-05 18:24:18.041287 2024-02-05 18:24:18.041287 | |
32 Clyde Casper [email protected] 2 2024-02-05 18:24:18.042875 2024-02-05 18:24:18.042875 | |
33 Elmer Metz [email protected] 2 2024-02-05 18:24:18.044452 2024-02-05 18:24:18.044452 | |
34 Jonathan Osinski [email protected] 2 2024-02-05 18:24:18.046024 2024-02-05 18:24:18.046024 | |
35 Amb. Jan Vandervort [email protected] 2 2024-02-05 18:24:18.047613 2024-02-05 18:24:18.047613 | |
36 Shanika Parisian II [email protected] 2 2024-02-05 18:24:18.049187 2024-02-05 18:24:18.049187 | |
37 Manuel Lemke [email protected] 2 2024-02-05 18:24:18.050783 2024-02-05 18:24:18.050783 | |
38 Mark Botsford [email protected] 2 2024-02-05 18:24:18.052367 2024-02-05 18:24:18.052367 | |
39 Gov. Randall Keeling [email protected] 2 2024-02-05 18:24:18.054005 2024-02-05 18:24:18.054005 | |
40 Miss Svetlana Jacobi [email protected] 2 2024-02-05 18:24:18.055636 2024-02-05 18:24:18.055636 | |
41 Megan Howell [email protected] 3 2024-02-05 18:24:18.079623 2024-02-05 18:24:18.079623 | |
42 Cecil Johnson DVM [email protected] 3 2024-02-05 18:24:18.081172 2024-02-05 18:24:18.081172 | |
43 Ilene Kling [email protected] 3 2024-02-05 18:24:18.08273 2024-02-05 18:24:18.08273 | |
44 Kimberely Barton III [email protected] 3 2024-02-05 18:24:18.084372 2024-02-05 18:24:18.084372 | |
45 Jeanmarie Cruickshank [email protected] 3 2024-02-05 18:24:18.085997 2024-02-05 18:24:18.085997 | |
46 Chas Metz [email protected] 3 2024-02-05 18:24:18.0876 2024-02-05 18:24:18.0876 | |
47 Jung Carter [email protected] 3 2024-02-05 18:24:18.089072 2024-02-05 18:24:18.089072 | |
48 Renato Raynor [email protected] 3 2024-02-05 18:24:18.090687 2024-02-05 18:24:18.090687 | |
49 Msgr. Elvia McDermott [email protected] 3 2024-02-05 18:24:18.092346 2024-02-05 18:24:18.092346 | |
50 Norine Walter [email protected] 3 2024-02-05 18:24:18.09382 2024-02-05 18:24:18.09382 | |
51 Ossie Pagac [email protected] 3 2024-02-05 18:24:18.095281 2024-02-05 18:24:18.095281 | |
52 Fredricka Wisoky [email protected] 3 2024-02-05 18:24:18.096742 2024-02-05 18:24:18.096742 | |
53 Santo Wuckert [email protected] 3 2024-02-05 18:24:18.098218 2024-02-05 18:24:18.098218 | |
54 Pete Christiansen [email protected] 3 2024-02-05 18:24:18.099727 2024-02-05 18:24:18.099727 | |
55 Elyse O'Reilly [email protected] 3 2024-02-05 18:24:18.10201 2024-02-05 18:24:18.10201 | |
56 Odis Quigley MD [email protected] 3 2024-02-05 18:24:18.10383 2024-02-05 18:24:18.10383 | |
57 Digna Rowe [email protected] 3 2024-02-05 18:24:18.105795 2024-02-05 18:24:18.105795 | |
58 Javier Thompson DC [email protected] 3 2024-02-05 18:24:18.107458 2024-02-05 18:24:18.107458 | |
59 Edna Maggio [email protected] 3 2024-02-05 18:24:18.10907 2024-02-05 18:24:18.10907 | |
60 Shane Veum [email protected] 3 2024-02-05 18:24:18.110602 2024-02-05 18:24:18.110602 | |
61 Ara Conroy VM [email protected] 4 2024-02-05 18:24:18.134476 2024-02-05 18:24:18.134476 | |
62 Creola Berge [email protected] 4 2024-02-05 18:24:18.136945 2024-02-05 18:24:18.136945 | |
63 The Hon. Jone Robel [email protected] 4 2024-02-05 18:24:18.138744 2024-02-05 18:24:18.138744 | |
64 Malisa Dickinson [email protected] 4 2024-02-05 18:24:18.140821 2024-02-05 18:24:18.140821 | |
65 Krysta Haley [email protected] 4 2024-02-05 18:24:18.14251 2024-02-05 18:24:18.14251 | |
66 Romeo Jacobs [email protected] 4 2024-02-05 18:24:18.144089 2024-02-05 18:24:18.144089 | |
67 Randall Beer [email protected] 4 2024-02-05 18:24:18.145813 2024-02-05 18:24:18.145813 | |
68 Zelda Howe [email protected] 4 2024-02-05 18:24:18.147418 2024-02-05 18:24:18.147418 | |
69 Rev. Chandra Durgan [email protected] 4 2024-02-05 18:24:18.149052 2024-02-05 18:24:18.149052 | |
70 Prof. Curt MacGyver [email protected] 4 2024-02-05 18:24:18.150659 2024-02-05 18:24:18.150659 | |
71 Lorina Fadel VM [email protected] 4 2024-02-05 18:24:18.152277 2024-02-05 18:24:18.152277 | |
72 Dr. Yuonne Rogahn [email protected] 4 2024-02-05 18:24:18.153968 2024-02-05 18:24:18.153968 | |
73 Fidel Hintz [email protected] 4 2024-02-05 18:24:18.155641 2024-02-05 18:24:18.155641 | |
74 Rayford Reilly [email protected] 4 2024-02-05 18:24:18.157215 2024-02-05 18:24:18.157215 | |
75 Jacque Monahan [email protected] 4 2024-02-05 18:24:18.15884 2024-02-05 18:24:18.15884 | |
76 Colton Howell [email protected] 4 2024-02-05 18:24:18.160421 2024-02-05 18:24:18.160421 | |
77 Fr. Cecil Feeney [email protected] 4 2024-02-05 18:24:18.161891 2024-02-05 18:24:18.161891 | |
78 Rev. Errol Daniel [email protected] 4 2024-02-05 18:24:18.163622 2024-02-05 18:24:18.163622 | |
79 Raeann McKenzie [email protected] 4 2024-02-05 18:24:18.165101 2024-02-05 18:24:18.165101 | |
80 Jorge Satterfield [email protected] 4 2024-02-05 18:24:18.166576 2024-02-05 18:24:18.166576 | |
81 Ilona Dare [email protected] 5 2024-02-05 18:24:18.18462 2024-02-05 18:24:18.18462 | |
82 Florentino Brown [email protected] 5 2024-02-05 18:24:18.186288 2024-02-05 18:24:18.186288 | |
83 Manda Wisoky [email protected] 5 2024-02-05 18:24:18.187924 2024-02-05 18:24:18.187924 | |
84 Martin Spencer Ret. [email protected] 5 2024-02-05 18:24:18.189526 2024-02-05 18:24:18.189526 | |
85 Arnulfo Gislason [email protected] 5 2024-02-05 18:24:18.191284 2024-02-05 18:24:18.191284 | |
86 Abbie Halvorson [email protected] 5 2024-02-05 18:24:18.193136 2024-02-05 18:24:18.193136 | |
87 Jennifer Hagenes [email protected] 5 2024-02-05 18:24:18.194701 2024-02-05 18:24:18.194701 | |
88 Kathlene Kling DO [email protected] 5 2024-02-05 18:24:18.196309 2024-02-05 18:24:18.196309 | |
89 Arthur Kunze [email protected] 5 2024-02-05 18:24:18.197813 2024-02-05 18:24:18.197813 | |
90 Fr. Arminda Kuhn [email protected] 5 2024-02-05 18:24:18.199326 2024-02-05 18:24:18.199326 | |
91 Riley Flatley [email protected] 5 2024-02-05 18:24:18.200781 2024-02-05 18:24:18.200781 | |
92 Patricia Brown II [email protected] 5 2024-02-05 18:24:18.202252 2024-02-05 18:24:18.202252 | |
93 Antione Flatley II [email protected] 5 2024-02-05 18:24:18.203879 2024-02-05 18:24:18.203879 | |
94 Msgr. Ozie McDermott [email protected] 5 2024-02-05 18:24:18.206239 2024-02-05 18:24:18.206239 | |
95 Ian Bednar LLD [email protected] 5 2024-02-05 18:24:18.208071 2024-02-05 18:24:18.208071 | |
96 Ria Howell [email protected] 5 2024-02-05 18:24:18.209799 2024-02-05 18:24:18.209799 | |
97 Marion Lebsack [email protected] 5 2024-02-05 18:24:18.211592 2024-02-05 18:24:18.211592 | |
98 Dirk Simonis JD [email protected] 5 2024-02-05 18:24:18.213274 2024-02-05 18:24:18.213274 | |
99 Yolande Effertz [email protected] 5 2024-02-05 18:24:18.214888 2024-02-05 18:24:18.214888 | |
100 Mildred Jast DVM [email protected] 5 2024-02-05 18:24:18.216529 2024-02-05 18:24:18.216529 | |
\. | |
-- | |
-- Data for Name: opportunities; Type: TABLE DATA; Schema: public; Owner: - | |
-- | |
COPY public.opportunities (id, name, status, account_id, user_id, created_at, updated_at) FROM stdin; | |
1 Koelpin and Sons lost 1 2 2024-02-05 18:24:17.968027 2024-02-05 18:24:17.968027 | |
2 Lynch, Carroll and Hudson lost 1 2 2024-02-05 18:24:17.981774 2024-02-05 18:24:17.981774 | |
3 Stroman LLC open 1 4 2024-02-05 18:24:17.987927 2024-02-05 18:24:17.987927 | |
4 Bogisich Inc lost 1 5 2024-02-05 18:24:17.993727 2024-02-05 18:24:17.993727 | |
5 Legros Inc open 1 2 2024-02-05 18:24:17.999791 2024-02-05 18:24:17.999791 | |
6 Block Group lost 1 5 2024-02-05 18:24:18.007998 2024-02-05 18:24:18.007998 | |
7 Kilback, Herzog and Dach open 1 2 2024-02-05 18:24:18.009494 2024-02-05 18:24:18.009494 | |
8 Lindgren Group won 2 10 2024-02-05 18:24:18.057865 2024-02-05 18:24:18.057865 | |
9 Stehr-Fisher won 2 8 2024-02-05 18:24:18.062174 2024-02-05 18:24:18.062174 | |
10 Wisozk-Macejkovic won 3 11 2024-02-05 18:24:18.112989 2024-02-05 18:24:18.112989 | |
11 Simonis-Langosh open 3 15 2024-02-05 18:24:18.118611 2024-02-05 18:24:18.118611 | |
12 Towne-Crona won 4 17 2024-02-05 18:24:18.168804 2024-02-05 18:24:18.168804 | |
13 Marks-Osinski open 5 23 2024-02-05 18:24:18.218845 2024-02-05 18:24:18.218845 | |
14 Trantow LLC open 5 23 2024-02-05 18:24:18.223281 2024-02-05 18:24:18.223281 | |
15 Aufderhar-Swaniawski won 5 25 2024-02-05 18:24:18.224734 2024-02-05 18:24:18.224734 | |
16 Smith Inc won 5 24 2024-02-05 18:24:18.229035 2024-02-05 18:24:18.229035 | |
\. | |
-- | |
-- Data for Name: opportunity_contacts; Type: TABLE DATA; Schema: public; Owner: - | |
-- | |
COPY public.opportunity_contacts (id, opportunity_id, contact_id, account_id, created_at, updated_at) FROM stdin; | |
1 1 5 1 2024-02-05 18:24:17.976408 2024-02-05 18:24:17.976408 | |
2 1 12 1 2024-02-05 18:24:17.978559 2024-02-05 18:24:17.978559 | |
3 1 3 1 2024-02-05 18:24:17.980198 2024-02-05 18:24:17.980198 | |
4 2 17 1 2024-02-05 18:24:17.983412 2024-02-05 18:24:17.983412 | |
5 2 16 1 2024-02-05 18:24:17.984869 2024-02-05 18:24:17.984869 | |
6 2 20 1 2024-02-05 18:24:17.986388 2024-02-05 18:24:17.986388 | |
7 3 8 1 2024-02-05 18:24:17.989472 2024-02-05 18:24:17.989472 | |
8 3 9 1 2024-02-05 18:24:17.990857 2024-02-05 18:24:17.990857 | |
9 3 8 1 2024-02-05 18:24:17.99225 2024-02-05 18:24:17.99225 | |
10 4 7 1 2024-02-05 18:24:17.995229 2024-02-05 18:24:17.995229 | |
11 4 20 1 2024-02-05 18:24:17.996708 2024-02-05 18:24:17.996708 | |
12 5 1 1 2024-02-05 18:24:18.001577 2024-02-05 18:24:18.001577 | |
13 5 11 1 2024-02-05 18:24:18.003294 2024-02-05 18:24:18.003294 | |
14 5 16 1 2024-02-05 18:24:18.004711 2024-02-05 18:24:18.004711 | |
15 5 2 1 2024-02-05 18:24:18.006389 2024-02-05 18:24:18.006389 | |
16 7 6 1 2024-02-05 18:24:18.011063 2024-02-05 18:24:18.011063 | |
17 7 2 1 2024-02-05 18:24:18.012528 2024-02-05 18:24:18.012528 | |
18 8 23 2 2024-02-05 18:24:18.060607 2024-02-05 18:24:18.060607 | |
19 9 35 2 2024-02-05 18:24:18.063632 2024-02-05 18:24:18.063632 | |
20 9 37 2 2024-02-05 18:24:18.065049 2024-02-05 18:24:18.065049 | |
21 9 33 2 2024-02-05 18:24:18.067688 2024-02-05 18:24:18.067688 | |
22 10 49 3 2024-02-05 18:24:18.115786 2024-02-05 18:24:18.115786 | |
23 10 49 3 2024-02-05 18:24:18.117221 2024-02-05 18:24:18.117221 | |
24 11 43 3 2024-02-05 18:24:18.120269 2024-02-05 18:24:18.120269 | |
25 11 55 3 2024-02-05 18:24:18.121727 2024-02-05 18:24:18.121727 | |
26 11 59 3 2024-02-05 18:24:18.123072 2024-02-05 18:24:18.123072 | |
27 12 71 4 2024-02-05 18:24:18.172387 2024-02-05 18:24:18.172387 | |
28 13 95 5 2024-02-05 18:24:18.221726 2024-02-05 18:24:18.221726 | |
29 15 95 5 2024-02-05 18:24:18.226239 2024-02-05 18:24:18.226239 | |
30 15 97 5 2024-02-05 18:24:18.227574 2024-02-05 18:24:18.227574 | |
\. | |
-- | |
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - | |
-- | |
COPY public.users (id, name, email, account_id, created_at, updated_at) FROM stdin; | |
1 Charlie Hilll DO [email protected] 1 2024-02-05 18:24:17.908618 2024-02-05 18:24:17.908618 | |
2 Rodrigo Armstrong [email protected] 1 2024-02-05 18:24:17.911357 2024-02-05 18:24:17.911357 | |
3 Brady Berge [email protected] 1 2024-02-05 18:24:17.913207 2024-02-05 18:24:17.913207 | |
4 Nicolle Cremin [email protected] 1 2024-02-05 18:24:17.914943 2024-02-05 18:24:17.914943 | |
5 Travis Cassin [email protected] 1 2024-02-05 18:24:17.916635 2024-02-05 18:24:17.916635 | |
6 Michale Hayes [email protected] 2 2024-02-05 18:24:18.015621 2024-02-05 18:24:18.015621 | |
7 Dino Effertz [email protected] 2 2024-02-05 18:24:18.017161 2024-02-05 18:24:18.017161 | |
8 The Hon. Marnie Ryan [email protected] 2 2024-02-05 18:24:18.018761 2024-02-05 18:24:18.018761 | |
9 Myrtis Nienow [email protected] 2 2024-02-05 18:24:18.020369 2024-02-05 18:24:18.020369 | |
10 Msgr. Colton McDermott [email protected] 2 2024-02-05 18:24:18.022003 2024-02-05 18:24:18.022003 | |
11 Louisa Towne CPA [email protected] 3 2024-02-05 18:24:18.071312 2024-02-05 18:24:18.071312 | |
12 Tamika Upton [email protected] 3 2024-02-05 18:24:18.073176 2024-02-05 18:24:18.073176 | |
13 Lyla Stoltenberg [email protected] 3 2024-02-05 18:24:18.074872 2024-02-05 18:24:18.074872 | |
14 The Hon. Harland Kunze [email protected] 3 2024-02-05 18:24:18.076426 2024-02-05 18:24:18.076426 | |
15 Hassie Mills [email protected] 3 2024-02-05 18:24:18.077991 2024-02-05 18:24:18.077991 | |
16 Cathy Prohaska [email protected] 4 2024-02-05 18:24:18.126501 2024-02-05 18:24:18.126501 | |
17 Hal Huel [email protected] 4 2024-02-05 18:24:18.128147 2024-02-05 18:24:18.128147 | |
18 Rev. Louis Stokes [email protected] 4 2024-02-05 18:24:18.129808 2024-02-05 18:24:18.129808 | |
19 Ty Auer [email protected] 4 2024-02-05 18:24:18.13132 2024-02-05 18:24:18.13132 | |
20 Gov. Nick Kemmer [email protected] 4 2024-02-05 18:24:18.132846 2024-02-05 18:24:18.132846 | |
21 Andy Lakin [email protected] 5 2024-02-05 18:24:18.17597 2024-02-05 18:24:18.17597 | |
22 Ruben Heathcote [email protected] 5 2024-02-05 18:24:18.177973 2024-02-05 18:24:18.177973 | |
23 Carey Mertz [email protected] 5 2024-02-05 18:24:18.179516 2024-02-05 18:24:18.179516 | |
24 Charles Howell DO [email protected] 5 2024-02-05 18:24:18.181159 2024-02-05 18:24:18.181159 | |
25 Dominique Turner [email protected] 5 2024-02-05 18:24:18.182876 2024-02-05 18:24:18.182876 | |
\. | |
-- | |
-- Name: accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - | |
-- | |
SELECT pg_catalog.setval('public.accounts_id_seq', 5, true); | |
-- | |
-- Name: contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - | |
-- | |
SELECT pg_catalog.setval('public.contacts_id_seq', 100, true); | |
-- | |
-- Name: opportunities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - | |
-- | |
SELECT pg_catalog.setval('public.opportunities_id_seq', 16, true); | |
-- | |
-- Name: opportunity_contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - | |
-- | |
SELECT pg_catalog.setval('public.opportunity_contacts_id_seq', 30, true); | |
-- | |
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - | |
-- | |
SELECT pg_catalog.setval('public.users_id_seq', 25, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment