]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/database.sql
73d1d272d0660ec0ec31338f7972b22fefce4710
[people/jschlag/pbs.git] / src / database.sql
1 --
2 -- PostgreSQL database dump
3 --
4
5 SET statement_timeout = 0;
6 SET lock_timeout = 0;
7 SET client_encoding = 'UTF8';
8 SET standard_conforming_strings = on;
9 SET check_function_bodies = false;
10 SET client_min_messages = warning;
11
12 --
13 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
14 --
15
16 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
17
18
19 --
20 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
21 --
22
23 COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
24
25
26 SET search_path = public, pg_catalog;
27
28 --
29 -- Name: arches_binary; Type: TYPE; Schema: public; Owner: pakfire
30 --
31
32 CREATE TYPE arches_binary AS ENUM (
33 'Y',
34 'N'
35 );
36
37
38 ALTER TYPE arches_binary OWNER TO pakfire;
39
40 --
41 -- Name: builders_arches_enabled; Type: TYPE; Schema: public; Owner: pakfire
42 --
43
44 CREATE TYPE builders_arches_enabled AS ENUM (
45 'Y',
46 'N'
47 );
48
49
50 ALTER TYPE builders_arches_enabled OWNER TO pakfire;
51
52 --
53 -- Name: builders_build_release; Type: TYPE; Schema: public; Owner: pakfire
54 --
55
56 CREATE TYPE builders_build_release AS ENUM (
57 'Y',
58 'N'
59 );
60
61
62 ALTER TYPE builders_build_release OWNER TO pakfire;
63
64 --
65 -- Name: builders_build_scratch; Type: TYPE; Schema: public; Owner: pakfire
66 --
67
68 CREATE TYPE builders_build_scratch AS ENUM (
69 'Y',
70 'N'
71 );
72
73
74 ALTER TYPE builders_build_scratch OWNER TO pakfire;
75
76 --
77 -- Name: builders_build_test; Type: TYPE; Schema: public; Owner: pakfire
78 --
79
80 CREATE TYPE builders_build_test AS ENUM (
81 'Y',
82 'N'
83 );
84
85
86 ALTER TYPE builders_build_test OWNER TO pakfire;
87
88 --
89 -- Name: builders_deleted; Type: TYPE; Schema: public; Owner: pakfire
90 --
91
92 CREATE TYPE builders_deleted AS ENUM (
93 'Y',
94 'N'
95 );
96
97
98 ALTER TYPE builders_deleted OWNER TO pakfire;
99
100 --
101 -- Name: builders_disabled; Type: TYPE; Schema: public; Owner: pakfire
102 --
103
104 CREATE TYPE builders_disabled AS ENUM (
105 'Y',
106 'N'
107 );
108
109
110 ALTER TYPE builders_disabled OWNER TO pakfire;
111
112 --
113 -- Name: builders_history_action; Type: TYPE; Schema: public; Owner: pakfire
114 --
115
116 CREATE TYPE builders_history_action AS ENUM (
117 'created',
118 'enabled',
119 'disabled',
120 'deleted'
121 );
122
123
124 ALTER TYPE builders_history_action OWNER TO pakfire;
125
126 --
127 -- Name: builders_overload; Type: TYPE; Schema: public; Owner: pakfire
128 --
129
130 CREATE TYPE builders_overload AS ENUM (
131 'Y',
132 'N'
133 );
134
135
136 ALTER TYPE builders_overload OWNER TO pakfire;
137
138 --
139 -- Name: builders_status; Type: TYPE; Schema: public; Owner: pakfire
140 --
141
142 CREATE TYPE builders_status AS ENUM (
143 'enabled',
144 'disabled',
145 'deleted'
146 );
147
148
149 ALTER TYPE builders_status OWNER TO pakfire;
150
151 --
152 -- Name: builds_auto_move; Type: TYPE; Schema: public; Owner: pakfire
153 --
154
155 CREATE TYPE builds_auto_move AS ENUM (
156 'N',
157 'Y'
158 );
159
160
161 ALTER TYPE builds_auto_move OWNER TO pakfire;
162
163 --
164 -- Name: builds_bugs_updates_error; Type: TYPE; Schema: public; Owner: pakfire
165 --
166
167 CREATE TYPE builds_bugs_updates_error AS ENUM (
168 'N',
169 'Y'
170 );
171
172
173 ALTER TYPE builds_bugs_updates_error OWNER TO pakfire;
174
175 --
176 -- Name: builds_history_action; Type: TYPE; Schema: public; Owner: pakfire
177 --
178
179 CREATE TYPE builds_history_action AS ENUM (
180 'created',
181 'bug_added',
182 'bug_removed'
183 );
184
185
186 ALTER TYPE builds_history_action OWNER TO pakfire;
187
188 --
189 -- Name: builds_public; Type: TYPE; Schema: public; Owner: pakfire
190 --
191
192 CREATE TYPE builds_public AS ENUM (
193 'Y',
194 'N'
195 );
196
197
198 ALTER TYPE builds_public OWNER TO pakfire;
199
200 --
201 -- Name: builds_severity; Type: TYPE; Schema: public; Owner: pakfire
202 --
203
204 CREATE TYPE builds_severity AS ENUM (
205 'security update',
206 'bugfix update',
207 'enhancement',
208 'new package'
209 );
210
211
212 ALTER TYPE builds_severity OWNER TO pakfire;
213
214 --
215 -- Name: builds_state; Type: TYPE; Schema: public; Owner: pakfire
216 --
217
218 CREATE TYPE builds_state AS ENUM (
219 'building',
220 'testing',
221 'stable',
222 'obsolete',
223 'broken'
224 );
225
226
227 ALTER TYPE builds_state OWNER TO pakfire;
228
229 --
230 -- Name: builds_type; Type: TYPE; Schema: public; Owner: pakfire
231 --
232
233 CREATE TYPE builds_type AS ENUM (
234 'release',
235 'scratch'
236 );
237
238
239 ALTER TYPE builds_type OWNER TO pakfire;
240
241 --
242 -- Name: filelists_config; Type: TYPE; Schema: public; Owner: pakfire
243 --
244
245 CREATE TYPE filelists_config AS ENUM (
246 'Y',
247 'N'
248 );
249
250
251 ALTER TYPE filelists_config OWNER TO pakfire;
252
253 --
254 -- Name: jobs_history_action; Type: TYPE; Schema: public; Owner: pakfire
255 --
256
257 CREATE TYPE jobs_history_action AS ENUM (
258 'created',
259 'state_change',
260 'reset',
261 'schedule_rebuild',
262 'schedule_test_job'
263 );
264
265
266 ALTER TYPE jobs_history_action OWNER TO pakfire;
267
268 --
269 -- Name: jobs_history_state; Type: TYPE; Schema: public; Owner: pakfire
270 --
271
272 CREATE TYPE jobs_history_state AS ENUM (
273 'new',
274 'pending',
275 'running',
276 'finished',
277 'dispatching',
278 'uploading',
279 'failed',
280 'temporary_failed',
281 'dependency_error',
282 'aborted',
283 'download_error',
284 'deleted'
285 );
286
287
288 ALTER TYPE jobs_history_state OWNER TO pakfire;
289
290 --
291 -- Name: jobs_state; Type: TYPE; Schema: public; Owner: pakfire
292 --
293
294 CREATE TYPE jobs_state AS ENUM (
295 'new',
296 'pending',
297 'running',
298 'finished',
299 'dispatching',
300 'uploading',
301 'failed',
302 'aborted',
303 'temporary_failed',
304 'dependency_error',
305 'download_error',
306 'deleted'
307 );
308
309
310 ALTER TYPE jobs_state OWNER TO pakfire;
311
312 --
313 -- Name: jobs_type; Type: TYPE; Schema: public; Owner: pakfire
314 --
315
316 CREATE TYPE jobs_type AS ENUM (
317 'build',
318 'test'
319 );
320
321
322 ALTER TYPE jobs_type OWNER TO pakfire;
323
324 --
325 -- Name: mirrors_check_status; Type: TYPE; Schema: public; Owner: pakfire
326 --
327
328 CREATE TYPE mirrors_check_status AS ENUM (
329 'UNKNOWN',
330 'UP',
331 'DOWN'
332 );
333
334
335 ALTER TYPE mirrors_check_status OWNER TO pakfire;
336
337 --
338 -- Name: mirrors_history_action; Type: TYPE; Schema: public; Owner: pakfire
339 --
340
341 CREATE TYPE mirrors_history_action AS ENUM (
342 'created',
343 'enabled',
344 'disabled',
345 'deleted'
346 );
347
348
349 ALTER TYPE mirrors_history_action OWNER TO pakfire;
350
351 --
352 -- Name: mirrors_status; Type: TYPE; Schema: public; Owner: pakfire
353 --
354
355 CREATE TYPE mirrors_status AS ENUM (
356 'enabled',
357 'disabled',
358 'deleted'
359 );
360
361
362 ALTER TYPE mirrors_status OWNER TO pakfire;
363
364 --
365 -- Name: packages_deps_type; Type: TYPE; Schema: public; Owner: pakfire
366 --
367
368 CREATE TYPE packages_deps_type AS ENUM (
369 'requires',
370 'prerequires',
371 'provides',
372 'conflicts',
373 'obsoletes',
374 'suggests',
375 'recommends'
376 );
377
378
379 ALTER TYPE packages_deps_type OWNER TO pakfire;
380
381 --
382 -- Name: packages_properties_critical_path; Type: TYPE; Schema: public; Owner: pakfire
383 --
384
385 CREATE TYPE packages_properties_critical_path AS ENUM (
386 'N',
387 'Y'
388 );
389
390
391 ALTER TYPE packages_properties_critical_path OWNER TO pakfire;
392
393 --
394 -- Name: packages_type; Type: TYPE; Schema: public; Owner: pakfire
395 --
396
397 CREATE TYPE packages_type AS ENUM (
398 'source',
399 'binary'
400 );
401
402
403 ALTER TYPE packages_type OWNER TO pakfire;
404
405 --
406 -- Name: repositories_aux_status; Type: TYPE; Schema: public; Owner: pakfire
407 --
408
409 CREATE TYPE repositories_aux_status AS ENUM (
410 'enabled',
411 'disabled'
412 );
413
414
415 ALTER TYPE repositories_aux_status OWNER TO pakfire;
416
417 --
418 -- Name: repositories_enabled_for_builds; Type: TYPE; Schema: public; Owner: pakfire
419 --
420
421 CREATE TYPE repositories_enabled_for_builds AS ENUM (
422 'N',
423 'Y'
424 );
425
426
427 ALTER TYPE repositories_enabled_for_builds OWNER TO pakfire;
428
429 --
430 -- Name: repositories_history_action; Type: TYPE; Schema: public; Owner: pakfire
431 --
432
433 CREATE TYPE repositories_history_action AS ENUM (
434 'added',
435 'removed',
436 'moved'
437 );
438
439
440 ALTER TYPE repositories_history_action OWNER TO pakfire;
441
442 --
443 -- Name: repositories_mirrored; Type: TYPE; Schema: public; Owner: pakfire
444 --
445
446 CREATE TYPE repositories_mirrored AS ENUM (
447 'N',
448 'Y'
449 );
450
451
452 ALTER TYPE repositories_mirrored OWNER TO pakfire;
453
454 --
455 -- Name: repositories_type; Type: TYPE; Schema: public; Owner: pakfire
456 --
457
458 CREATE TYPE repositories_type AS ENUM (
459 'testing',
460 'unstable',
461 'stable'
462 );
463
464
465 ALTER TYPE repositories_type OWNER TO pakfire;
466
467 --
468 -- Name: sources_commits_state; Type: TYPE; Schema: public; Owner: pakfire
469 --
470
471 CREATE TYPE sources_commits_state AS ENUM (
472 'pending',
473 'running',
474 'finished',
475 'failed'
476 );
477
478
479 ALTER TYPE sources_commits_state OWNER TO pakfire;
480
481 --
482 -- Name: uploads_finished; Type: TYPE; Schema: public; Owner: pakfire
483 --
484
485 CREATE TYPE uploads_finished AS ENUM (
486 'N',
487 'Y'
488 );
489
490
491 ALTER TYPE uploads_finished OWNER TO pakfire;
492
493 --
494 -- Name: users_activated; Type: TYPE; Schema: public; Owner: pakfire
495 --
496
497 CREATE TYPE users_activated AS ENUM (
498 'Y',
499 'N'
500 );
501
502
503 ALTER TYPE users_activated OWNER TO pakfire;
504
505 --
506 -- Name: users_deleted; Type: TYPE; Schema: public; Owner: pakfire
507 --
508
509 CREATE TYPE users_deleted AS ENUM (
510 'Y',
511 'N'
512 );
513
514
515 ALTER TYPE users_deleted OWNER TO pakfire;
516
517 --
518 -- Name: users_emails_primary; Type: TYPE; Schema: public; Owner: pakfire
519 --
520
521 CREATE TYPE users_emails_primary AS ENUM (
522 'N',
523 'Y'
524 );
525
526
527 ALTER TYPE users_emails_primary OWNER TO pakfire;
528
529 --
530 -- Name: users_permissions_create_scratch_builds; Type: TYPE; Schema: public; Owner: pakfire
531 --
532
533 CREATE TYPE users_permissions_create_scratch_builds AS ENUM (
534 'Y',
535 'N'
536 );
537
538
539 ALTER TYPE users_permissions_create_scratch_builds OWNER TO pakfire;
540
541 --
542 -- Name: users_permissions_maintain_builders; Type: TYPE; Schema: public; Owner: pakfire
543 --
544
545 CREATE TYPE users_permissions_maintain_builders AS ENUM (
546 'N',
547 'Y'
548 );
549
550
551 ALTER TYPE users_permissions_maintain_builders OWNER TO pakfire;
552
553 --
554 -- Name: users_permissions_manage_critical_path; Type: TYPE; Schema: public; Owner: pakfire
555 --
556
557 CREATE TYPE users_permissions_manage_critical_path AS ENUM (
558 'N',
559 'Y'
560 );
561
562
563 ALTER TYPE users_permissions_manage_critical_path OWNER TO pakfire;
564
565 --
566 -- Name: users_permissions_manage_mirrors; Type: TYPE; Schema: public; Owner: pakfire
567 --
568
569 CREATE TYPE users_permissions_manage_mirrors AS ENUM (
570 'N',
571 'Y'
572 );
573
574
575 ALTER TYPE users_permissions_manage_mirrors OWNER TO pakfire;
576
577 --
578 -- Name: users_permissions_vote; Type: TYPE; Schema: public; Owner: pakfire
579 --
580
581 CREATE TYPE users_permissions_vote AS ENUM (
582 'N',
583 'Y'
584 );
585
586
587 ALTER TYPE users_permissions_vote OWNER TO pakfire;
588
589 --
590 -- Name: users_state; Type: TYPE; Schema: public; Owner: pakfire
591 --
592
593 CREATE TYPE users_state AS ENUM (
594 'user',
595 'tester',
596 'admin'
597 );
598
599
600 ALTER TYPE users_state OWNER TO pakfire;
601
602 --
603 -- Name: on_update_current_timestamp_sources(); Type: FUNCTION; Schema: public; Owner: pakfire
604 --
605
606 CREATE FUNCTION on_update_current_timestamp_sources() RETURNS trigger
607 LANGUAGE plpgsql
608 AS $$
609 BEGIN
610 NEW.updated = now();
611 RETURN NEW;
612 END;
613 $$;
614
615
616 ALTER FUNCTION public.on_update_current_timestamp_sources() OWNER TO pakfire;
617
618 SET default_tablespace = '';
619
620 SET default_with_oids = false;
621
622 --
623 -- Name: arches; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
624 --
625
626 CREATE TABLE arches (
627 id integer NOT NULL,
628 name text NOT NULL,
629 prio integer DEFAULT 0 NOT NULL,
630 "binary" arches_binary DEFAULT 'Y'::arches_binary NOT NULL,
631 platform text
632 );
633
634
635 ALTER TABLE arches OWNER TO pakfire;
636
637 --
638 -- Name: arches_compat; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
639 --
640
641 CREATE TABLE arches_compat (
642 host_arch text NOT NULL,
643 build_arch text NOT NULL
644 );
645
646
647 ALTER TABLE arches_compat OWNER TO pakfire;
648
649 --
650 -- Name: builders; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
651 --
652
653 CREATE TABLE builders (
654 id integer NOT NULL,
655 name text NOT NULL,
656 passphrase text,
657 description text,
658 status builders_status DEFAULT 'disabled'::builders_status NOT NULL,
659 disabled builders_disabled DEFAULT 'Y'::builders_disabled NOT NULL,
660 loadavg text DEFAULT '0'::character varying NOT NULL,
661 arches text,
662 build_release builders_build_release DEFAULT 'N'::builders_build_release NOT NULL,
663 build_scratch builders_build_scratch DEFAULT 'N'::builders_build_scratch NOT NULL,
664 build_test builders_build_test DEFAULT 'N'::builders_build_test NOT NULL,
665 max_jobs bigint DEFAULT 1::bigint NOT NULL,
666 pakfire_version text,
667 os_name text,
668 cpu_model text,
669 cpu_count integer DEFAULT 1 NOT NULL,
670 cpu_arch text,
671 cpu_bogomips double precision,
672 memory bigint DEFAULT 0 NOT NULL,
673 overload builders_overload DEFAULT 'N'::builders_overload NOT NULL,
674 free_space bigint DEFAULT 0 NOT NULL,
675 host_key_id text,
676 deleted builders_deleted DEFAULT 'N'::builders_deleted NOT NULL,
677 time_created timestamp without time zone NOT NULL,
678 time_updated timestamp without time zone,
679 time_keepalive timestamp without time zone,
680 loadavg1 double precision,
681 loadavg5 double precision,
682 loadavg15 double precision,
683 mem_total bigint,
684 mem_free bigint,
685 swap_total bigint,
686 swap_free bigint,
687 space_free bigint
688 );
689
690
691 ALTER TABLE builders OWNER TO pakfire;
692
693 --
694 -- Name: arches_builders; Type: VIEW; Schema: public; Owner: pakfire
695 --
696
697 CREATE VIEW arches_builders AS
698 SELECT arches_compat.build_arch AS arch,
699 builders.id AS builder_id
700 FROM (arches_compat
701 LEFT JOIN builders ON ((arches_compat.host_arch = builders.cpu_arch)));
702
703
704 ALTER TABLE arches_builders OWNER TO pakfire;
705
706 --
707 -- Name: arches_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
708 --
709
710 CREATE SEQUENCE arches_id_seq
711 START WITH 1
712 INCREMENT BY 1
713 NO MINVALUE
714 NO MAXVALUE
715 CACHE 1;
716
717
718 ALTER TABLE arches_id_seq OWNER TO pakfire;
719
720 --
721 -- Name: arches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
722 --
723
724 ALTER SEQUENCE arches_id_seq OWNED BY arches.id;
725
726
727 --
728 -- Name: builders_arches; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
729 --
730
731 CREATE TABLE builders_arches (
732 id integer NOT NULL,
733 builder_id integer NOT NULL,
734 arch_id integer NOT NULL,
735 enabled builders_arches_enabled DEFAULT 'Y'::builders_arches_enabled NOT NULL
736 );
737
738
739 ALTER TABLE builders_arches OWNER TO pakfire;
740
741 --
742 -- Name: builders_arches_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
743 --
744
745 CREATE SEQUENCE builders_arches_id_seq
746 START WITH 1
747 INCREMENT BY 1
748 NO MINVALUE
749 NO MAXVALUE
750 CACHE 1;
751
752
753 ALTER TABLE builders_arches_id_seq OWNER TO pakfire;
754
755 --
756 -- Name: builders_arches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
757 --
758
759 ALTER SEQUENCE builders_arches_id_seq OWNED BY builders_arches.id;
760
761
762 --
763 -- Name: builders_history; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
764 --
765
766 CREATE TABLE builders_history (
767 id integer NOT NULL,
768 builder_id integer NOT NULL,
769 action builders_history_action NOT NULL,
770 user_id integer,
771 "time" timestamp without time zone NOT NULL
772 );
773
774
775 ALTER TABLE builders_history OWNER TO pakfire;
776
777 --
778 -- Name: builders_history_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
779 --
780
781 CREATE SEQUENCE builders_history_id_seq
782 START WITH 1
783 INCREMENT BY 1
784 NO MINVALUE
785 NO MAXVALUE
786 CACHE 1;
787
788
789 ALTER TABLE builders_history_id_seq OWNER TO pakfire;
790
791 --
792 -- Name: builders_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
793 --
794
795 ALTER SEQUENCE builders_history_id_seq OWNED BY builders_history.id;
796
797
798 --
799 -- Name: builders_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
800 --
801
802 CREATE SEQUENCE builders_id_seq
803 START WITH 1
804 INCREMENT BY 1
805 NO MINVALUE
806 NO MAXVALUE
807 CACHE 1;
808
809
810 ALTER TABLE builders_id_seq OWNER TO pakfire;
811
812 --
813 -- Name: builders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
814 --
815
816 ALTER SEQUENCE builders_id_seq OWNED BY builders.id;
817
818
819 --
820 -- Name: jobs; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
821 --
822
823 CREATE TABLE jobs (
824 id integer NOT NULL,
825 uuid text NOT NULL,
826 type jobs_type DEFAULT 'build'::jobs_type NOT NULL,
827 build_id integer NOT NULL,
828 state jobs_state DEFAULT 'new'::jobs_state NOT NULL,
829 arch text NOT NULL,
830 time_created timestamp without time zone NOT NULL,
831 time_started timestamp without time zone,
832 time_finished timestamp without time zone,
833 start_not_before timestamp without time zone,
834 builder_id integer,
835 tries integer DEFAULT 0 NOT NULL,
836 aborted_state integer DEFAULT 0 NOT NULL,
837 message text
838 );
839
840
841 ALTER TABLE jobs OWNER TO pakfire;
842
843 --
844 -- Name: jobs_active; Type: VIEW; Schema: public; Owner: pakfire
845 --
846
847 CREATE VIEW jobs_active AS
848 SELECT jobs.id,
849 jobs.uuid,
850 jobs.type,
851 jobs.build_id,
852 jobs.state,
853 jobs.arch,
854 jobs.time_created,
855 jobs.time_started,
856 jobs.time_finished,
857 jobs.start_not_before,
858 jobs.builder_id,
859 jobs.tries,
860 jobs.aborted_state,
861 jobs.message
862 FROM jobs
863 WHERE (jobs.state = ANY (ARRAY['dispatching'::jobs_state, 'running'::jobs_state, 'uploading'::jobs_state]))
864 ORDER BY jobs.time_started;
865
866
867 ALTER TABLE jobs_active OWNER TO pakfire;
868
869 --
870 -- Name: builders_ready; Type: VIEW; Schema: public; Owner: pakfire
871 --
872
873 CREATE VIEW builders_ready AS
874 SELECT builders.id AS builder_id,
875 builders.cpu_arch AS builder_arch,
876 builders.build_release,
877 builders.build_scratch,
878 builders.build_test
879 FROM builders
880 WHERE (((builders.status = 'enabled'::builders_status) AND (builders.time_keepalive >= (now() - '00:05:00'::interval))) AND (builders.max_jobs > ( SELECT count(*) AS count
881 FROM jobs_active
882 WHERE (jobs_active.builder_id = builders.id))))
883 ORDER BY ( SELECT count(*) AS count
884 FROM jobs_active
885 WHERE (jobs_active.builder_id = builders.id)), builders.cpu_bogomips DESC;
886
887
888 ALTER TABLE builders_ready OWNER TO pakfire;
889
890 --
891 -- Name: builds; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
892 --
893
894 CREATE TABLE builds (
895 id integer NOT NULL,
896 uuid text NOT NULL,
897 pkg_id integer NOT NULL,
898 type builds_type DEFAULT 'release'::builds_type NOT NULL,
899 state builds_state DEFAULT 'building'::builds_state NOT NULL,
900 severity builds_severity,
901 message text,
902 time_created timestamp without time zone NOT NULL,
903 update_year integer,
904 update_num integer,
905 depends_on integer,
906 distro_id integer NOT NULL,
907 owner_id integer,
908 public builds_public DEFAULT 'Y'::builds_public NOT NULL,
909 priority integer DEFAULT 0 NOT NULL,
910 auto_move builds_auto_move DEFAULT 'N'::builds_auto_move NOT NULL
911 );
912
913
914 ALTER TABLE builds OWNER TO pakfire;
915
916 --
917 -- Name: builds_bugs; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
918 --
919
920 CREATE TABLE builds_bugs (
921 id integer NOT NULL,
922 build_id integer NOT NULL,
923 bug_id integer NOT NULL
924 );
925
926
927 ALTER TABLE builds_bugs OWNER TO pakfire;
928
929 --
930 -- Name: builds_bugs_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
931 --
932
933 CREATE SEQUENCE builds_bugs_id_seq
934 START WITH 1
935 INCREMENT BY 1
936 NO MINVALUE
937 NO MAXVALUE
938 CACHE 1;
939
940
941 ALTER TABLE builds_bugs_id_seq OWNER TO pakfire;
942
943 --
944 -- Name: builds_bugs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
945 --
946
947 ALTER SEQUENCE builds_bugs_id_seq OWNED BY builds_bugs.id;
948
949
950 --
951 -- Name: builds_bugs_updates; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
952 --
953
954 CREATE TABLE builds_bugs_updates (
955 id integer NOT NULL,
956 bug_id integer NOT NULL,
957 status text,
958 resolution text,
959 comment text,
960 "time" timestamp without time zone NOT NULL,
961 error builds_bugs_updates_error DEFAULT 'N'::builds_bugs_updates_error NOT NULL,
962 error_msg text
963 );
964
965
966 ALTER TABLE builds_bugs_updates OWNER TO pakfire;
967
968 --
969 -- Name: builds_bugs_updates_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
970 --
971
972 CREATE SEQUENCE builds_bugs_updates_id_seq
973 START WITH 1
974 INCREMENT BY 1
975 NO MINVALUE
976 NO MAXVALUE
977 CACHE 1;
978
979
980 ALTER TABLE builds_bugs_updates_id_seq OWNER TO pakfire;
981
982 --
983 -- Name: builds_bugs_updates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
984 --
985
986 ALTER SEQUENCE builds_bugs_updates_id_seq OWNED BY builds_bugs_updates.id;
987
988
989 --
990 -- Name: builds_comments; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
991 --
992
993 CREATE TABLE builds_comments (
994 id integer NOT NULL,
995 build_id integer NOT NULL,
996 user_id integer NOT NULL,
997 text text NOT NULL,
998 credit integer NOT NULL,
999 time_created timestamp without time zone NOT NULL,
1000 time_updated timestamp without time zone
1001 );
1002
1003
1004 ALTER TABLE builds_comments OWNER TO pakfire;
1005
1006 --
1007 -- Name: builds_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1008 --
1009
1010 CREATE SEQUENCE builds_comments_id_seq
1011 START WITH 1
1012 INCREMENT BY 1
1013 NO MINVALUE
1014 NO MAXVALUE
1015 CACHE 1;
1016
1017
1018 ALTER TABLE builds_comments_id_seq OWNER TO pakfire;
1019
1020 --
1021 -- Name: builds_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1022 --
1023
1024 ALTER SEQUENCE builds_comments_id_seq OWNED BY builds_comments.id;
1025
1026
1027 --
1028 -- Name: builds_history; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1029 --
1030
1031 CREATE TABLE builds_history (
1032 id integer NOT NULL,
1033 build_id integer NOT NULL,
1034 action builds_history_action NOT NULL,
1035 user_id integer,
1036 "time" timestamp without time zone NOT NULL,
1037 bug_id integer
1038 );
1039
1040
1041 ALTER TABLE builds_history OWNER TO pakfire;
1042
1043 --
1044 -- Name: builds_history_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1045 --
1046
1047 CREATE SEQUENCE builds_history_id_seq
1048 START WITH 1
1049 INCREMENT BY 1
1050 NO MINVALUE
1051 NO MAXVALUE
1052 CACHE 1;
1053
1054
1055 ALTER TABLE builds_history_id_seq OWNER TO pakfire;
1056
1057 --
1058 -- Name: builds_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1059 --
1060
1061 ALTER SEQUENCE builds_history_id_seq OWNED BY builds_history.id;
1062
1063
1064 --
1065 -- Name: builds_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1066 --
1067
1068 CREATE SEQUENCE builds_id_seq
1069 START WITH 1
1070 INCREMENT BY 1
1071 NO MINVALUE
1072 NO MAXVALUE
1073 CACHE 1;
1074
1075
1076 ALTER TABLE builds_id_seq OWNER TO pakfire;
1077
1078 --
1079 -- Name: builds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1080 --
1081
1082 ALTER SEQUENCE builds_id_seq OWNED BY builds.id;
1083
1084
1085 --
1086 -- Name: packages; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1087 --
1088
1089 CREATE TABLE packages (
1090 id integer NOT NULL,
1091 name text NOT NULL,
1092 epoch integer NOT NULL,
1093 version text NOT NULL,
1094 release text NOT NULL,
1095 type packages_type NOT NULL,
1096 arch integer NOT NULL,
1097 groups text NOT NULL,
1098 maintainer text NOT NULL,
1099 license text NOT NULL,
1100 url text NOT NULL,
1101 summary text NOT NULL,
1102 description text NOT NULL,
1103 size bigint NOT NULL,
1104 supported_arches text,
1105 uuid text NOT NULL,
1106 commit_id integer,
1107 build_id text NOT NULL,
1108 build_host text NOT NULL,
1109 build_time timestamp without time zone NOT NULL,
1110 path text NOT NULL,
1111 filesize bigint NOT NULL,
1112 hash_sha512 text NOT NULL
1113 );
1114
1115
1116 ALTER TABLE packages OWNER TO pakfire;
1117
1118 --
1119 -- Name: repositories_builds; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1120 --
1121
1122 CREATE TABLE repositories_builds (
1123 id integer NOT NULL,
1124 repo_id integer NOT NULL,
1125 build_id bigint NOT NULL,
1126 time_added timestamp without time zone NOT NULL
1127 );
1128
1129
1130 ALTER TABLE repositories_builds OWNER TO pakfire;
1131
1132 --
1133 -- Name: builds_latest; Type: VIEW; Schema: public; Owner: pakfire
1134 --
1135
1136 CREATE VIEW builds_latest AS
1137 SELECT builds.id AS build_id,
1138 builds.type AS build_type,
1139 builds.state AS build_state,
1140 packages.name AS package_name,
1141 builds.public
1142 FROM (builds
1143 LEFT JOIN packages ON ((builds.pkg_id = packages.id)))
1144 WHERE ((builds.id IN ( SELECT repositories_builds.build_id
1145 FROM repositories_builds)) OR ((builds.time_created >= ( SELECT builds_1.time_created
1146 FROM ((builds builds_1
1147 LEFT JOIN repositories_builds ON ((builds_1.id = repositories_builds.build_id)))
1148 LEFT JOIN packages p ON ((builds_1.pkg_id = p.id)))
1149 WHERE (p.name = packages.name)
1150 ORDER BY builds_1.time_created
1151 LIMIT 1)) AND (builds.state <> ALL (ARRAY['obsolete'::builds_state, 'broken'::builds_state]))));
1152
1153
1154 ALTER TABLE builds_latest OWNER TO pakfire;
1155
1156 --
1157 -- Name: builds_times; Type: VIEW; Schema: public; Owner: pakfire
1158 --
1159
1160 CREATE VIEW builds_times AS
1161 SELECT builds.id AS build_id,
1162 jobs.arch,
1163 arches.platform,
1164 jobs.type AS job_type,
1165 (jobs.time_finished - jobs.time_started) AS duration
1166 FROM (((jobs
1167 LEFT JOIN builds ON ((jobs.build_id = builds.id)))
1168 LEFT JOIN packages ON ((builds.pkg_id = packages.id)))
1169 LEFT JOIN arches ON ((jobs.arch = arches.name)))
1170 WHERE (jobs.state = 'finished'::jobs_state);
1171
1172
1173 ALTER TABLE builds_times OWNER TO pakfire;
1174
1175 --
1176 -- Name: builds_watchers; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1177 --
1178
1179 CREATE TABLE builds_watchers (
1180 id integer NOT NULL,
1181 build_id integer NOT NULL,
1182 user_id integer NOT NULL
1183 );
1184
1185
1186 ALTER TABLE builds_watchers OWNER TO pakfire;
1187
1188 --
1189 -- Name: builds_watchers_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1190 --
1191
1192 CREATE SEQUENCE builds_watchers_id_seq
1193 START WITH 1
1194 INCREMENT BY 1
1195 NO MINVALUE
1196 NO MAXVALUE
1197 CACHE 1;
1198
1199
1200 ALTER TABLE builds_watchers_id_seq OWNER TO pakfire;
1201
1202 --
1203 -- Name: builds_watchers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1204 --
1205
1206 ALTER SEQUENCE builds_watchers_id_seq OWNED BY builds_watchers.id;
1207
1208
1209 --
1210 -- Name: distributions; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1211 --
1212
1213 CREATE TABLE distributions (
1214 id integer NOT NULL,
1215 name text NOT NULL,
1216 sname text NOT NULL,
1217 slogan text NOT NULL,
1218 description text,
1219 vendor text NOT NULL,
1220 contact text,
1221 tag text NOT NULL
1222 );
1223
1224
1225 ALTER TABLE distributions OWNER TO pakfire;
1226
1227 --
1228 -- Name: distributions_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1229 --
1230
1231 CREATE SEQUENCE distributions_id_seq
1232 START WITH 1
1233 INCREMENT BY 1
1234 NO MINVALUE
1235 NO MAXVALUE
1236 CACHE 1;
1237
1238
1239 ALTER TABLE distributions_id_seq OWNER TO pakfire;
1240
1241 --
1242 -- Name: distributions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1243 --
1244
1245 ALTER SEQUENCE distributions_id_seq OWNED BY distributions.id;
1246
1247
1248 --
1249 -- Name: distro_arches; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1250 --
1251
1252 CREATE TABLE distro_arches (
1253 id integer NOT NULL,
1254 distro_id integer NOT NULL,
1255 arch_id integer NOT NULL
1256 );
1257
1258
1259 ALTER TABLE distro_arches OWNER TO pakfire;
1260
1261 --
1262 -- Name: distro_arches_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1263 --
1264
1265 CREATE SEQUENCE distro_arches_id_seq
1266 START WITH 1
1267 INCREMENT BY 1
1268 NO MINVALUE
1269 NO MAXVALUE
1270 CACHE 1;
1271
1272
1273 ALTER TABLE distro_arches_id_seq OWNER TO pakfire;
1274
1275 --
1276 -- Name: distro_arches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1277 --
1278
1279 ALTER SEQUENCE distro_arches_id_seq OWNED BY distro_arches.id;
1280
1281
1282 --
1283 -- Name: filelists; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1284 --
1285
1286 CREATE TABLE filelists (
1287 pkg_id integer NOT NULL,
1288 name text NOT NULL,
1289 size bigint NOT NULL,
1290 hash_sha512 text,
1291 type integer NOT NULL,
1292 config filelists_config NOT NULL,
1293 mode integer NOT NULL,
1294 "user" text NOT NULL,
1295 "group" text NOT NULL,
1296 mtime timestamp without time zone NOT NULL,
1297 capabilities text
1298 );
1299
1300
1301 ALTER TABLE filelists OWNER TO pakfire;
1302
1303 --
1304 -- Name: images_types; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1305 --
1306
1307 CREATE TABLE images_types (
1308 id integer NOT NULL,
1309 type text NOT NULL
1310 );
1311
1312
1313 ALTER TABLE images_types OWNER TO pakfire;
1314
1315 --
1316 -- Name: images_types_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1317 --
1318
1319 CREATE SEQUENCE images_types_id_seq
1320 START WITH 1
1321 INCREMENT BY 1
1322 NO MINVALUE
1323 NO MAXVALUE
1324 CACHE 1;
1325
1326
1327 ALTER TABLE images_types_id_seq OWNER TO pakfire;
1328
1329 --
1330 -- Name: images_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1331 --
1332
1333 ALTER SEQUENCE images_types_id_seq OWNED BY images_types.id;
1334
1335
1336 --
1337 -- Name: jobs_buildroots; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1338 --
1339
1340 CREATE TABLE jobs_buildroots (
1341 job_id integer NOT NULL,
1342 tries integer NOT NULL,
1343 pkg_uuid text NOT NULL,
1344 pkg_name text NOT NULL
1345 );
1346
1347
1348 ALTER TABLE jobs_buildroots OWNER TO pakfire;
1349
1350 --
1351 -- Name: jobs_history; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1352 --
1353
1354 CREATE TABLE jobs_history (
1355 job_id integer NOT NULL,
1356 action jobs_history_action NOT NULL,
1357 state jobs_history_state,
1358 user_id integer,
1359 "time" timestamp without time zone NOT NULL,
1360 builder_id integer,
1361 test_job_id integer
1362 );
1363
1364
1365 ALTER TABLE jobs_history OWNER TO pakfire;
1366
1367 --
1368 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1369 --
1370
1371 CREATE SEQUENCE jobs_id_seq
1372 START WITH 1
1373 INCREMENT BY 1
1374 NO MINVALUE
1375 NO MAXVALUE
1376 CACHE 1;
1377
1378
1379 ALTER TABLE jobs_id_seq OWNER TO pakfire;
1380
1381 --
1382 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1383 --
1384
1385 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
1386
1387
1388 --
1389 -- Name: jobs_packages; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1390 --
1391
1392 CREATE TABLE jobs_packages (
1393 id integer NOT NULL,
1394 job_id integer NOT NULL,
1395 pkg_id integer NOT NULL
1396 );
1397
1398
1399 ALTER TABLE jobs_packages OWNER TO pakfire;
1400
1401 --
1402 -- Name: jobs_packages_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1403 --
1404
1405 CREATE SEQUENCE jobs_packages_id_seq
1406 START WITH 1
1407 INCREMENT BY 1
1408 NO MINVALUE
1409 NO MAXVALUE
1410 CACHE 1;
1411
1412
1413 ALTER TABLE jobs_packages_id_seq OWNER TO pakfire;
1414
1415 --
1416 -- Name: jobs_packages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1417 --
1418
1419 ALTER SEQUENCE jobs_packages_id_seq OWNED BY jobs_packages.id;
1420
1421
1422 --
1423 -- Name: jobs_queue; Type: VIEW; Schema: public; Owner: pakfire
1424 --
1425
1426 CREATE VIEW jobs_queue AS
1427 SELECT jobs.id,
1428 arches.name AS arch,
1429 ( SELECT builders_ready.builder_id
1430 FROM builders_ready
1431 WHERE (builders_ready.builder_id IN ( SELECT arches_builders.builder_id
1432 FROM arches_builders
1433 WHERE ((arches_builders.arch = arches.name) AND
1434 CASE
1435 WHEN ((builds.type = 'release'::builds_type) AND (jobs.type = 'build'::jobs_type)) THEN (builders_ready.build_release = 'Y'::builders_build_release)
1436 WHEN ((builds.type = 'scratch'::builds_type) AND (jobs.type = 'build'::jobs_type)) THEN (builders_ready.build_scratch = 'Y'::builders_build_scratch)
1437 WHEN (jobs.type = 'test'::jobs_type) THEN (builders_ready.build_test = 'Y'::builders_build_test)
1438 ELSE NULL::boolean
1439 END)))
1440 LIMIT 1) AS designated_builder_id
1441 FROM ((jobs
1442 LEFT JOIN arches ON ((jobs.arch = arches.name)))
1443 LEFT JOIN builds ON ((jobs.build_id = builds.id)))
1444 WHERE ((jobs.state = ANY (ARRAY['pending'::jobs_state, 'new'::jobs_state])) AND ((jobs.start_not_before IS NULL) OR (jobs.start_not_before <= now())))
1445 ORDER BY
1446 CASE
1447 WHEN (jobs.type = 'build'::jobs_type) THEN 0
1448 WHEN (jobs.type = 'test'::jobs_type) THEN 1
1449 ELSE NULL::integer
1450 END, builds.priority DESC, jobs.tries, jobs.time_created;
1451
1452
1453 ALTER TABLE jobs_queue OWNER TO pakfire;
1454
1455 --
1456 -- Name: jobs_repos; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1457 --
1458
1459 CREATE TABLE jobs_repos (
1460 job_id integer NOT NULL,
1461 repo_id integer NOT NULL
1462 );
1463
1464
1465 ALTER TABLE jobs_repos OWNER TO pakfire;
1466
1467 --
1468 -- Name: jobs_waiting; Type: VIEW; Schema: public; Owner: pakfire
1469 --
1470
1471 CREATE VIEW jobs_waiting AS
1472 SELECT jobs_queue.id,
1473 (now() - (jobs.time_created)::timestamp with time zone) AS time_waiting
1474 FROM (jobs_queue
1475 LEFT JOIN jobs ON ((jobs_queue.id = jobs.id)))
1476 WHERE (jobs.start_not_before IS NULL)
1477 UNION
1478 SELECT jobs_queue.id,
1479 (now() - (jobs.start_not_before)::timestamp with time zone) AS time_waiting
1480 FROM (jobs_queue
1481 LEFT JOIN jobs ON ((jobs_queue.id = jobs.id)))
1482 WHERE (jobs.start_not_before IS NOT NULL);
1483
1484
1485 ALTER TABLE jobs_waiting OWNER TO pakfire;
1486
1487 --
1488 -- Name: keys; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1489 --
1490
1491 CREATE TABLE keys (
1492 id integer NOT NULL,
1493 fingerprint text NOT NULL,
1494 uids text NOT NULL,
1495 data text NOT NULL
1496 );
1497
1498
1499 ALTER TABLE keys OWNER TO pakfire;
1500
1501 --
1502 -- Name: keys_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1503 --
1504
1505 CREATE SEQUENCE keys_id_seq
1506 START WITH 1
1507 INCREMENT BY 1
1508 NO MINVALUE
1509 NO MAXVALUE
1510 CACHE 1;
1511
1512
1513 ALTER TABLE keys_id_seq OWNER TO pakfire;
1514
1515 --
1516 -- Name: keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1517 --
1518
1519 ALTER SEQUENCE keys_id_seq OWNED BY keys.id;
1520
1521
1522 --
1523 -- Name: keys_subkeys; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1524 --
1525
1526 CREATE TABLE keys_subkeys (
1527 id integer NOT NULL,
1528 key_id integer NOT NULL,
1529 fingerprint text NOT NULL,
1530 time_created timestamp without time zone NOT NULL,
1531 time_expires timestamp without time zone,
1532 algo text
1533 );
1534
1535
1536 ALTER TABLE keys_subkeys OWNER TO pakfire;
1537
1538 --
1539 -- Name: keys_subkeys_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1540 --
1541
1542 CREATE SEQUENCE keys_subkeys_id_seq
1543 START WITH 1
1544 INCREMENT BY 1
1545 NO MINVALUE
1546 NO MAXVALUE
1547 CACHE 1;
1548
1549
1550 ALTER TABLE keys_subkeys_id_seq OWNER TO pakfire;
1551
1552 --
1553 -- Name: keys_subkeys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1554 --
1555
1556 ALTER SEQUENCE keys_subkeys_id_seq OWNED BY keys_subkeys.id;
1557
1558
1559 --
1560 -- Name: logfiles; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1561 --
1562
1563 CREATE TABLE logfiles (
1564 id integer NOT NULL,
1565 job_id integer NOT NULL,
1566 path text NOT NULL,
1567 filesize bigint NOT NULL,
1568 hash_sha512 text NOT NULL
1569 );
1570
1571
1572 ALTER TABLE logfiles OWNER TO pakfire;
1573
1574 --
1575 -- Name: logfiles_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1576 --
1577
1578 CREATE SEQUENCE logfiles_id_seq
1579 START WITH 1
1580 INCREMENT BY 1
1581 NO MINVALUE
1582 NO MAXVALUE
1583 CACHE 1;
1584
1585
1586 ALTER TABLE logfiles_id_seq OWNER TO pakfire;
1587
1588 --
1589 -- Name: logfiles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1590 --
1591
1592 ALTER SEQUENCE logfiles_id_seq OWNED BY logfiles.id;
1593
1594
1595 --
1596 -- Name: mirrors; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1597 --
1598
1599 CREATE TABLE mirrors (
1600 id integer NOT NULL,
1601 hostname text NOT NULL,
1602 path text NOT NULL,
1603 owner text,
1604 contact text,
1605 deleted boolean DEFAULT false NOT NULL
1606 );
1607
1608
1609 ALTER TABLE mirrors OWNER TO pakfire;
1610
1611 --
1612 -- Name: mirrors_checks; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1613 --
1614
1615 CREATE TABLE mirrors_checks (
1616 id integer NOT NULL,
1617 mirror_id integer NOT NULL,
1618 "timestamp" timestamp without time zone DEFAULT now() NOT NULL,
1619 response_time double precision,
1620 http_status integer,
1621 last_sync_at timestamp without time zone,
1622 status text DEFAULT 'OK'::text NOT NULL
1623 );
1624
1625
1626 ALTER TABLE mirrors_checks OWNER TO pakfire;
1627
1628 --
1629 -- Name: mirrors_checks_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1630 --
1631
1632 CREATE SEQUENCE mirrors_checks_id_seq
1633 START WITH 1
1634 INCREMENT BY 1
1635 NO MINVALUE
1636 NO MAXVALUE
1637 CACHE 1;
1638
1639
1640 ALTER TABLE mirrors_checks_id_seq OWNER TO pakfire;
1641
1642 --
1643 -- Name: mirrors_checks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1644 --
1645
1646 ALTER SEQUENCE mirrors_checks_id_seq OWNED BY mirrors_checks.id;
1647
1648
1649 --
1650 -- Name: mirrors_history; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1651 --
1652
1653 CREATE TABLE mirrors_history (
1654 id integer NOT NULL,
1655 mirror_id integer NOT NULL,
1656 action mirrors_history_action NOT NULL,
1657 user_id integer,
1658 "time" timestamp without time zone NOT NULL
1659 );
1660
1661
1662 ALTER TABLE mirrors_history OWNER TO pakfire;
1663
1664 --
1665 -- Name: mirrors_history_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1666 --
1667
1668 CREATE SEQUENCE mirrors_history_id_seq
1669 START WITH 1
1670 INCREMENT BY 1
1671 NO MINVALUE
1672 NO MAXVALUE
1673 CACHE 1;
1674
1675
1676 ALTER TABLE mirrors_history_id_seq OWNER TO pakfire;
1677
1678 --
1679 -- Name: mirrors_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1680 --
1681
1682 ALTER SEQUENCE mirrors_history_id_seq OWNED BY mirrors_history.id;
1683
1684
1685 --
1686 -- Name: mirrors_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1687 --
1688
1689 CREATE SEQUENCE mirrors_id_seq
1690 START WITH 1
1691 INCREMENT BY 1
1692 NO MINVALUE
1693 NO MAXVALUE
1694 CACHE 1;
1695
1696
1697 ALTER TABLE mirrors_id_seq OWNER TO pakfire;
1698
1699 --
1700 -- Name: mirrors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1701 --
1702
1703 ALTER SEQUENCE mirrors_id_seq OWNED BY mirrors.id;
1704
1705
1706 --
1707 -- Name: packages_deps; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1708 --
1709
1710 CREATE TABLE packages_deps (
1711 pkg_id integer NOT NULL,
1712 type packages_deps_type NOT NULL,
1713 what text NOT NULL
1714 );
1715
1716
1717 ALTER TABLE packages_deps OWNER TO pakfire;
1718
1719 --
1720 -- Name: packages_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1721 --
1722
1723 CREATE SEQUENCE packages_id_seq
1724 START WITH 1
1725 INCREMENT BY 1
1726 NO MINVALUE
1727 NO MAXVALUE
1728 CACHE 1;
1729
1730
1731 ALTER TABLE packages_id_seq OWNER TO pakfire;
1732
1733 --
1734 -- Name: packages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1735 --
1736
1737 ALTER SEQUENCE packages_id_seq OWNED BY packages.id;
1738
1739
1740 --
1741 -- Name: packages_properties; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1742 --
1743
1744 CREATE TABLE packages_properties (
1745 id integer NOT NULL,
1746 name text NOT NULL,
1747 critical_path packages_properties_critical_path DEFAULT 'N'::packages_properties_critical_path NOT NULL,
1748 priority integer DEFAULT 0 NOT NULL
1749 );
1750
1751
1752 ALTER TABLE packages_properties OWNER TO pakfire;
1753
1754 --
1755 -- Name: packages_properties_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1756 --
1757
1758 CREATE SEQUENCE packages_properties_id_seq
1759 START WITH 1
1760 INCREMENT BY 1
1761 NO MINVALUE
1762 NO MAXVALUE
1763 CACHE 1;
1764
1765
1766 ALTER TABLE packages_properties_id_seq OWNER TO pakfire;
1767
1768 --
1769 -- Name: packages_properties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1770 --
1771
1772 ALTER SEQUENCE packages_properties_id_seq OWNED BY packages_properties.id;
1773
1774
1775 --
1776 -- Name: queue_delete; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1777 --
1778
1779 CREATE TABLE queue_delete (
1780 id integer NOT NULL,
1781 path text NOT NULL
1782 );
1783
1784
1785 ALTER TABLE queue_delete OWNER TO pakfire;
1786
1787 --
1788 -- Name: queue_delete_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1789 --
1790
1791 CREATE SEQUENCE queue_delete_id_seq
1792 START WITH 1
1793 INCREMENT BY 1
1794 NO MINVALUE
1795 NO MAXVALUE
1796 CACHE 1;
1797
1798
1799 ALTER TABLE queue_delete_id_seq OWNER TO pakfire;
1800
1801 --
1802 -- Name: queue_delete_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1803 --
1804
1805 ALTER SEQUENCE queue_delete_id_seq OWNED BY queue_delete.id;
1806
1807
1808 --
1809 -- Name: relation_sizes; Type: VIEW; Schema: public; Owner: pakfire
1810 --
1811
1812 CREATE VIEW relation_sizes AS
1813 SELECT c.relname AS relation,
1814 pg_size_pretty(pg_relation_size((c.oid)::regclass)) AS size
1815 FROM (pg_class c
1816 LEFT JOIN pg_namespace n ON ((n.oid = c.relnamespace)))
1817 WHERE (n.nspname <> ALL (ARRAY['pg_catalog'::name, 'information_schema'::name]))
1818 ORDER BY pg_relation_size((c.oid)::regclass) DESC;
1819
1820
1821 ALTER TABLE relation_sizes OWNER TO pakfire;
1822
1823 --
1824 -- Name: repositories; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1825 --
1826
1827 CREATE TABLE repositories (
1828 id integer NOT NULL,
1829 name text NOT NULL,
1830 type repositories_type DEFAULT 'testing'::repositories_type NOT NULL,
1831 description text NOT NULL,
1832 distro_id integer NOT NULL,
1833 parent_id integer,
1834 key_id integer,
1835 mirrored repositories_mirrored DEFAULT 'N'::repositories_mirrored NOT NULL,
1836 enabled_for_builds repositories_enabled_for_builds DEFAULT 'N'::repositories_enabled_for_builds NOT NULL,
1837 score_needed integer DEFAULT 0 NOT NULL,
1838 last_update timestamp without time zone,
1839 time_min integer DEFAULT 0 NOT NULL,
1840 time_max integer DEFAULT 0 NOT NULL,
1841 update_started timestamp without time zone,
1842 update_ended timestamp without time zone
1843 );
1844
1845
1846 ALTER TABLE repositories OWNER TO pakfire;
1847
1848 --
1849 -- Name: repositories_aux; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1850 --
1851
1852 CREATE TABLE repositories_aux (
1853 id integer NOT NULL,
1854 name text NOT NULL,
1855 description text,
1856 url text NOT NULL,
1857 distro_id integer NOT NULL,
1858 status repositories_aux_status DEFAULT 'disabled'::repositories_aux_status NOT NULL
1859 );
1860
1861
1862 ALTER TABLE repositories_aux OWNER TO pakfire;
1863
1864 --
1865 -- Name: repositories_aux_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1866 --
1867
1868 CREATE SEQUENCE repositories_aux_id_seq
1869 START WITH 1
1870 INCREMENT BY 1
1871 NO MINVALUE
1872 NO MAXVALUE
1873 CACHE 1;
1874
1875
1876 ALTER TABLE repositories_aux_id_seq OWNER TO pakfire;
1877
1878 --
1879 -- Name: repositories_aux_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1880 --
1881
1882 ALTER SEQUENCE repositories_aux_id_seq OWNED BY repositories_aux.id;
1883
1884
1885 --
1886 -- Name: repositories_builds_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1887 --
1888
1889 CREATE SEQUENCE repositories_builds_id_seq
1890 START WITH 1
1891 INCREMENT BY 1
1892 NO MINVALUE
1893 NO MAXVALUE
1894 CACHE 1;
1895
1896
1897 ALTER TABLE repositories_builds_id_seq OWNER TO pakfire;
1898
1899 --
1900 -- Name: repositories_builds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1901 --
1902
1903 ALTER SEQUENCE repositories_builds_id_seq OWNED BY repositories_builds.id;
1904
1905
1906 --
1907 -- Name: repositories_history; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1908 --
1909
1910 CREATE TABLE repositories_history (
1911 build_id bigint NOT NULL,
1912 action repositories_history_action NOT NULL,
1913 from_repo_id integer,
1914 to_repo_id integer,
1915 user_id integer,
1916 "time" timestamp without time zone NOT NULL
1917 );
1918
1919
1920 ALTER TABLE repositories_history OWNER TO pakfire;
1921
1922 --
1923 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1924 --
1925
1926 CREATE SEQUENCE repositories_id_seq
1927 START WITH 1
1928 INCREMENT BY 1
1929 NO MINVALUE
1930 NO MAXVALUE
1931 CACHE 1;
1932
1933
1934 ALTER TABLE repositories_id_seq OWNER TO pakfire;
1935
1936 --
1937 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1938 --
1939
1940 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
1941
1942
1943 --
1944 -- Name: sessions; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1945 --
1946
1947 CREATE TABLE sessions (
1948 id integer NOT NULL,
1949 session_id text NOT NULL,
1950 created_at timestamp without time zone DEFAULT now() NOT NULL,
1951 valid_until timestamp without time zone DEFAULT (now() + '7 days'::interval) NOT NULL,
1952 user_id integer NOT NULL,
1953 impersonated_user_id integer,
1954 address inet,
1955 user_agent text,
1956 CONSTRAINT sessions_impersonation_check CHECK (((impersonated_user_id IS NULL) OR (user_id <> impersonated_user_id)))
1957 );
1958
1959
1960 ALTER TABLE sessions OWNER TO pakfire;
1961
1962 --
1963 -- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
1964 --
1965
1966 CREATE SEQUENCE sessions_id_seq
1967 START WITH 1
1968 INCREMENT BY 1
1969 NO MINVALUE
1970 NO MAXVALUE
1971 CACHE 1;
1972
1973
1974 ALTER TABLE sessions_id_seq OWNER TO pakfire;
1975
1976 --
1977 -- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
1978 --
1979
1980 ALTER SEQUENCE sessions_id_seq OWNED BY sessions.id;
1981
1982
1983 --
1984 -- Name: settings; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1985 --
1986
1987 CREATE TABLE settings (
1988 k text NOT NULL,
1989 v text NOT NULL
1990 );
1991
1992
1993 ALTER TABLE settings OWNER TO pakfire;
1994
1995 --
1996 -- Name: slogans; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
1997 --
1998
1999 CREATE TABLE slogans (
2000 id integer NOT NULL,
2001 message text NOT NULL
2002 );
2003
2004
2005 ALTER TABLE slogans OWNER TO pakfire;
2006
2007 --
2008 -- Name: slogans_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2009 --
2010
2011 CREATE SEQUENCE slogans_id_seq
2012 START WITH 1
2013 INCREMENT BY 1
2014 NO MINVALUE
2015 NO MAXVALUE
2016 CACHE 1;
2017
2018
2019 ALTER TABLE slogans_id_seq OWNER TO pakfire;
2020
2021 --
2022 -- Name: slogans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2023 --
2024
2025 ALTER SEQUENCE slogans_id_seq OWNED BY slogans.id;
2026
2027
2028 --
2029 -- Name: sources; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2030 --
2031
2032 CREATE TABLE sources (
2033 id integer NOT NULL,
2034 name text NOT NULL,
2035 identifier text NOT NULL,
2036 url text NOT NULL,
2037 gitweb text,
2038 revision text NOT NULL,
2039 branch text NOT NULL,
2040 updated timestamp without time zone,
2041 distro_id integer NOT NULL
2042 );
2043
2044
2045 ALTER TABLE sources OWNER TO pakfire;
2046
2047 --
2048 -- Name: sources_commits; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2049 --
2050
2051 CREATE TABLE sources_commits (
2052 id integer NOT NULL,
2053 source_id integer NOT NULL,
2054 revision text NOT NULL,
2055 author text NOT NULL,
2056 committer text NOT NULL,
2057 subject text NOT NULL,
2058 body text NOT NULL,
2059 date timestamp without time zone NOT NULL,
2060 state sources_commits_state DEFAULT 'pending'::sources_commits_state NOT NULL
2061 );
2062
2063
2064 ALTER TABLE sources_commits OWNER TO pakfire;
2065
2066 --
2067 -- Name: sources_commits_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2068 --
2069
2070 CREATE SEQUENCE sources_commits_id_seq
2071 START WITH 1
2072 INCREMENT BY 1
2073 NO MINVALUE
2074 NO MAXVALUE
2075 CACHE 1;
2076
2077
2078 ALTER TABLE sources_commits_id_seq OWNER TO pakfire;
2079
2080 --
2081 -- Name: sources_commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2082 --
2083
2084 ALTER SEQUENCE sources_commits_id_seq OWNED BY sources_commits.id;
2085
2086
2087 --
2088 -- Name: sources_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2089 --
2090
2091 CREATE SEQUENCE sources_id_seq
2092 START WITH 1
2093 INCREMENT BY 1
2094 NO MINVALUE
2095 NO MAXVALUE
2096 CACHE 1;
2097
2098
2099 ALTER TABLE sources_id_seq OWNER TO pakfire;
2100
2101 --
2102 -- Name: sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2103 --
2104
2105 ALTER SEQUENCE sources_id_seq OWNED BY sources.id;
2106
2107
2108 --
2109 -- Name: uploads; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2110 --
2111
2112 CREATE TABLE uploads (
2113 id integer NOT NULL,
2114 uuid text NOT NULL,
2115 user_id integer,
2116 builder_id integer,
2117 filename text NOT NULL,
2118 hash text NOT NULL,
2119 size bigint NOT NULL,
2120 progress bigint DEFAULT 0 NOT NULL,
2121 finished uploads_finished DEFAULT 'N'::uploads_finished NOT NULL,
2122 time_started timestamp without time zone DEFAULT now() NOT NULL,
2123 time_finished timestamp without time zone
2124 );
2125
2126
2127 ALTER TABLE uploads OWNER TO pakfire;
2128
2129 --
2130 -- Name: uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2131 --
2132
2133 CREATE SEQUENCE uploads_id_seq
2134 START WITH 1
2135 INCREMENT BY 1
2136 NO MINVALUE
2137 NO MAXVALUE
2138 CACHE 1;
2139
2140
2141 ALTER TABLE uploads_id_seq OWNER TO pakfire;
2142
2143 --
2144 -- Name: uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2145 --
2146
2147 ALTER SEQUENCE uploads_id_seq OWNED BY uploads.id;
2148
2149
2150 --
2151 -- Name: user_messages; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2152 --
2153
2154 CREATE TABLE user_messages (
2155 id integer NOT NULL,
2156 frm text NOT NULL,
2157 "to" text NOT NULL,
2158 subject text NOT NULL,
2159 text text NOT NULL,
2160 time_added timestamp without time zone DEFAULT now() NOT NULL
2161 );
2162
2163
2164 ALTER TABLE user_messages OWNER TO pakfire;
2165
2166 --
2167 -- Name: user_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2168 --
2169
2170 CREATE SEQUENCE user_messages_id_seq
2171 START WITH 1
2172 INCREMENT BY 1
2173 NO MINVALUE
2174 NO MAXVALUE
2175 CACHE 1;
2176
2177
2178 ALTER TABLE user_messages_id_seq OWNER TO pakfire;
2179
2180 --
2181 -- Name: user_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2182 --
2183
2184 ALTER SEQUENCE user_messages_id_seq OWNED BY user_messages.id;
2185
2186
2187 --
2188 -- Name: users; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2189 --
2190
2191 CREATE TABLE users (
2192 id integer NOT NULL,
2193 name text NOT NULL,
2194 realname text,
2195 passphrase text NOT NULL,
2196 state users_state NOT NULL,
2197 locale text,
2198 timezone text,
2199 activated users_activated DEFAULT 'N'::users_activated NOT NULL,
2200 activation_code text,
2201 deleted users_deleted DEFAULT 'N'::users_deleted NOT NULL,
2202 registered timestamp without time zone DEFAULT now() NOT NULL
2203 );
2204
2205
2206 ALTER TABLE users OWNER TO pakfire;
2207
2208 --
2209 -- Name: users_emails; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2210 --
2211
2212 CREATE TABLE users_emails (
2213 id integer NOT NULL,
2214 user_id integer NOT NULL,
2215 email text NOT NULL,
2216 "primary" users_emails_primary DEFAULT 'N'::users_emails_primary NOT NULL
2217 );
2218
2219
2220 ALTER TABLE users_emails OWNER TO pakfire;
2221
2222 --
2223 -- Name: users_emails_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2224 --
2225
2226 CREATE SEQUENCE users_emails_id_seq
2227 START WITH 1
2228 INCREMENT BY 1
2229 NO MINVALUE
2230 NO MAXVALUE
2231 CACHE 1;
2232
2233
2234 ALTER TABLE users_emails_id_seq OWNER TO pakfire;
2235
2236 --
2237 -- Name: users_emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2238 --
2239
2240 ALTER SEQUENCE users_emails_id_seq OWNED BY users_emails.id;
2241
2242
2243 --
2244 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2245 --
2246
2247 CREATE SEQUENCE users_id_seq
2248 START WITH 1
2249 INCREMENT BY 1
2250 NO MINVALUE
2251 NO MAXVALUE
2252 CACHE 1;
2253
2254
2255 ALTER TABLE users_id_seq OWNER TO pakfire;
2256
2257 --
2258 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2259 --
2260
2261 ALTER SEQUENCE users_id_seq OWNED BY users.id;
2262
2263
2264 --
2265 -- Name: users_permissions; Type: TABLE; Schema: public; Owner: pakfire; Tablespace:
2266 --
2267
2268 CREATE TABLE users_permissions (
2269 id integer NOT NULL,
2270 user_id integer NOT NULL,
2271 create_scratch_builds users_permissions_create_scratch_builds DEFAULT 'N'::users_permissions_create_scratch_builds NOT NULL,
2272 maintain_builders users_permissions_maintain_builders DEFAULT 'N'::users_permissions_maintain_builders NOT NULL,
2273 manage_critical_path users_permissions_manage_critical_path DEFAULT 'N'::users_permissions_manage_critical_path NOT NULL,
2274 manage_mirrors users_permissions_manage_mirrors DEFAULT 'N'::users_permissions_manage_mirrors NOT NULL,
2275 vote users_permissions_vote DEFAULT 'N'::users_permissions_vote NOT NULL
2276 );
2277
2278
2279 ALTER TABLE users_permissions OWNER TO pakfire;
2280
2281 --
2282 -- Name: users_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: pakfire
2283 --
2284
2285 CREATE SEQUENCE users_permissions_id_seq
2286 START WITH 1
2287 INCREMENT BY 1
2288 NO MINVALUE
2289 NO MAXVALUE
2290 CACHE 1;
2291
2292
2293 ALTER TABLE users_permissions_id_seq OWNER TO pakfire;
2294
2295 --
2296 -- Name: users_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pakfire
2297 --
2298
2299 ALTER SEQUENCE users_permissions_id_seq OWNED BY users_permissions.id;
2300
2301
2302 --
2303 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2304 --
2305
2306 ALTER TABLE ONLY arches ALTER COLUMN id SET DEFAULT nextval('arches_id_seq'::regclass);
2307
2308
2309 --
2310 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2311 --
2312
2313 ALTER TABLE ONLY builders ALTER COLUMN id SET DEFAULT nextval('builders_id_seq'::regclass);
2314
2315
2316 --
2317 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2318 --
2319
2320 ALTER TABLE ONLY builders_arches ALTER COLUMN id SET DEFAULT nextval('builders_arches_id_seq'::regclass);
2321
2322
2323 --
2324 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2325 --
2326
2327 ALTER TABLE ONLY builders_history ALTER COLUMN id SET DEFAULT nextval('builders_history_id_seq'::regclass);
2328
2329
2330 --
2331 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2332 --
2333
2334 ALTER TABLE ONLY builds ALTER COLUMN id SET DEFAULT nextval('builds_id_seq'::regclass);
2335
2336
2337 --
2338 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2339 --
2340
2341 ALTER TABLE ONLY builds_bugs ALTER COLUMN id SET DEFAULT nextval('builds_bugs_id_seq'::regclass);
2342
2343
2344 --
2345 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2346 --
2347
2348 ALTER TABLE ONLY builds_bugs_updates ALTER COLUMN id SET DEFAULT nextval('builds_bugs_updates_id_seq'::regclass);
2349
2350
2351 --
2352 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2353 --
2354
2355 ALTER TABLE ONLY builds_comments ALTER COLUMN id SET DEFAULT nextval('builds_comments_id_seq'::regclass);
2356
2357
2358 --
2359 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2360 --
2361
2362 ALTER TABLE ONLY builds_history ALTER COLUMN id SET DEFAULT nextval('builds_history_id_seq'::regclass);
2363
2364
2365 --
2366 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2367 --
2368
2369 ALTER TABLE ONLY builds_watchers ALTER COLUMN id SET DEFAULT nextval('builds_watchers_id_seq'::regclass);
2370
2371
2372 --
2373 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2374 --
2375
2376 ALTER TABLE ONLY distributions ALTER COLUMN id SET DEFAULT nextval('distributions_id_seq'::regclass);
2377
2378
2379 --
2380 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2381 --
2382
2383 ALTER TABLE ONLY distro_arches ALTER COLUMN id SET DEFAULT nextval('distro_arches_id_seq'::regclass);
2384
2385
2386 --
2387 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2388 --
2389
2390 ALTER TABLE ONLY images_types ALTER COLUMN id SET DEFAULT nextval('images_types_id_seq'::regclass);
2391
2392
2393 --
2394 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2395 --
2396
2397 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
2398
2399
2400 --
2401 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2402 --
2403
2404 ALTER TABLE ONLY jobs_packages ALTER COLUMN id SET DEFAULT nextval('jobs_packages_id_seq'::regclass);
2405
2406
2407 --
2408 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2409 --
2410
2411 ALTER TABLE ONLY keys ALTER COLUMN id SET DEFAULT nextval('keys_id_seq'::regclass);
2412
2413
2414 --
2415 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2416 --
2417
2418 ALTER TABLE ONLY keys_subkeys ALTER COLUMN id SET DEFAULT nextval('keys_subkeys_id_seq'::regclass);
2419
2420
2421 --
2422 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2423 --
2424
2425 ALTER TABLE ONLY logfiles ALTER COLUMN id SET DEFAULT nextval('logfiles_id_seq'::regclass);
2426
2427
2428 --
2429 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2430 --
2431
2432 ALTER TABLE ONLY mirrors ALTER COLUMN id SET DEFAULT nextval('mirrors_id_seq'::regclass);
2433
2434
2435 --
2436 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2437 --
2438
2439 ALTER TABLE ONLY mirrors_checks ALTER COLUMN id SET DEFAULT nextval('mirrors_checks_id_seq'::regclass);
2440
2441
2442 --
2443 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2444 --
2445
2446 ALTER TABLE ONLY mirrors_history ALTER COLUMN id SET DEFAULT nextval('mirrors_history_id_seq'::regclass);
2447
2448
2449 --
2450 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2451 --
2452
2453 ALTER TABLE ONLY packages ALTER COLUMN id SET DEFAULT nextval('packages_id_seq'::regclass);
2454
2455
2456 --
2457 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2458 --
2459
2460 ALTER TABLE ONLY packages_properties ALTER COLUMN id SET DEFAULT nextval('packages_properties_id_seq'::regclass);
2461
2462
2463 --
2464 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2465 --
2466
2467 ALTER TABLE ONLY queue_delete ALTER COLUMN id SET DEFAULT nextval('queue_delete_id_seq'::regclass);
2468
2469
2470 --
2471 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2472 --
2473
2474 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
2475
2476
2477 --
2478 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2479 --
2480
2481 ALTER TABLE ONLY repositories_aux ALTER COLUMN id SET DEFAULT nextval('repositories_aux_id_seq'::regclass);
2482
2483
2484 --
2485 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2486 --
2487
2488 ALTER TABLE ONLY repositories_builds ALTER COLUMN id SET DEFAULT nextval('repositories_builds_id_seq'::regclass);
2489
2490
2491 --
2492 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2493 --
2494
2495 ALTER TABLE ONLY sessions ALTER COLUMN id SET DEFAULT nextval('sessions_id_seq'::regclass);
2496
2497
2498 --
2499 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2500 --
2501
2502 ALTER TABLE ONLY slogans ALTER COLUMN id SET DEFAULT nextval('slogans_id_seq'::regclass);
2503
2504
2505 --
2506 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2507 --
2508
2509 ALTER TABLE ONLY sources ALTER COLUMN id SET DEFAULT nextval('sources_id_seq'::regclass);
2510
2511
2512 --
2513 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2514 --
2515
2516 ALTER TABLE ONLY sources_commits ALTER COLUMN id SET DEFAULT nextval('sources_commits_id_seq'::regclass);
2517
2518
2519 --
2520 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2521 --
2522
2523 ALTER TABLE ONLY uploads ALTER COLUMN id SET DEFAULT nextval('uploads_id_seq'::regclass);
2524
2525
2526 --
2527 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2528 --
2529
2530 ALTER TABLE ONLY user_messages ALTER COLUMN id SET DEFAULT nextval('user_messages_id_seq'::regclass);
2531
2532
2533 --
2534 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2535 --
2536
2537 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
2538
2539
2540 --
2541 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2542 --
2543
2544 ALTER TABLE ONLY users_emails ALTER COLUMN id SET DEFAULT nextval('users_emails_id_seq'::regclass);
2545
2546
2547 --
2548 -- Name: id; Type: DEFAULT; Schema: public; Owner: pakfire
2549 --
2550
2551 ALTER TABLE ONLY users_permissions ALTER COLUMN id SET DEFAULT nextval('users_permissions_id_seq'::regclass);
2552
2553
2554 --
2555 -- Name: arches_name; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2556 --
2557
2558 ALTER TABLE ONLY arches
2559 ADD CONSTRAINT arches_name UNIQUE (name);
2560
2561
2562 --
2563 -- Name: idx_2197943_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2564 --
2565
2566 ALTER TABLE ONLY arches
2567 ADD CONSTRAINT idx_2197943_primary PRIMARY KEY (id);
2568
2569
2570 --
2571 -- Name: idx_2197954_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2572 --
2573
2574 ALTER TABLE ONLY builders
2575 ADD CONSTRAINT idx_2197954_primary PRIMARY KEY (id);
2576
2577
2578 --
2579 -- Name: idx_2197975_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2580 --
2581
2582 ALTER TABLE ONLY builders_arches
2583 ADD CONSTRAINT idx_2197975_primary PRIMARY KEY (id);
2584
2585
2586 --
2587 -- Name: idx_2197982_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2588 --
2589
2590 ALTER TABLE ONLY builders_history
2591 ADD CONSTRAINT idx_2197982_primary PRIMARY KEY (id);
2592
2593
2594 --
2595 -- Name: idx_2197988_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2596 --
2597
2598 ALTER TABLE ONLY builds
2599 ADD CONSTRAINT idx_2197988_primary PRIMARY KEY (id);
2600
2601
2602 --
2603 -- Name: idx_2198002_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2604 --
2605
2606 ALTER TABLE ONLY builds_bugs
2607 ADD CONSTRAINT idx_2198002_primary PRIMARY KEY (id);
2608
2609
2610 --
2611 -- Name: idx_2198008_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2612 --
2613
2614 ALTER TABLE ONLY builds_bugs_updates
2615 ADD CONSTRAINT idx_2198008_primary PRIMARY KEY (id);
2616
2617
2618 --
2619 -- Name: idx_2198018_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2620 --
2621
2622 ALTER TABLE ONLY builds_comments
2623 ADD CONSTRAINT idx_2198018_primary PRIMARY KEY (id);
2624
2625
2626 --
2627 -- Name: idx_2198027_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2628 --
2629
2630 ALTER TABLE ONLY builds_history
2631 ADD CONSTRAINT idx_2198027_primary PRIMARY KEY (id);
2632
2633
2634 --
2635 -- Name: idx_2198033_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2636 --
2637
2638 ALTER TABLE ONLY builds_watchers
2639 ADD CONSTRAINT idx_2198033_primary PRIMARY KEY (id);
2640
2641
2642 --
2643 -- Name: idx_2198039_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2644 --
2645
2646 ALTER TABLE ONLY distributions
2647 ADD CONSTRAINT idx_2198039_primary PRIMARY KEY (id);
2648
2649
2650 --
2651 -- Name: idx_2198048_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2652 --
2653
2654 ALTER TABLE ONLY distro_arches
2655 ADD CONSTRAINT idx_2198048_primary PRIMARY KEY (id);
2656
2657
2658 --
2659 -- Name: idx_2198057_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2660 --
2661
2662 ALTER TABLE ONLY images_types
2663 ADD CONSTRAINT idx_2198057_primary PRIMARY KEY (id);
2664
2665
2666 --
2667 -- Name: idx_2198063_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2668 --
2669
2670 ALTER TABLE ONLY jobs
2671 ADD CONSTRAINT idx_2198063_primary PRIMARY KEY (id);
2672
2673
2674 --
2675 -- Name: idx_2198085_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2676 --
2677
2678 ALTER TABLE ONLY jobs_packages
2679 ADD CONSTRAINT idx_2198085_primary PRIMARY KEY (id);
2680
2681
2682 --
2683 -- Name: idx_2198094_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2684 --
2685
2686 ALTER TABLE ONLY keys
2687 ADD CONSTRAINT idx_2198094_primary PRIMARY KEY (id);
2688
2689
2690 --
2691 -- Name: idx_2198103_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2692 --
2693
2694 ALTER TABLE ONLY keys_subkeys
2695 ADD CONSTRAINT idx_2198103_primary PRIMARY KEY (id);
2696
2697
2698 --
2699 -- Name: idx_2198109_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2700 --
2701
2702 ALTER TABLE ONLY logfiles
2703 ADD CONSTRAINT idx_2198109_primary PRIMARY KEY (id);
2704
2705
2706 --
2707 -- Name: idx_2198115_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2708 --
2709
2710 ALTER TABLE ONLY mirrors
2711 ADD CONSTRAINT idx_2198115_primary PRIMARY KEY (id);
2712
2713
2714 --
2715 -- Name: idx_2198126_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2716 --
2717
2718 ALTER TABLE ONLY mirrors_history
2719 ADD CONSTRAINT idx_2198126_primary PRIMARY KEY (id);
2720
2721
2722 --
2723 -- Name: idx_2198132_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2724 --
2725
2726 ALTER TABLE ONLY packages
2727 ADD CONSTRAINT idx_2198132_primary PRIMARY KEY (id);
2728
2729
2730 --
2731 -- Name: idx_2198147_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2732 --
2733
2734 ALTER TABLE ONLY packages_properties
2735 ADD CONSTRAINT idx_2198147_primary PRIMARY KEY (id);
2736
2737
2738 --
2739 -- Name: idx_2198155_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2740 --
2741
2742 ALTER TABLE ONLY queue_delete
2743 ADD CONSTRAINT idx_2198155_primary PRIMARY KEY (id);
2744
2745
2746 --
2747 -- Name: idx_2198164_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2748 --
2749
2750 ALTER TABLE ONLY repositories
2751 ADD CONSTRAINT idx_2198164_primary PRIMARY KEY (id);
2752
2753
2754 --
2755 -- Name: idx_2198179_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2756 --
2757
2758 ALTER TABLE ONLY repositories_aux
2759 ADD CONSTRAINT idx_2198179_primary PRIMARY KEY (id);
2760
2761
2762 --
2763 -- Name: idx_2198189_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2764 --
2765
2766 ALTER TABLE ONLY repositories_builds
2767 ADD CONSTRAINT idx_2198189_primary PRIMARY KEY (id);
2768
2769
2770 --
2771 -- Name: idx_2198207_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2772 --
2773
2774 ALTER TABLE ONLY slogans
2775 ADD CONSTRAINT idx_2198207_primary PRIMARY KEY (id);
2776
2777
2778 --
2779 -- Name: idx_2198213_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2780 --
2781
2782 ALTER TABLE ONLY sources
2783 ADD CONSTRAINT idx_2198213_primary PRIMARY KEY (id);
2784
2785
2786 --
2787 -- Name: idx_2198222_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2788 --
2789
2790 ALTER TABLE ONLY sources_commits
2791 ADD CONSTRAINT idx_2198222_primary PRIMARY KEY (id);
2792
2793
2794 --
2795 -- Name: idx_2198232_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2796 --
2797
2798 ALTER TABLE ONLY uploads
2799 ADD CONSTRAINT idx_2198232_primary PRIMARY KEY (id);
2800
2801
2802 --
2803 -- Name: idx_2198244_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2804 --
2805
2806 ALTER TABLE ONLY users
2807 ADD CONSTRAINT idx_2198244_primary PRIMARY KEY (id);
2808
2809
2810 --
2811 -- Name: idx_2198256_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2812 --
2813
2814 ALTER TABLE ONLY users_emails
2815 ADD CONSTRAINT idx_2198256_primary PRIMARY KEY (id);
2816
2817
2818 --
2819 -- Name: idx_2198263_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2820 --
2821
2822 ALTER TABLE ONLY users_permissions
2823 ADD CONSTRAINT idx_2198263_primary PRIMARY KEY (id);
2824
2825
2826 --
2827 -- Name: idx_2198274_primary; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2828 --
2829
2830 ALTER TABLE ONLY user_messages
2831 ADD CONSTRAINT idx_2198274_primary PRIMARY KEY (id);
2832
2833
2834 --
2835 -- Name: jobs_packages_unique; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2836 --
2837
2838 ALTER TABLE ONLY jobs_packages
2839 ADD CONSTRAINT jobs_packages_unique UNIQUE (job_id, pkg_id);
2840
2841
2842 --
2843 -- Name: mirrors_checks_pkey; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2844 --
2845
2846 ALTER TABLE ONLY mirrors_checks
2847 ADD CONSTRAINT mirrors_checks_pkey PRIMARY KEY (id);
2848
2849
2850 --
2851 -- Name: sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2852 --
2853
2854 ALTER TABLE ONLY sessions
2855 ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);
2856
2857
2858 --
2859 -- Name: sessions_session_id_key; Type: CONSTRAINT; Schema: public; Owner: pakfire; Tablespace:
2860 --
2861
2862 ALTER TABLE ONLY sessions
2863 ADD CONSTRAINT sessions_session_id_key UNIQUE (session_id);
2864
2865
2866 --
2867 -- Name: builders_arches_builder_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2868 --
2869
2870 CREATE INDEX builders_arches_builder_id ON builders_arches USING btree (builder_id);
2871
2872
2873 --
2874 -- Name: builds_watchers_build_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2875 --
2876
2877 CREATE INDEX builds_watchers_build_id ON builds_watchers USING btree (build_id);
2878
2879
2880 --
2881 -- Name: filelists_name; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2882 --
2883
2884 CREATE INDEX filelists_name ON filelists USING btree (name);
2885
2886
2887 --
2888 -- Name: idx_2197949_host_arch; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2889 --
2890
2891 CREATE INDEX idx_2197949_host_arch ON arches_compat USING btree (host_arch);
2892
2893
2894 --
2895 -- Name: idx_2197982_builder_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2896 --
2897
2898 CREATE INDEX idx_2197982_builder_id ON builders_history USING btree (builder_id);
2899
2900
2901 --
2902 -- Name: idx_2197988_pkg_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2903 --
2904
2905 CREATE INDEX idx_2197988_pkg_id ON builds USING btree (pkg_id);
2906
2907
2908 --
2909 -- Name: idx_2197988_state; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2910 --
2911
2912 CREATE INDEX idx_2197988_state ON builds USING btree (state);
2913
2914
2915 --
2916 -- Name: idx_2197988_type; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2917 --
2918
2919 CREATE INDEX idx_2197988_type ON builds USING btree (type);
2920
2921
2922 --
2923 -- Name: idx_2197988_uuid; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2924 --
2925
2926 CREATE UNIQUE INDEX idx_2197988_uuid ON builds USING btree (uuid);
2927
2928
2929 --
2930 -- Name: idx_2198002_build_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2931 --
2932
2933 CREATE UNIQUE INDEX idx_2198002_build_id ON builds_bugs USING btree (build_id, bug_id);
2934
2935
2936 --
2937 -- Name: idx_2198018_build_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2938 --
2939
2940 CREATE INDEX idx_2198018_build_id ON builds_comments USING btree (build_id);
2941
2942
2943 --
2944 -- Name: idx_2198018_user_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2945 --
2946
2947 CREATE INDEX idx_2198018_user_id ON builds_comments USING btree (user_id);
2948
2949
2950 --
2951 -- Name: idx_2198052_pkg_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2952 --
2953
2954 CREATE INDEX idx_2198052_pkg_id ON filelists USING btree (pkg_id);
2955
2956
2957 --
2958 -- Name: idx_2198063_build_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2959 --
2960
2961 CREATE INDEX idx_2198063_build_id ON jobs USING btree (build_id);
2962
2963
2964 --
2965 -- Name: idx_2198063_state; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2966 --
2967
2968 CREATE INDEX idx_2198063_state ON jobs USING btree (state);
2969
2970
2971 --
2972 -- Name: idx_2198063_time_finished; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2973 --
2974
2975 CREATE INDEX idx_2198063_time_finished ON jobs USING btree (time_finished);
2976
2977
2978 --
2979 -- Name: idx_2198063_type; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2980 --
2981
2982 CREATE INDEX idx_2198063_type ON jobs USING btree (type);
2983
2984
2985 --
2986 -- Name: idx_2198063_uuid; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2987 --
2988
2989 CREATE UNIQUE INDEX idx_2198063_uuid ON jobs USING btree (uuid);
2990
2991
2992 --
2993 -- Name: idx_2198074_job_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
2994 --
2995
2996 CREATE INDEX idx_2198074_job_id ON jobs_buildroots USING btree (job_id);
2997
2998
2999 --
3000 -- Name: idx_2198080_job_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3001 --
3002
3003 CREATE INDEX idx_2198080_job_id ON jobs_history USING btree (job_id);
3004
3005
3006 --
3007 -- Name: idx_2198089_job_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3008 --
3009
3010 CREATE UNIQUE INDEX idx_2198089_job_id ON jobs_repos USING btree (job_id, repo_id);
3011
3012
3013 --
3014 -- Name: idx_2198094_fingerprint; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3015 --
3016
3017 CREATE UNIQUE INDEX idx_2198094_fingerprint ON keys USING btree (fingerprint);
3018
3019
3020 --
3021 -- Name: idx_2198132_epoch; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3022 --
3023
3024 CREATE INDEX idx_2198132_epoch ON packages USING btree (epoch);
3025
3026
3027 --
3028 -- Name: idx_2198132_name; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3029 --
3030
3031 CREATE INDEX idx_2198132_name ON packages USING btree (name);
3032
3033
3034 --
3035 -- Name: idx_2198132_release; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3036 --
3037
3038 CREATE INDEX idx_2198132_release ON packages USING btree (release);
3039
3040
3041 --
3042 -- Name: idx_2198132_type; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3043 --
3044
3045 CREATE INDEX idx_2198132_type ON packages USING btree (type);
3046
3047
3048 --
3049 -- Name: idx_2198132_uuid; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3050 --
3051
3052 CREATE INDEX idx_2198132_uuid ON packages USING btree (uuid);
3053
3054
3055 --
3056 -- Name: idx_2198132_version; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3057 --
3058
3059 CREATE INDEX idx_2198132_version ON packages USING btree (version);
3060
3061
3062 --
3063 -- Name: idx_2198139_pkg_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3064 --
3065
3066 CREATE INDEX idx_2198139_pkg_id ON packages_deps USING btree (pkg_id);
3067
3068
3069 --
3070 -- Name: idx_2198147_name; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3071 --
3072
3073 CREATE UNIQUE INDEX idx_2198147_name ON packages_properties USING btree (name);
3074
3075
3076 --
3077 -- Name: idx_2198189_build_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3078 --
3079
3080 CREATE UNIQUE INDEX idx_2198189_build_id ON repositories_builds USING btree (build_id);
3081
3082
3083 --
3084 -- Name: idx_2198193_build_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3085 --
3086
3087 CREATE INDEX idx_2198193_build_id ON repositories_history USING btree (build_id);
3088
3089
3090 --
3091 -- Name: idx_2198199_k; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3092 --
3093
3094 CREATE UNIQUE INDEX idx_2198199_k ON settings USING btree (k);
3095
3096
3097 --
3098 -- Name: idx_2198213_identifier; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3099 --
3100
3101 CREATE UNIQUE INDEX idx_2198213_identifier ON sources USING btree (identifier);
3102
3103
3104 --
3105 -- Name: idx_2198222_revision; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3106 --
3107
3108 CREATE INDEX idx_2198222_revision ON sources_commits USING btree (revision);
3109
3110
3111 --
3112 -- Name: idx_2198232_uuid; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3113 --
3114
3115 CREATE UNIQUE INDEX idx_2198232_uuid ON uploads USING btree (uuid);
3116
3117
3118 --
3119 -- Name: idx_2198244_name; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3120 --
3121
3122 CREATE UNIQUE INDEX idx_2198244_name ON users USING btree (name);
3123
3124
3125 --
3126 -- Name: idx_2198256_email; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3127 --
3128
3129 CREATE UNIQUE INDEX idx_2198256_email ON users_emails USING btree (email);
3130
3131
3132 --
3133 -- Name: idx_2198256_user_id; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3134 --
3135
3136 CREATE INDEX idx_2198256_user_id ON users_emails USING btree (user_id);
3137
3138
3139 --
3140 -- Name: jobs_arch; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3141 --
3142
3143 CREATE INDEX jobs_arch ON jobs USING btree (arch);
3144
3145
3146 --
3147 -- Name: jobs_buildroots_pkg_uuid; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3148 --
3149
3150 CREATE INDEX jobs_buildroots_pkg_uuid ON jobs_buildroots USING btree (pkg_uuid);
3151
3152
3153 --
3154 -- Name: mirrors_checks_sort; Type: INDEX; Schema: public; Owner: pakfire; Tablespace:
3155 --
3156
3157 CREATE INDEX mirrors_checks_sort ON mirrors_checks USING btree (mirror_id, "timestamp");
3158
3159 ALTER TABLE mirrors_checks CLUSTER ON mirrors_checks_sort;
3160
3161
3162 --
3163 -- Name: on_update_current_timestamp; Type: TRIGGER; Schema: public; Owner: pakfire
3164 --
3165
3166 CREATE TRIGGER on_update_current_timestamp BEFORE UPDATE ON sources FOR EACH ROW EXECUTE PROCEDURE on_update_current_timestamp_sources();
3167
3168
3169 --
3170 -- Name: builders_arches_arch_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3171 --
3172
3173 ALTER TABLE ONLY builders_arches
3174 ADD CONSTRAINT builders_arches_arch_id FOREIGN KEY (arch_id) REFERENCES arches(id);
3175
3176
3177 --
3178 -- Name: builders_arches_builder_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3179 --
3180
3181 ALTER TABLE ONLY builders_arches
3182 ADD CONSTRAINT builders_arches_builder_id FOREIGN KEY (builder_id) REFERENCES builders(id);
3183
3184
3185 --
3186 -- Name: builders_history_builder_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3187 --
3188
3189 ALTER TABLE ONLY builders_history
3190 ADD CONSTRAINT builders_history_builder_id FOREIGN KEY (builder_id) REFERENCES builders(id);
3191
3192
3193 --
3194 -- Name: builders_history_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3195 --
3196
3197 ALTER TABLE ONLY builders_history
3198 ADD CONSTRAINT builders_history_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3199
3200
3201 --
3202 -- Name: builds_bug_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3203 --
3204
3205 ALTER TABLE ONLY builds_bugs
3206 ADD CONSTRAINT builds_bug_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3207
3208
3209 --
3210 -- Name: builds_comments_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3211 --
3212
3213 ALTER TABLE ONLY builds_comments
3214 ADD CONSTRAINT builds_comments_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3215
3216
3217 --
3218 -- Name: builds_comments_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3219 --
3220
3221 ALTER TABLE ONLY builds_comments
3222 ADD CONSTRAINT builds_comments_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3223
3224
3225 --
3226 -- Name: builds_depends_on; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3227 --
3228
3229 ALTER TABLE ONLY builds
3230 ADD CONSTRAINT builds_depends_on FOREIGN KEY (depends_on) REFERENCES builds(id);
3231
3232
3233 --
3234 -- Name: builds_distro_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3235 --
3236
3237 ALTER TABLE ONLY builds
3238 ADD CONSTRAINT builds_distro_id FOREIGN KEY (distro_id) REFERENCES distributions(id);
3239
3240
3241 --
3242 -- Name: builds_history_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3243 --
3244
3245 ALTER TABLE ONLY builds_history
3246 ADD CONSTRAINT builds_history_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3247
3248
3249 --
3250 -- Name: builds_history_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3251 --
3252
3253 ALTER TABLE ONLY builds_history
3254 ADD CONSTRAINT builds_history_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3255
3256
3257 --
3258 -- Name: builds_owner_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3259 --
3260
3261 ALTER TABLE ONLY builds
3262 ADD CONSTRAINT builds_owner_id FOREIGN KEY (owner_id) REFERENCES users(id);
3263
3264
3265 --
3266 -- Name: builds_pkg_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3267 --
3268
3269 ALTER TABLE ONLY builds
3270 ADD CONSTRAINT builds_pkg_id FOREIGN KEY (pkg_id) REFERENCES packages(id);
3271
3272
3273 --
3274 -- Name: builds_watchers_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3275 --
3276
3277 ALTER TABLE ONLY builds_watchers
3278 ADD CONSTRAINT builds_watchers_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3279
3280
3281 --
3282 -- Name: builds_watchers_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3283 --
3284
3285 ALTER TABLE ONLY builds_watchers
3286 ADD CONSTRAINT builds_watchers_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3287
3288
3289 --
3290 -- Name: distro_arches_arch_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3291 --
3292
3293 ALTER TABLE ONLY distro_arches
3294 ADD CONSTRAINT distro_arches_arch_id FOREIGN KEY (arch_id) REFERENCES arches(id);
3295
3296
3297 --
3298 -- Name: distro_arches_distro_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3299 --
3300
3301 ALTER TABLE ONLY distro_arches
3302 ADD CONSTRAINT distro_arches_distro_id FOREIGN KEY (distro_id) REFERENCES distributions(id);
3303
3304
3305 --
3306 -- Name: filelists_pkg_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3307 --
3308
3309 ALTER TABLE ONLY filelists
3310 ADD CONSTRAINT filelists_pkg_id FOREIGN KEY (pkg_id) REFERENCES packages(id);
3311
3312
3313 --
3314 -- Name: jobs_arch; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3315 --
3316
3317 ALTER TABLE ONLY jobs
3318 ADD CONSTRAINT jobs_arch FOREIGN KEY (arch) REFERENCES arches(name);
3319
3320
3321 --
3322 -- Name: jobs_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3323 --
3324
3325 ALTER TABLE ONLY jobs
3326 ADD CONSTRAINT jobs_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3327
3328
3329 --
3330 -- Name: jobs_builder_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3331 --
3332
3333 ALTER TABLE ONLY jobs
3334 ADD CONSTRAINT jobs_builder_id FOREIGN KEY (builder_id) REFERENCES builders(id);
3335
3336
3337 --
3338 -- Name: jobs_buildroots_job_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3339 --
3340
3341 ALTER TABLE ONLY jobs_buildroots
3342 ADD CONSTRAINT jobs_buildroots_job_id FOREIGN KEY (job_id) REFERENCES jobs(id);
3343
3344
3345 --
3346 -- Name: jobs_history_builder_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3347 --
3348
3349 ALTER TABLE ONLY jobs_history
3350 ADD CONSTRAINT jobs_history_builder_id FOREIGN KEY (builder_id) REFERENCES builders(id);
3351
3352
3353 --
3354 -- Name: jobs_history_job_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3355 --
3356
3357 ALTER TABLE ONLY jobs_history
3358 ADD CONSTRAINT jobs_history_job_id FOREIGN KEY (job_id) REFERENCES jobs(id);
3359
3360
3361 --
3362 -- Name: jobs_history_test_job_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3363 --
3364
3365 ALTER TABLE ONLY jobs_history
3366 ADD CONSTRAINT jobs_history_test_job_id FOREIGN KEY (test_job_id) REFERENCES jobs(id);
3367
3368
3369 --
3370 -- Name: jobs_history_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3371 --
3372
3373 ALTER TABLE ONLY jobs_history
3374 ADD CONSTRAINT jobs_history_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3375
3376
3377 --
3378 -- Name: jobs_packaged_job_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3379 --
3380
3381 ALTER TABLE ONLY jobs_packages
3382 ADD CONSTRAINT jobs_packaged_job_id FOREIGN KEY (job_id) REFERENCES jobs(id);
3383
3384
3385 --
3386 -- Name: jobs_packages_pkg_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3387 --
3388
3389 ALTER TABLE ONLY jobs_packages
3390 ADD CONSTRAINT jobs_packages_pkg_id FOREIGN KEY (pkg_id) REFERENCES packages(id);
3391
3392
3393 --
3394 -- Name: jobs_repos_job_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3395 --
3396
3397 ALTER TABLE ONLY jobs_repos
3398 ADD CONSTRAINT jobs_repos_job_id FOREIGN KEY (job_id) REFERENCES jobs(id);
3399
3400
3401 --
3402 -- Name: jobs_repos_repo_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3403 --
3404
3405 ALTER TABLE ONLY jobs_repos
3406 ADD CONSTRAINT jobs_repos_repo_id FOREIGN KEY (repo_id) REFERENCES repositories(id);
3407
3408
3409 --
3410 -- Name: keys_subkeys_key_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3411 --
3412
3413 ALTER TABLE ONLY keys_subkeys
3414 ADD CONSTRAINT keys_subkeys_key_id FOREIGN KEY (key_id) REFERENCES keys(id);
3415
3416
3417 --
3418 -- Name: logfiles_job_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3419 --
3420
3421 ALTER TABLE ONLY logfiles
3422 ADD CONSTRAINT logfiles_job_id FOREIGN KEY (job_id) REFERENCES jobs(id);
3423
3424
3425 --
3426 -- Name: mirrors_checks_mirror_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3427 --
3428
3429 ALTER TABLE ONLY mirrors_checks
3430 ADD CONSTRAINT mirrors_checks_mirror_id FOREIGN KEY (mirror_id) REFERENCES mirrors(id);
3431
3432
3433 --
3434 -- Name: mirrors_history_mirror_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3435 --
3436
3437 ALTER TABLE ONLY mirrors_history
3438 ADD CONSTRAINT mirrors_history_mirror_id FOREIGN KEY (mirror_id) REFERENCES mirrors(id);
3439
3440
3441 --
3442 -- Name: mirrors_history_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3443 --
3444
3445 ALTER TABLE ONLY mirrors_history
3446 ADD CONSTRAINT mirrors_history_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3447
3448
3449 --
3450 -- Name: packages_arch; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3451 --
3452
3453 ALTER TABLE ONLY packages
3454 ADD CONSTRAINT packages_arch FOREIGN KEY (arch) REFERENCES arches(id);
3455
3456
3457 --
3458 -- Name: packages_commit_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3459 --
3460
3461 ALTER TABLE ONLY packages
3462 ADD CONSTRAINT packages_commit_id FOREIGN KEY (commit_id) REFERENCES sources_commits(id);
3463
3464
3465 --
3466 -- Name: packages_deps_pkg_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3467 --
3468
3469 ALTER TABLE ONLY packages_deps
3470 ADD CONSTRAINT packages_deps_pkg_id FOREIGN KEY (pkg_id) REFERENCES packages(id);
3471
3472
3473 --
3474 -- Name: repositories_aux_distro_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3475 --
3476
3477 ALTER TABLE ONLY repositories_aux
3478 ADD CONSTRAINT repositories_aux_distro_id FOREIGN KEY (distro_id) REFERENCES distributions(id);
3479
3480
3481 --
3482 -- Name: repositories_builds_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3483 --
3484
3485 ALTER TABLE ONLY repositories_builds
3486 ADD CONSTRAINT repositories_builds_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3487
3488
3489 --
3490 -- Name: repositories_builds_repo_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3491 --
3492
3493 ALTER TABLE ONLY repositories_builds
3494 ADD CONSTRAINT repositories_builds_repo_id FOREIGN KEY (repo_id) REFERENCES repositories(id);
3495
3496
3497 --
3498 -- Name: repositories_distro_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3499 --
3500
3501 ALTER TABLE ONLY repositories
3502 ADD CONSTRAINT repositories_distro_id FOREIGN KEY (distro_id) REFERENCES distributions(id);
3503
3504
3505 --
3506 -- Name: repositories_history_build_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3507 --
3508
3509 ALTER TABLE ONLY repositories_history
3510 ADD CONSTRAINT repositories_history_build_id FOREIGN KEY (build_id) REFERENCES builds(id);
3511
3512
3513 --
3514 -- Name: repositories_history_from_repo_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3515 --
3516
3517 ALTER TABLE ONLY repositories_history
3518 ADD CONSTRAINT repositories_history_from_repo_id FOREIGN KEY (from_repo_id) REFERENCES repositories(id);
3519
3520
3521 --
3522 -- Name: repositories_history_to_repo_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3523 --
3524
3525 ALTER TABLE ONLY repositories_history
3526 ADD CONSTRAINT repositories_history_to_repo_id FOREIGN KEY (to_repo_id) REFERENCES repositories(id);
3527
3528
3529 --
3530 -- Name: repositories_history_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3531 --
3532
3533 ALTER TABLE ONLY repositories_history
3534 ADD CONSTRAINT repositories_history_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3535
3536
3537 --
3538 -- Name: repositories_key_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3539 --
3540
3541 ALTER TABLE ONLY repositories
3542 ADD CONSTRAINT repositories_key_id FOREIGN KEY (key_id) REFERENCES keys(id);
3543
3544
3545 --
3546 -- Name: repositories_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3547 --
3548
3549 ALTER TABLE ONLY repositories
3550 ADD CONSTRAINT repositories_parent_id FOREIGN KEY (parent_id) REFERENCES repositories(id);
3551
3552
3553 --
3554 -- Name: sessions_impersonated_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3555 --
3556
3557 ALTER TABLE ONLY sessions
3558 ADD CONSTRAINT sessions_impersonated_user_id FOREIGN KEY (impersonated_user_id) REFERENCES users(id);
3559
3560
3561 --
3562 -- Name: sessions_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3563 --
3564
3565 ALTER TABLE ONLY sessions
3566 ADD CONSTRAINT sessions_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3567
3568
3569 --
3570 -- Name: sources_commits_source_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3571 --
3572
3573 ALTER TABLE ONLY sources_commits
3574 ADD CONSTRAINT sources_commits_source_id FOREIGN KEY (source_id) REFERENCES sources(id);
3575
3576
3577 --
3578 -- Name: sources_distro_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3579 --
3580
3581 ALTER TABLE ONLY sources
3582 ADD CONSTRAINT sources_distro_id FOREIGN KEY (distro_id) REFERENCES distributions(id);
3583
3584
3585 --
3586 -- Name: uploads_builder_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3587 --
3588
3589 ALTER TABLE ONLY uploads
3590 ADD CONSTRAINT uploads_builder_id FOREIGN KEY (builder_id) REFERENCES builders(id);
3591
3592
3593 --
3594 -- Name: uploads_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3595 --
3596
3597 ALTER TABLE ONLY uploads
3598 ADD CONSTRAINT uploads_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3599
3600
3601 --
3602 -- Name: users_emails_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3603 --
3604
3605 ALTER TABLE ONLY users_emails
3606 ADD CONSTRAINT users_emails_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3607
3608
3609 --
3610 -- Name: users_permissions_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pakfire
3611 --
3612
3613 ALTER TABLE ONLY users_permissions
3614 ADD CONSTRAINT users_permissions_user_id FOREIGN KEY (user_id) REFERENCES users(id);
3615
3616
3617 --
3618 -- PostgreSQL database dump complete
3619 --
3620