-
Notifications
You must be signed in to change notification settings - Fork 1
/
pkgbase_schema.sql
executable file
·2315 lines (1740 loc) · 71.5 KB
/
pkgbase_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
-- THIS FILE IS OUT OF DATE
-- Database creation is now under the control of the Warehouse project. This
-- file does not reflect the current schema of the PyPI service.
-- NOTE: PyPI requires the citext extension
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: accounts_email; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE accounts_email (
id integer NOT NULL,
user_id integer NOT NULL,
email character varying(254) NOT NULL,
"primary" boolean NOT NULL,
verified boolean NOT NULL
);
--
-- Name: accounts_email_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE accounts_email_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: accounts_email_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE accounts_email_id_seq OWNED BY accounts_email.id;
--
-- Name: accounts_gpgkey; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE accounts_gpgkey (
id integer NOT NULL,
user_id integer NOT NULL,
key_id citext NOT NULL,
verified boolean NOT NULL,
CONSTRAINT accounts_gpgkey_valid_key_id CHECK ((key_id ~* '^[A-F0-9]{8}$'::citext))
);
--
-- Name: accounts_gpgkey_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE accounts_gpgkey_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: accounts_gpgkey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE accounts_gpgkey_id_seq OWNED BY accounts_gpgkey.id;
--
-- Name: accounts_user; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE accounts_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone NOT NULL,
is_superuser boolean NOT NULL,
username citext NOT NULL,
name character varying(100) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone DEFAULT now(),
CONSTRAINT accounts_user_username_length CHECK ((length((username)::text) <= 50)),
CONSTRAINT accounts_user_valid_username CHECK ((username ~* '^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$'::citext))
);
--
-- Name: accounts_user_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE accounts_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: accounts_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE accounts_user_id_seq OWNED BY accounts_user.id;
--
-- Name: alembic_version; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE alembic_version (
version_num character varying(32) NOT NULL
);
SET default_with_oids = true;
--
-- Name: browse_tally; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE browse_tally (
trove_id integer NOT NULL,
tally integer
);
--
-- Name: cheesecake_main_indices; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE cheesecake_main_indices (
id integer NOT NULL,
absolute integer NOT NULL,
relative integer NOT NULL
);
--
-- Name: cheesecake_main_indices_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE cheesecake_main_indices_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: cheesecake_main_indices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE cheesecake_main_indices_id_seq OWNED BY cheesecake_main_indices.id;
--
-- Name: cheesecake_subindices; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE cheesecake_subindices (
main_index_id integer NOT NULL,
name text NOT NULL,
value integer NOT NULL,
details text NOT NULL
);
SET default_with_oids = false;
--
-- Name: comments; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE comments (
id integer NOT NULL,
rating integer,
user_name citext,
date timestamp without time zone,
message text,
in_reply_to integer
);
--
-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE comments_id_seq OWNED BY comments.id;
--
-- Name: comments_journal; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE comments_journal (
name text,
version text,
id integer,
submitted_by citext,
date timestamp without time zone,
action text
);
--
-- Name: cookies; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE cookies (
cookie text NOT NULL,
name citext,
last_seen timestamp without time zone
);
--
-- Name: csrf_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE csrf_tokens (
name citext NOT NULL,
token text,
end_date timestamp without time zone
);
SET default_with_oids = true;
--
-- Name: description_urls; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE description_urls (
name text,
version text,
url text,
id integer NOT NULL
);
--
-- Name: description_urls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE description_urls_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: description_urls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE description_urls_id_seq OWNED BY description_urls.id;
--
-- Name: dual; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE dual (
dummy integer
);
--
-- Name: journals; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE journals (
name text,
version text,
action text,
submitted_date timestamp without time zone,
submitted_by citext,
submitted_from text,
id integer NOT NULL
);
--
-- Name: journals_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE journals_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: journals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE journals_id_seq OWNED BY journals.id;
SET default_with_oids = false;
--
-- Name: mirrors; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE mirrors (
ip text NOT NULL,
user_name citext,
index_url text,
last_modified_url text,
local_stats_url text,
stats_url text,
mirrors_url text
);
--
-- Name: oauth_access_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE oauth_access_tokens (
token character varying(32) NOT NULL,
secret character varying(64) NOT NULL,
consumer character varying(32) NOT NULL,
date_created date NOT NULL,
last_modified date NOT NULL,
user_name citext
);
--
-- Name: oauth_consumers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE oauth_consumers (
consumer character varying(32) NOT NULL,
secret character varying(64) NOT NULL,
date_created date NOT NULL,
created_by citext,
last_modified date NOT NULL,
description character varying(255) NOT NULL
);
--
-- Name: oauth_nonce; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE oauth_nonce (
"timestamp" integer NOT NULL,
consumer character varying(32) NOT NULL,
nonce character varying(32) NOT NULL,
token character varying(32)
);
--
-- Name: oauth_request_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE oauth_request_tokens (
token character varying(32) NOT NULL,
secret character varying(64) NOT NULL,
consumer character varying(32) NOT NULL,
callback text,
date_created date NOT NULL,
user_name citext
);
--
-- Name: oid_associations; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE oid_associations (
server_url character varying(2047) NOT NULL,
handle character varying(255) NOT NULL,
secret bytea NOT NULL,
issued integer NOT NULL,
lifetime integer NOT NULL,
assoc_type character varying(64) NOT NULL,
CONSTRAINT secret_length_constraint CHECK ((length(secret) <= 128))
);
--
-- Name: oid_nonces; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE oid_nonces (
server_url character varying(2047) NOT NULL,
"timestamp" integer NOT NULL,
salt character(40) NOT NULL
);
--
-- Name: openid_discovered; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE openid_discovered (
created timestamp without time zone,
url text NOT NULL,
services bytea,
op_endpoint text,
op_local text
);
--
-- Name: openid_nonces; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE openid_nonces (
created timestamp without time zone,
nonce text
);
--
-- Name: openid_sessions; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE openid_sessions (
id integer NOT NULL,
url text,
assoc_handle text,
expires timestamp without time zone,
mac_key text
);
--
-- Name: openid_sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE openid_sessions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: openid_sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE openid_sessions_id_seq OWNED BY openid_sessions.id;
--
-- Name: openid_whitelist; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE openid_whitelist (
name text NOT NULL,
trust_root text NOT NULL,
created timestamp without time zone
);
--
-- Name: openids; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE openids (
id text NOT NULL,
name citext
);
SET default_with_oids = true;
--
-- Name: packages; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE packages (
name text NOT NULL,
stable_version text,
normalized_name text,
autohide boolean DEFAULT true,
comments boolean DEFAULT true,
bugtrack_url text,
hosting_mode text DEFAULT 'pypi-explicit'::text NOT NULL,
created timestamp without time zone DEFAULT now() NOT NULL,
CONSTRAINT packages_valid_name CHECK ((name ~* '^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$'::text))
);
SET default_with_oids = false;
--
-- Name: ratings; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE ratings (
name text NOT NULL,
version text NOT NULL,
user_name citext NOT NULL,
date timestamp without time zone,
rating integer,
id integer NOT NULL
);
--
-- Name: ratings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE ratings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: ratings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE ratings_id_seq OWNED BY ratings.id;
SET default_with_oids = true;
--
-- Name: rego_otk; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE rego_otk (
name citext,
otk text,
date timestamp without time zone
);
--
-- Name: release_classifiers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE release_classifiers (
name text,
version text,
trove_id integer
);
SET default_with_oids = false;
--
-- Name: release_dependencies; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE release_dependencies (
name text,
version text,
kind integer,
specifier text
);
SET default_with_oids = true;
--
-- Name: release_files; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE release_files (
name text,
version text,
python_version text,
packagetype text,
comment_text text,
filename text,
md5_digest text,
downloads integer DEFAULT 0,
upload_time timestamp without time zone
);
SET default_with_oids = false;
--
-- Name: release_requires_python; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE release_requires_python (
name text,
version text,
specifier text
);
SET default_with_oids = true;
--
-- Name: release_urls; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE release_urls (
name text,
version text,
url text,
packagetype text
);
--
-- Name: releases; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE releases (
name text NOT NULL,
version text NOT NULL,
author text,
author_email text,
maintainer text,
maintainer_email text,
home_page text,
license text,
summary text,
description text,
keywords text,
platform text,
download_url text,
_pypi_ordering integer,
_pypi_hidden boolean,
description_html text,
cheesecake_installability_id integer,
cheesecake_documentation_id integer,
cheesecake_code_kwalitee_id integer,
requires_python text,
description_from_readme boolean,
created timestamp without time zone DEFAULT now() NOT NULL
);
--
-- Name: roles; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE roles (
role_name text,
user_name citext,
package_name text
);
SET default_with_oids = false;
--
-- Name: sshkeys; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE sshkeys (
id integer NOT NULL,
name citext,
key text
);
--
-- Name: sshkeys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE sshkeys_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: sshkeys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE sshkeys_id_seq OWNED BY sshkeys.id;
SET default_with_oids = true;
--
-- Name: timestamps; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE timestamps (
name text NOT NULL,
value timestamp without time zone
);
--
-- Name: trove_classifiers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE trove_classifiers (
id integer NOT NULL,
classifier text,
l2 integer,
l3 integer,
l4 integer,
l5 integer
);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY accounts_email ALTER COLUMN id SET DEFAULT nextval('accounts_email_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY accounts_gpgkey ALTER COLUMN id SET DEFAULT nextval('accounts_gpgkey_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY accounts_user ALTER COLUMN id SET DEFAULT nextval('accounts_user_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY cheesecake_main_indices ALTER COLUMN id SET DEFAULT nextval('cheesecake_main_indices_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY comments ALTER COLUMN id SET DEFAULT nextval('comments_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY description_urls ALTER COLUMN id SET DEFAULT nextval('description_urls_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY journals ALTER COLUMN id SET DEFAULT nextval('journals_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY openid_sessions ALTER COLUMN id SET DEFAULT nextval('openid_sessions_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY ratings ALTER COLUMN id SET DEFAULT nextval('ratings_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY sshkeys ALTER COLUMN id SET DEFAULT nextval('sshkeys_id_seq'::regclass);
--
-- Name: accounts_email_email_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY accounts_email
ADD CONSTRAINT accounts_email_email_key UNIQUE (email);
--
-- Name: accounts_email_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY accounts_email
ADD CONSTRAINT accounts_email_pkey PRIMARY KEY (id);
--
-- Name: accounts_gpgkey_key_id_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY accounts_gpgkey
ADD CONSTRAINT accounts_gpgkey_key_id_key UNIQUE (key_id);
--
-- Name: accounts_gpgkey_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY accounts_gpgkey
ADD CONSTRAINT accounts_gpgkey_pkey PRIMARY KEY (id);
--
-- Name: accounts_user_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY accounts_user
ADD CONSTRAINT accounts_user_pkey PRIMARY KEY (id);
--
-- Name: accounts_user_username_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY accounts_user
ADD CONSTRAINT accounts_user_username_key UNIQUE (username);
--
-- Name: browse_tally_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY browse_tally
ADD CONSTRAINT browse_tally_pkey PRIMARY KEY (trove_id);
--
-- Name: cheesecake_main_indices_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY cheesecake_main_indices
ADD CONSTRAINT cheesecake_main_indices_pkey PRIMARY KEY (id);
--
-- Name: cheesecake_subindices_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY cheesecake_subindices
ADD CONSTRAINT cheesecake_subindices_pkey PRIMARY KEY (main_index_id, name);
--
-- Name: comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY comments
ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
--
-- Name: cookies_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY cookies
ADD CONSTRAINT cookies_pkey PRIMARY KEY (cookie);
--
-- Name: csrf_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY csrf_tokens
ADD CONSTRAINT csrf_tokens_pkey PRIMARY KEY (name);
--
-- Name: description_urls_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY description_urls
ADD CONSTRAINT description_urls_pkey PRIMARY KEY (id);
--
-- Name: mirrors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY mirrors
ADD CONSTRAINT mirrors_pkey PRIMARY KEY (ip);
--
-- Name: oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY oauth_access_tokens
ADD CONSTRAINT oauth_access_tokens_pkey PRIMARY KEY (token);
--
-- Name: oauth_consumers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY oauth_consumers
ADD CONSTRAINT oauth_consumers_pkey PRIMARY KEY (consumer);
--
-- Name: oauth_request_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY oauth_request_tokens
ADD CONSTRAINT oauth_request_tokens_pkey PRIMARY KEY (token);
--
-- Name: oid_associations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY oid_associations
ADD CONSTRAINT oid_associations_pkey PRIMARY KEY (server_url, handle);
--
-- Name: oid_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY oid_nonces
ADD CONSTRAINT oid_nonces_pkey PRIMARY KEY (server_url, "timestamp", salt);
--
-- Name: openid_discovered_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY openid_discovered
ADD CONSTRAINT openid_discovered_pkey PRIMARY KEY (url);
--
-- Name: openid_sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY openid_sessions
ADD CONSTRAINT openid_sessions_pkey PRIMARY KEY (id);
--
-- Name: openid_whitelist_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY openid_whitelist
ADD CONSTRAINT openid_whitelist_pkey PRIMARY KEY (name, trust_root);
--
-- Name: openids_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY openids
ADD CONSTRAINT openids_pkey PRIMARY KEY (id);
--
-- Name: packages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--