-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.sql
2964 lines (1979 loc) · 84.2 KB
/
schema.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 9.6.10
-- Dumped by pg_dump version 9.6.11
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 client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: data_allegation; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_allegation (
crid character varying(30) NOT NULL,
summary text NOT NULL,
add2 character varying(255) NOT NULL,
city character varying(255) NOT NULL,
incident_date timestamp with time zone,
point public.geometry(Point,4326),
source character varying(20) NOT NULL,
beat_id integer,
is_officer_complaint boolean NOT NULL,
add1 character varying(16) NOT NULL,
location character varying(64) NOT NULL,
old_complaint_address character varying(255),
first_end_date date,
first_start_date date,
most_common_category_id integer,
coaccused_count integer,
subjects character varying(255)[] NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_allegation OWNER TO cpdb;
--
-- Name: data_allegation_areas; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_allegation_areas (
id integer NOT NULL,
allegation_id character varying(30) NOT NULL,
area_id integer NOT NULL
);
ALTER TABLE public.data_allegation_areas OWNER TO cpdb;
--
-- Name: data_allegation_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_allegation_areas_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_allegation_areas_id_seq OWNER TO cpdb;
--
-- Name: data_allegation_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_allegation_areas_id_seq OWNED BY public.data_allegation_areas.id;
--
-- Name: data_allegation_line_areas; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_allegation_line_areas (
id integer NOT NULL,
allegation_id character varying(30) NOT NULL,
linearea_id integer NOT NULL
);
ALTER TABLE public.data_allegation_line_areas OWNER TO cpdb;
--
-- Name: data_allegation_line_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_allegation_line_areas_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_allegation_line_areas_id_seq OWNER TO cpdb;
--
-- Name: data_allegation_line_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_allegation_line_areas_id_seq OWNED BY public.data_allegation_line_areas.id;
--
-- Name: data_allegationcategory; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_allegationcategory (
id integer NOT NULL,
category_code character varying(255) NOT NULL,
category character varying(255) NOT NULL,
allegation_name character varying(255) NOT NULL,
on_duty boolean NOT NULL,
citizen_dept character varying(50) NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_allegationcategory OWNER TO cpdb;
--
-- Name: data_allegationcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_allegationcategory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_allegationcategory_id_seq OWNER TO cpdb;
--
-- Name: data_allegationcategory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_allegationcategory_id_seq OWNED BY public.data_allegationcategory.id;
--
-- Name: data_area; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_area (
id integer NOT NULL,
name character varying(100) NOT NULL,
area_type character varying(30) NOT NULL,
polygon public.geometry(MultiPolygon,4326),
tags character varying(20)[] NOT NULL,
median_income character varying(100),
alderman character varying(255),
commander_id integer,
description character varying(255),
police_hq_id integer,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_area OWNER TO cpdb;
--
-- Name: data_area_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_area_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_area_id_seq OWNER TO cpdb;
--
-- Name: data_area_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_area_id_seq OWNED BY public.data_area.id;
--
-- Name: data_attachmentfile; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_attachmentfile (
id integer NOT NULL,
file_type character varying(10) NOT NULL,
title character varying(255),
url character varying(255) NOT NULL,
additional_info jsonb,
tag character varying(50) NOT NULL,
original_url character varying(255) NOT NULL,
external_created_at timestamp with time zone,
external_last_updated timestamp with time zone,
preview_image_url character varying(255),
external_id character varying(255) NOT NULL,
source_type character varying(255) NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
text_content text NOT NULL,
allegation_id character varying(30) NOT NULL,
downloads_count integer NOT NULL,
views_count integer NOT NULL,
show boolean NOT NULL,
notifications_count integer NOT NULL,
pages integer NOT NULL,
manually_updated boolean NOT NULL,
last_updated_by_id integer,
pending_documentcloud_id character varying(255),
upload_fail_attempts integer NOT NULL
);
ALTER TABLE public.data_attachmentfile OWNER TO cpdb;
--
-- Name: data_attachmentfile_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_attachmentfile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_attachmentfile_id_seq OWNER TO cpdb;
--
-- Name: data_attachmentfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_attachmentfile_id_seq OWNED BY public.data_attachmentfile.id;
--
-- Name: data_award; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_award (
id integer NOT NULL,
award_type character varying(255) NOT NULL,
start_date date,
end_date date,
current_status character varying(20) NOT NULL,
request_date date NOT NULL,
rank character varying(100) NOT NULL,
last_promotion_date date,
requester_full_name character varying(255),
ceremony_date date,
tracking_no character varying(255),
officer_id integer NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_award OWNER TO cpdb;
--
-- Name: data_award_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_award_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_award_id_seq OWNER TO cpdb;
--
-- Name: data_award_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_award_id_seq OWNED BY public.data_award.id;
--
-- Name: data_complainant; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_complainant (
id integer NOT NULL,
gender character varying(1) NOT NULL,
race character varying(50) NOT NULL,
age integer,
birth_year integer,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
allegation_id character varying(30)
);
ALTER TABLE public.data_complainant OWNER TO cpdb;
--
-- Name: data_complainant_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_complainant_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_complainant_id_seq OWNER TO cpdb;
--
-- Name: data_complainant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_complainant_id_seq OWNED BY public.data_complainant.id;
--
-- Name: data_investigator; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_investigator (
id integer NOT NULL,
appointed_date date,
first_name character varying(255),
last_name character varying(255),
middle_initial character varying(5),
officer_id integer,
suffix_name character varying(5),
gender character varying(1) NOT NULL,
race character varying(50) NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_investigator OWNER TO cpdb;
--
-- Name: data_investigator_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_investigator_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_investigator_id_seq OWNER TO cpdb;
--
-- Name: data_investigator_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_investigator_id_seq OWNED BY public.data_investigator.id;
--
-- Name: data_investigatorallegation; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_investigatorallegation (
id integer NOT NULL,
current_star character varying(10),
current_rank character varying(100),
current_unit_id integer,
investigator_id integer NOT NULL,
investigator_type character varying(32),
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
allegation_id character varying(30) NOT NULL
);
ALTER TABLE public.data_investigatorallegation OWNER TO cpdb;
--
-- Name: data_investigatorallegation_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_investigatorallegation_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_investigatorallegation_id_seq OWNER TO cpdb;
--
-- Name: data_investigatorallegation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_investigatorallegation_id_seq OWNED BY public.data_investigatorallegation.id;
--
-- Name: data_involvement; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_involvement (
id integer NOT NULL,
full_name character varying(50) NOT NULL,
involved_type character varying(25) NOT NULL,
gender character varying(1),
race character varying(50) NOT NULL,
age integer,
officer_id integer,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
allegation_id character varying(30) NOT NULL
);
ALTER TABLE public.data_involvement OWNER TO cpdb;
--
-- Name: data_involvement_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_involvement_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_involvement_id_seq OWNER TO cpdb;
--
-- Name: data_involvement_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_involvement_id_seq OWNED BY public.data_involvement.id;
--
-- Name: data_linearea; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_linearea (
id integer NOT NULL,
name character varying(100) NOT NULL,
linearea_type character varying(30) NOT NULL,
geom public.geometry(MultiLineString,4326) NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_linearea OWNER TO cpdb;
--
-- Name: data_linearea_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_linearea_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_linearea_id_seq OWNER TO cpdb;
--
-- Name: data_linearea_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_linearea_id_seq OWNED BY public.data_linearea.id;
--
-- Name: data_officer; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_officer (
id integer NOT NULL,
gender character varying(1) NOT NULL,
race character varying(50) NOT NULL,
appointed_date date,
rank character varying(100) NOT NULL,
active character varying(10) NOT NULL,
birth_year integer,
first_name character varying(255) NOT NULL,
last_name character varying(255) NOT NULL,
tags character varying(20)[] NOT NULL,
middle_initial character varying(5),
suffix_name character varying(5),
resignation_date date,
complaint_percentile numeric(6,4),
middle_initial2 character varying(5),
civilian_allegation_percentile numeric(6,4),
honorable_mention_percentile numeric(6,4),
internal_allegation_percentile numeric(6,4),
trr_percentile numeric(6,4),
allegation_count integer,
sustained_count integer,
civilian_compliment_count integer,
current_badge character varying(10),
current_salary integer,
discipline_count integer,
honorable_mention_count integer,
last_unit_id integer,
major_award_count integer,
trr_count integer,
unsustained_count integer,
has_unique_name boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
CONSTRAINT data_officer_current_salary_check CHECK ((current_salary >= 0))
);
ALTER TABLE public.data_officer OWNER TO cpdb;
--
-- Name: data_officer_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_officer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_officer_id_seq OWNER TO cpdb;
--
-- Name: data_officer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_officer_id_seq OWNED BY public.data_officer.id;
--
-- Name: data_officeralias; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_officeralias (
id integer NOT NULL,
old_officer_id integer NOT NULL,
new_officer_id integer NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_officeralias OWNER TO cpdb;
--
-- Name: data_officeralias_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_officeralias_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_officeralias_id_seq OWNER TO cpdb;
--
-- Name: data_officeralias_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_officeralias_id_seq OWNED BY public.data_officeralias.id;
--
-- Name: data_officerallegation; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_officerallegation (
id integer NOT NULL,
start_date date,
end_date date,
officer_age integer,
recc_finding character varying(2) NOT NULL,
recc_outcome character varying(32) NOT NULL,
final_finding character varying(2) NOT NULL,
final_outcome character varying(32) NOT NULL,
final_outcome_class character varying(20) NOT NULL,
allegation_category_id integer,
officer_id integer,
disciplined boolean,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
allegation_id character varying(30)
);
ALTER TABLE public.data_officerallegation OWNER TO cpdb;
--
-- Name: data_officerallegation_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_officerallegation_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_officerallegation_id_seq OWNER TO cpdb;
--
-- Name: data_officerallegation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_officerallegation_id_seq OWNED BY public.data_officerallegation.id;
--
-- Name: data_officerbadgenumber; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_officerbadgenumber (
id integer NOT NULL,
star character varying(10) NOT NULL,
current boolean NOT NULL,
officer_id integer,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_officerbadgenumber OWNER TO cpdb;
--
-- Name: data_officerbadgenumber_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_officerbadgenumber_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_officerbadgenumber_id_seq OWNER TO cpdb;
--
-- Name: data_officerbadgenumber_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_officerbadgenumber_id_seq OWNED BY public.data_officerbadgenumber.id;
--
-- Name: data_officerhistory; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_officerhistory (
id integer NOT NULL,
effective_date date,
end_date date,
officer_id integer,
unit_id integer,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_officerhistory OWNER TO cpdb;
--
-- Name: data_officerhistory_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_officerhistory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_officerhistory_id_seq OWNER TO cpdb;
--
-- Name: data_officerhistory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_officerhistory_id_seq OWNED BY public.data_officerhistory.id;
--
-- Name: data_officeryearlypercentile; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_officeryearlypercentile (
id integer NOT NULL,
year integer NOT NULL,
percentile_trr numeric(6,4),
percentile_allegation numeric(6,4),
percentile_allegation_civilian numeric(6,4),
percentile_allegation_internal numeric(6,4),
officer_id integer NOT NULL
);
ALTER TABLE public.data_officeryearlypercentile OWNER TO cpdb;
--
-- Name: data_officeryearlypercentile_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_officeryearlypercentile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_officeryearlypercentile_id_seq OWNER TO cpdb;
--
-- Name: data_officeryearlypercentile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_officeryearlypercentile_id_seq OWNED BY public.data_officeryearlypercentile.id;
--
-- Name: data_pipeline_appliedfixture; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_pipeline_appliedfixture (
id integer NOT NULL,
file_name character varying(255) NOT NULL,
created date NOT NULL
);
ALTER TABLE public.data_pipeline_appliedfixture OWNER TO cpdb;
--
-- Name: data_pipeline_appliedfixture_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_pipeline_appliedfixture_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_pipeline_appliedfixture_id_seq OWNER TO cpdb;
--
-- Name: data_pipeline_appliedfixture_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_pipeline_appliedfixture_id_seq OWNED BY public.data_pipeline_appliedfixture.id;
--
-- Name: data_policeunit; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_policeunit (
id integer NOT NULL,
unit_name character varying(5) NOT NULL,
description character varying(255),
tags character varying(20)[] NOT NULL,
active boolean,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
);
ALTER TABLE public.data_policeunit OWNER TO cpdb;
--
-- Name: data_policeunit_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_policeunit_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_policeunit_id_seq OWNER TO cpdb;
--
-- Name: data_policeunit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_policeunit_id_seq OWNED BY public.data_policeunit.id;
--
-- Name: data_policewitness; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_policewitness (
id integer NOT NULL,
officer_id integer,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
allegation_id character varying(30)
);
ALTER TABLE public.data_policewitness OWNER TO cpdb;
--
-- Name: data_policewitness_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_policewitness_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_policewitness_id_seq OWNER TO cpdb;
--
-- Name: data_policewitness_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_policewitness_id_seq OWNED BY public.data_policewitness.id;
--
-- Name: data_racepopulation; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_racepopulation (
id integer NOT NULL,
race character varying(255) NOT NULL,
count integer NOT NULL,
area_id integer NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
CONSTRAINT data_racepopulation_count_check CHECK ((count >= 0))
);
ALTER TABLE public.data_racepopulation OWNER TO cpdb;
--
-- Name: data_racepopulation_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_racepopulation_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_racepopulation_id_seq OWNER TO cpdb;
--
-- Name: data_racepopulation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_racepopulation_id_seq OWNED BY public.data_racepopulation.id;
--
-- Name: data_salary; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_salary (
id integer NOT NULL,
pay_grade character varying(16) NOT NULL,
rank character varying(64),
salary integer NOT NULL,
employee_status character varying(32) NOT NULL,
org_hire_date date,
spp_date date,
start_date date,
year smallint NOT NULL,
age_at_hire smallint,
officer_id integer NOT NULL,
rank_changed boolean NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
CONSTRAINT data_salary_age_at_hire_check CHECK ((age_at_hire >= 0)),
CONSTRAINT data_salary_salary_check CHECK ((salary >= 0)),
CONSTRAINT data_salary_year_check CHECK ((year >= 0))
);
ALTER TABLE public.data_salary OWNER TO cpdb;
--
-- Name: data_salary_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_salary_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_salary_id_seq OWNER TO cpdb;
--
-- Name: data_salary_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_salary_id_seq OWNED BY public.data_salary.id;
--
-- Name: data_versioning_changelog; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_versioning_changelog (
id integer NOT NULL,
created timestamp with time zone NOT NULL,
target_model character varying(255) NOT NULL,
log_type integer NOT NULL,
object_pk integer,
content jsonb NOT NULL,
source jsonb NOT NULL
);
ALTER TABLE public.data_versioning_changelog OWNER TO cpdb;
--
-- Name: data_versioning_changelog_id_seq; Type: SEQUENCE; Schema: public; Owner: cpdb
--
CREATE SEQUENCE public.data_versioning_changelog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.data_versioning_changelog_id_seq OWNER TO cpdb;
--
-- Name: data_versioning_changelog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: cpdb
--
ALTER SEQUENCE public.data_versioning_changelog_id_seq OWNED BY public.data_versioning_changelog.id;
--
-- Name: data_victim; Type: TABLE; Schema: public; Owner: cpdb
--
CREATE TABLE public.data_victim (
id integer NOT NULL,
gender character varying(1) NOT NULL,
race character varying(50) NOT NULL,