-
Notifications
You must be signed in to change notification settings - Fork 0
/
cardbDump.sql
1186 lines (836 loc) · 38.5 KB
/
cardbDump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 16.1 (Homebrew)
-- Dumped by pg_dump version 16.1
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO iankleinfeld;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO iankleinfeld;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE 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
);
ALTER TABLE public.auth_permission OWNER TO iankleinfeld;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE 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
);
ALTER TABLE public.auth_user OWNER TO iankleinfeld;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.auth_user_groups (
id bigint NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO iankleinfeld;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.auth_user_user_permissions (
id bigint NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO iankleinfeld;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: carsapp_car; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.carsapp_car (
id bigint NOT NULL,
name character varying(100),
make character varying(100),
model character varying(100),
photo_url character varying(255),
description text,
color character varying(100),
"trim" character varying(100),
year character varying(4),
user_id integer NOT NULL
);
ALTER TABLE public.carsapp_car OWNER TO iankleinfeld;
--
-- Name: carsapp_car_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER TABLE public.carsapp_car ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.carsapp_car_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: carsapp_comment; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.carsapp_comment (
id bigint NOT NULL,
comment character varying(500),
car_id bigint NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.carsapp_comment OWNER TO iankleinfeld;
--
-- Name: carsapp_comment_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER TABLE public.carsapp_comment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.carsapp_comment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: carsapp_profile; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.carsapp_profile (
id bigint NOT NULL,
name character varying(500) NOT NULL,
location character varying(500),
photo_url character varying(500),
about character varying(1500),
user_id integer NOT NULL
);
ALTER TABLE public.carsapp_profile OWNER TO iankleinfeld;
--
-- Name: carsapp_profile_collection; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.carsapp_profile_collection (
id bigint NOT NULL,
profile_id bigint NOT NULL,
car_id bigint NOT NULL
);
ALTER TABLE public.carsapp_profile_collection OWNER TO iankleinfeld;
--
-- Name: carsapp_profile_collection_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER TABLE public.carsapp_profile_collection ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.carsapp_profile_collection_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: carsapp_profile_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER TABLE public.carsapp_profile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.carsapp_profile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE 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))
);
ALTER TABLE public.django_admin_log OWNER TO iankleinfeld;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO iankleinfeld;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE 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
);
ALTER TABLE public.django_migrations OWNER TO iankleinfeld;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: iankleinfeld
--
ALTER 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
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: iankleinfeld
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO iankleinfeld;
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.auth_group (id, name) FROM stdin;
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
1 Can add log entry 1 add_logentry
2 Can change log entry 1 change_logentry
3 Can delete log entry 1 delete_logentry
4 Can view log entry 1 view_logentry
5 Can add permission 2 add_permission
6 Can change permission 2 change_permission
7 Can delete permission 2 delete_permission
8 Can view permission 2 view_permission
9 Can add group 3 add_group
10 Can change group 3 change_group
11 Can delete group 3 delete_group
12 Can view group 3 view_group
13 Can add user 4 add_user
14 Can change user 4 change_user
15 Can delete user 4 delete_user
16 Can view user 4 view_user
17 Can add content type 5 add_contenttype
18 Can change content type 5 change_contenttype
19 Can delete content type 5 delete_contenttype
20 Can view content type 5 view_contenttype
21 Can add session 6 add_session
22 Can change session 6 change_session
23 Can delete session 6 delete_session
24 Can view session 6 view_session
25 Can add car 7 add_car
26 Can change car 7 change_car
27 Can delete car 7 delete_car
28 Can view car 7 view_car
29 Can add comment 8 add_comment
30 Can change comment 8 change_comment
31 Can delete comment 8 delete_comment
32 Can view comment 8 view_comment
33 Can add profile 9 add_profile
34 Can change profile 9 change_profile
35 Can delete profile 9 delete_profile
36 Can view profile 9 view_profile
\.
--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.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$720000$l5HKaCRbyC9U45mauqHk7x$+LkMpb1tta9GJ4XUznAzfjMIaqAizftwfXNAGJMbhkg= 2024-01-27 10:22:29.908809-05 t django t t 2024-01-16 21:36:42.119058-05
12 pbkdf2_sha256$720000$H4lbZu8TZw7N2v58PMMaZx$swVSSxtTaMplOZh3m8Ah+mjRbQMPybT70YUzbUNmv8I= 2024-01-27 10:32:57.716258-05 f IWORKDAMMIT f t 2024-01-27 10:32:46.852356-05
13 pbkdf2_sha256$720000$8MLZ0XFrVkc2kpslEW54B7$2RtQts+ZfN83rjQ8TJZXqbZjdnNhvYNhixDMJTelUAA= \N f LC f t 2024-01-27 10:38:46.944336-05
14 pbkdf2_sha256$720000$zYBHnc1i1BFJvbvQDk1FeZ$kT1fOoOvKPHABwqwt1xjvEWmPrJiwRxPcD5MF9wLooM= \N f Babou f t 2024-01-27 10:39:18.426983-05
15 pbkdf2_sha256$720000$v2vfit251JHkhhgQ5UgvRr$XyijGEhH9Pb7O7d3mSN49RD+5pP06Xh90MAFl+qTtOA= 2024-01-27 10:57:07.788152-05 f HelloKitty f t 2024-01-27 10:39:52.674864-05
16 pbkdf2_sha256$720000$l5trRLWSxLTyKWzWeZSnPi$svQEURcL98fw3fnC5vELy2JqiUWK8zxW2Iry5GNK+jU= 2024-01-27 11:52:31.261166-05 f SomeGuy f t 2024-01-27 11:52:20.992569-05
\.
--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.auth_user_groups (id, user_id, group_id) FROM stdin;
\.
--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
\.
--
-- Data for Name: carsapp_car; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.carsapp_car (id, name, make, model, photo_url, description, color, "trim", year, user_id) FROM stdin;
2 Matilda Volkswagen Bus https://evilgeniuscreative.com/matilda-side.jpg I imported this from the UK. It's right hand drive, has skylights, and is named after my late grandmother, Matilda. Blue Dormobile camper 1971 13
3 Hola Amigo Chevrolet Corvair Rampside https://evilgeniuscreative.com/chevysiderail.jpg Don't stop me now Blue Pickup 1964 14
1 Hello Beety Volkswagen Super Beetle https://evilgeniuscreative.com/mulva.jpg Yellow cars Yellow Convertible 1973 12
5 Maxwell Volkswagen Karmann Ghia http://tinyurl.com/5t2rvscr My first Karmann Ghia back in the days when they were just a couple of thousand dollars. Burgundy/Black Convertible 1971 12
4 Reddy Mc Redderson Ford Model T https://evilgeniuscreative.com/modelt.jpg Another resident of the North Carolina Museum of Transportation, one of the originals. Red Roadster 1925 15
10 WOWSER Lamborghini Miuia https://evilgeniuscreative.com/miura.jpeg The Lamborghini Miura is a sports car produced by Italian automaker Lamborghini between 1966 and 1973. The car was the first supercar with a rear mid-engined two-seat layout, although the concept was first seen in a production road car with René Bonnet's Matra Djet, introduced in 1964. This layout has since become the standard for high-performance sports and supercars. When released, it was the fastest production road car. Red P400 S 1970 15
11 Ricky Racer Ferarri P330 P4 https://www.classicandsportscar.com/sites/default/files/styles/slideshow_slide/public/cloned-files/Classic_Sports_Car_Designers_003_330_MH.png?itok=cNjXOgmR Leonardo Fioravanti worked his way up the ranks at Pininfarina between 1964 and 1984, where he was responsible for the Ferrari Berlinetta Boxer, Dino and 308GTB, Lancia’s Gamma and many others.\r\n\r\nOf all the cars he’d seen and experienced, Fioravanti plumped for the fabled Ferrari 330 P3/4 as one of his top three: “This is absolutely the best race monster: beautiful, voluptuous and mysterious.”\r\n\r\nHis other two picks? The Citroën DS and Audi’s classic A6 saloon, which he called “a beautiful example of excessive, caricatured and not very functional car styling”. Red 330 P3/4 1972 15
6 Ian's Jag Jaguar XK-E https://evilgeniuscreative.com/xke.jpg I love this car. One of the top 5 most beautiful cars ever built, a timeless classic and more and more quickly becoming far, far out of my price range, usually starting at about $120,000US Pearlescent Light Blue Roadster 1967 13
\.
--
-- Data for Name: carsapp_comment; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.carsapp_comment (id, comment, car_id, user_id) FROM stdin;
1 This is a Karmann Ghia, a car I have been in love with since I was probably four or five. 5 12
2 Karmann designed the style to be one of the most beautiful designs for the next 50-100 years. And he succeeded, don't you think? 5 13
6 ce me rendre fou 1 15
8 HOLY $%^&*()_ 11 15
9 Ghias are beautiful 5 15
10 What a cool ol pickup 3 15
\.
--
-- Data for Name: carsapp_profile; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.carsapp_profile (id, name, location, photo_url, about, user_id) FROM stdin;
3 IWORKDAMMIT \N \N \N 12
4 LC \N \N \N 13
5 Babou \N \N \N 14
6 HelloKitty \N \N \N 15
9 SomeGuy \N \N \N 16
\.
--
-- Data for Name: carsapp_profile_collection; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.carsapp_profile_collection (id, profile_id, car_id) FROM stdin;
5 6 1
6 6 11
7 6 5
8 6 4
9 6 6
\.
--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
1 2024-01-16 21:47:07.398418-05 1 Mulva 1 [{"added": {}}] 7 1
2 2024-01-16 21:50:54.798402-05 2 Matilda 1 [{"added": {}}] 7 1
3 2024-01-16 21:52:41.715854-05 3 Ol Blue 1 [{"added": {}}] 7 1
4 2024-01-16 21:53:46.261004-05 4 Grandpa 1 [{"added": {}}] 7 1
5 2024-01-16 22:01:35.119794-05 5 Harriet 1 [{"added": {}}] 7 1
6 2024-01-16 22:01:51.833915-05 2 Matilda 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
7 2024-01-16 22:44:08.682137-05 4 Grandpa 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
8 2024-01-16 22:46:19.120753-05 3 Ol Blue 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
9 2024-01-16 22:47:38.384757-05 3 Ol Blue 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
10 2024-01-16 22:48:54.697118-05 1 Mulva 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
11 2024-01-16 22:50:02.71264-05 2 Matilda 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
12 2024-01-16 22:51:08.575574-05 2 Matilda 2 [] 7 1
13 2024-01-17 19:37:19.751397-05 6 My Dream Car 1 [{"added": {}}] 7 1
14 2024-01-17 19:39:58.602537-05 2 Matilda 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
15 2024-01-17 19:41:05.087618-05 6 My Dream Car 2 [{"changed": {"fields": ["Photo url", "Description"]}}] 7 1
16 2024-01-17 19:41:38.377509-05 4 Grandpa 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
17 2024-01-17 19:41:58.852726-05 3 Ol Blue 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
18 2024-01-17 19:42:14.94864-05 1 Mulva 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
19 2024-01-17 19:52:32.209634-05 2 Matilda 2 [{"changed": {"fields": ["Photo url"]}}] 7 1
20 2024-01-17 19:55:09.324534-05 4 Grandpa 2 [{"changed": {"fields": ["Model"]}}] 7 1
21 2024-01-18 19:27:37.847597-05 1 This is a Karmann Ghia, a car I have been in love with since I was probably four or five. 1 [{"added": {}}] 8 1
22 2024-01-18 19:28:47.745199-05 2 Karmann designed the style to be one of the most beautiful designs for the next 50-100 years. And he succeeded, don't you think? 1 [{"added": {}}] 8 1
23 2024-01-27 10:32:10.189013-05 11 AmIAProfile 3 4 1
24 2024-01-27 10:32:10.192232-05 4 bratty 3 4 1
25 2024-01-27 10:32:10.196353-05 8 feverdream 3 4 1
26 2024-01-27 10:32:10.197338-05 10 hellokitty 3 4 1
27 2024-01-27 10:32:10.207225-05 2 ian 3 4 1
28 2024-01-27 10:32:10.208226-05 9 moustache 3 4 1
29 2024-01-27 10:32:10.210154-05 5 peachy 3 4 1
30 2024-01-27 10:32:10.211724-05 3 testy 3 4 1
31 2024-01-27 10:32:10.212936-05 6 towmater 3 4 1
32 2024-01-27 10:32:10.213772-05 7 username 3 4 1
\.
--
-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.django_content_type (id, app_label, model) FROM stdin;
1 admin logentry
2 auth permission
3 auth group
4 auth user
5 contenttypes contenttype
6 sessions session
7 carsapp car
8 carsapp comment
9 carsapp profile
\.
--
-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.django_migrations (id, app, name, applied) FROM stdin;
1 contenttypes 0001_initial 2024-01-16 21:00:03.025196-05
2 auth 0001_initial 2024-01-16 21:00:03.075557-05
3 admin 0001_initial 2024-01-16 21:00:03.093989-05
4 admin 0002_logentry_remove_auto_add 2024-01-16 21:00:03.100471-05
5 admin 0003_logentry_add_action_flag_choices 2024-01-16 21:00:03.108039-05
6 contenttypes 0002_remove_content_type_name 2024-01-16 21:00:03.125056-05
7 auth 0002_alter_permission_name_max_length 2024-01-16 21:00:03.132195-05
8 auth 0003_alter_user_email_max_length 2024-01-16 21:00:03.141143-05
9 auth 0004_alter_user_username_opts 2024-01-16 21:00:03.167962-05
10 auth 0005_alter_user_last_login_null 2024-01-16 21:00:03.175817-05
11 auth 0006_require_contenttypes_0002 2024-01-16 21:00:03.176634-05
12 auth 0007_alter_validators_add_error_messages 2024-01-16 21:00:03.186788-05
13 auth 0008_alter_user_username_max_length 2024-01-16 21:00:03.197298-05
14 auth 0009_alter_user_last_name_max_length 2024-01-16 21:00:03.2048-05
15 auth 0010_alter_group_name_max_length 2024-01-16 21:00:03.214309-05
16 auth 0011_update_proxy_permissions 2024-01-16 21:00:03.222919-05
17 auth 0012_alter_user_first_name_max_length 2024-01-16 21:00:03.23018-05
18 sessions 0001_initial 2024-01-16 21:00:03.239103-05
19 carsapp 0001_initial 2024-01-16 21:31:56.036625-05
20 carsapp 0002_comment 2024-01-16 21:36:12.406407-05
21 carsapp 0003_car_color_car_trim_car_year_alter_car_description_and_more 2024-01-16 21:43:54.046872-05
22 carsapp 0004_alter_car_description_alter_car_photo_url 2024-01-16 21:45:11.168561-05
23 carsapp 0005_comment_user_alter_comment_car_alter_comment_comment 2024-01-20 13:09:59.340827-05
24 carsapp 0006_car_user 2024-01-20 13:42:10.462119-05
25 carsapp 0007_alter_car_user 2024-01-20 13:43:10.891713-05
26 carsapp 0008_profile 2024-01-20 14:28:06.580814-05
\.
--
-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: iankleinfeld
--
COPY public.django_session (session_key, session_data, expire_date) FROM stdin;
pkpsfi9133rzo6gh024lynubfxlb7aps e30:1rRNLf:Geh8416n_t39xg4YcvzM2REjHh9rBMMdkPVbCa0EUQc 2024-02-03 21:14:11.717065-05
o22i4uciye2glgx5tjeabi8q5bf2kn9o e30:1rRNLw:HBFbVAcalsDYBVvg8s2TrpZYn7Imf72zTMhA4ln7IMY 2024-02-03 21:14:28.932457-05
q4dmpkcvalwsihup0m8tz9eda6wdc27n e30:1rSTlI:IgTNIJ_uoW6URe49QFu1cQ90mkcOoJ_0kq0CHIAWJno 2024-02-06 22:17:12.432568-05
p2pcxhruxc7sqw6rwcoaf82zmxxd403s .eJxVjDsOwjAQBe_iGlkbG_8o6TmDtd61cQA5UpxUiLuTSCmgnZn33iLiutS49jzHkcVFDEacfmFCeua2G35gu0-SprbMY5J7Ig_b5W3i_Loe7d9BxV63tc0lqUQGPJ5d8EDBKNbZIlgPjDR4X5y34ErQiUKBjRcurDVrwKzE5wsM2zhC:1rTkqH:G9mSxUYsSVXDEnuz9Ojay_Bxez2_06xDBwFn4tgBtvU 2024-02-10 10:43:37.213871-05
\.
--
-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false);
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false);
--
-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.auth_permission_id_seq', 36, true);
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 1, false);
--
-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.auth_user_id_seq', 16, true);
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false);
--
-- Name: carsapp_car_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.carsapp_car_id_seq', 12, true);
--
-- Name: carsapp_comment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.carsapp_comment_id_seq', 11, true);
--
-- Name: carsapp_profile_collection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.carsapp_profile_collection_id_seq', 9, true);
--
-- Name: carsapp_profile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.carsapp_profile_id_seq', 9, true);
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.django_admin_log_id_seq', 32, true);
--
-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.django_content_type_id_seq', 9, true);
--
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iankleinfeld
--
SELECT pg_catalog.setval('public.django_migrations_id_seq', 26, true);
--
-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_name_key UNIQUE (name);
--
-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id);
--
-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);
--
-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename);
--
-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id);
--
-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id);
--
-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_username_key UNIQUE (username);
--
-- Name: carsapp_car carsapp_car_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.carsapp_car
ADD CONSTRAINT carsapp_car_pkey PRIMARY KEY (id);
--
-- Name: carsapp_comment carsapp_comment_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.carsapp_comment
ADD CONSTRAINT carsapp_comment_pkey PRIMARY KEY (id);
--
-- Name: carsapp_profile_collection carsapp_profile_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.carsapp_profile_collection
ADD CONSTRAINT carsapp_profile_collection_pkey PRIMARY KEY (id);
--
-- Name: carsapp_profile_collection carsapp_profile_collection_profile_id_car_id_79c359d8_uniq; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.carsapp_profile_collection
ADD CONSTRAINT carsapp_profile_collection_profile_id_car_id_79c359d8_uniq UNIQUE (profile_id, car_id);
--
-- Name: carsapp_profile carsapp_profile_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.carsapp_profile
ADD CONSTRAINT carsapp_profile_pkey PRIMARY KEY (id);
--
-- Name: carsapp_profile carsapp_profile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.carsapp_profile
ADD CONSTRAINT carsapp_profile_user_id_key UNIQUE (user_id);
--
-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);
--
-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model);
--
-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);
--
-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.django_migrations
ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);
--
-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: iankleinfeld
--
ALTER TABLE ONLY public.django_session
ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);
--
-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops);
--
-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id);
--
-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id);
--
-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id);
--
-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id);
--
-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id);
--
-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id);
--
-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id);
--
-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: iankleinfeld
--
CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops);
--