12032: Add permission_refresh_lock
[arvados.git] / services / api / db / structure.sql
1 -- Copyright (C) The Arvados Authors. All rights reserved.
2 --
3 -- SPDX-License-Identifier: AGPL-3.0
4
5 --
6 -- PostgreSQL database dump
7 --
8
9 -- Dumped from database version 9.6.4
10 -- Dumped by pg_dump version 9.6.4
11
12 SET statement_timeout = 0;
13 SET idle_in_transaction_session_timeout = 0;
14 SET client_encoding = 'UTF8';
15 SET standard_conforming_strings = on;
16 SET check_function_bodies = false;
17 SET client_min_messages = warning;
18 SET row_security = off;
19
20 --
21 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
22 --
23
24 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
25
26
27 --
28 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
29 --
30
31 -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
32
33
34 SET search_path = public, pg_catalog;
35
36 SET default_tablespace = '';
37
38 SET default_with_oids = false;
39
40 --
41 -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: -
42 --
43
44 CREATE TABLE api_client_authorizations (
45     id integer NOT NULL,
46     api_token character varying(255) NOT NULL,
47     api_client_id integer NOT NULL,
48     user_id integer NOT NULL,
49     created_by_ip_address character varying(255),
50     last_used_by_ip_address character varying(255),
51     last_used_at timestamp without time zone,
52     expires_at timestamp without time zone,
53     created_at timestamp without time zone NOT NULL,
54     updated_at timestamp without time zone NOT NULL,
55     default_owner_uuid character varying(255),
56     scopes text DEFAULT '["all"]'::text,
57     uuid character varying(255) NOT NULL
58 );
59
60
61 --
62 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
63 --
64
65 CREATE SEQUENCE api_client_authorizations_id_seq
66     START WITH 1
67     INCREMENT BY 1
68     NO MINVALUE
69     NO MAXVALUE
70     CACHE 1;
71
72
73 --
74 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
75 --
76
77 ALTER SEQUENCE api_client_authorizations_id_seq OWNED BY api_client_authorizations.id;
78
79
80 --
81 -- Name: api_clients; Type: TABLE; Schema: public; Owner: -
82 --
83
84 CREATE TABLE api_clients (
85     id integer NOT NULL,
86     uuid character varying(255),
87     owner_uuid character varying(255),
88     modified_by_client_uuid character varying(255),
89     modified_by_user_uuid character varying(255),
90     modified_at timestamp without time zone,
91     name character varying(255),
92     url_prefix character varying(255),
93     created_at timestamp without time zone NOT NULL,
94     updated_at timestamp without time zone NOT NULL,
95     is_trusted boolean DEFAULT false
96 );
97
98
99 --
100 -- Name: api_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: -
101 --
102
103 CREATE SEQUENCE api_clients_id_seq
104     START WITH 1
105     INCREMENT BY 1
106     NO MINVALUE
107     NO MAXVALUE
108     CACHE 1;
109
110
111 --
112 -- Name: api_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
113 --
114
115 ALTER SEQUENCE api_clients_id_seq OWNED BY api_clients.id;
116
117
118 --
119 -- Name: authorized_keys; Type: TABLE; Schema: public; Owner: -
120 --
121
122 CREATE TABLE authorized_keys (
123     id integer NOT NULL,
124     uuid character varying(255) NOT NULL,
125     owner_uuid character varying(255) NOT NULL,
126     modified_by_client_uuid character varying(255),
127     modified_by_user_uuid character varying(255),
128     modified_at timestamp without time zone,
129     name character varying(255),
130     key_type character varying(255),
131     authorized_user_uuid character varying(255),
132     public_key text,
133     expires_at timestamp without time zone,
134     created_at timestamp without time zone NOT NULL,
135     updated_at timestamp without time zone NOT NULL
136 );
137
138
139 --
140 -- Name: authorized_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
141 --
142
143 CREATE SEQUENCE authorized_keys_id_seq
144     START WITH 1
145     INCREMENT BY 1
146     NO MINVALUE
147     NO MAXVALUE
148     CACHE 1;
149
150
151 --
152 -- Name: authorized_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
153 --
154
155 ALTER SEQUENCE authorized_keys_id_seq OWNED BY authorized_keys.id;
156
157
158 --
159 -- Name: collections; Type: TABLE; Schema: public; Owner: -
160 --
161
162 CREATE TABLE collections (
163     id integer NOT NULL,
164     owner_uuid character varying(255),
165     created_at timestamp without time zone NOT NULL,
166     modified_by_client_uuid character varying(255),
167     modified_by_user_uuid character varying(255),
168     modified_at timestamp without time zone,
169     portable_data_hash character varying(255),
170     replication_desired integer,
171     replication_confirmed_at timestamp without time zone,
172     replication_confirmed integer,
173     updated_at timestamp without time zone NOT NULL,
174     uuid character varying(255),
175     manifest_text text,
176     name character varying(255),
177     description character varying(524288),
178     properties text,
179     delete_at timestamp without time zone,
180     file_names character varying(8192),
181     trash_at timestamp without time zone,
182     is_trashed boolean DEFAULT false NOT NULL
183 );
184
185
186 --
187 -- Name: collections_id_seq; Type: SEQUENCE; Schema: public; Owner: -
188 --
189
190 CREATE SEQUENCE collections_id_seq
191     START WITH 1
192     INCREMENT BY 1
193     NO MINVALUE
194     NO MAXVALUE
195     CACHE 1;
196
197
198 --
199 -- Name: collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
200 --
201
202 ALTER SEQUENCE collections_id_seq OWNED BY collections.id;
203
204
205 --
206 -- Name: commit_ancestors; Type: TABLE; Schema: public; Owner: -
207 --
208
209 CREATE TABLE commit_ancestors (
210     id integer NOT NULL,
211     repository_name character varying(255),
212     descendant character varying(255) NOT NULL,
213     ancestor character varying(255) NOT NULL,
214     "is" boolean DEFAULT false NOT NULL,
215     created_at timestamp without time zone NOT NULL,
216     updated_at timestamp without time zone NOT NULL
217 );
218
219
220 --
221 -- Name: commit_ancestors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
222 --
223
224 CREATE SEQUENCE commit_ancestors_id_seq
225     START WITH 1
226     INCREMENT BY 1
227     NO MINVALUE
228     NO MAXVALUE
229     CACHE 1;
230
231
232 --
233 -- Name: commit_ancestors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
234 --
235
236 ALTER SEQUENCE commit_ancestors_id_seq OWNED BY commit_ancestors.id;
237
238
239 --
240 -- Name: commits; Type: TABLE; Schema: public; Owner: -
241 --
242
243 CREATE TABLE commits (
244     id integer NOT NULL,
245     repository_name character varying(255),
246     sha1 character varying(255),
247     message character varying(255),
248     created_at timestamp without time zone NOT NULL,
249     updated_at timestamp without time zone NOT NULL
250 );
251
252
253 --
254 -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
255 --
256
257 CREATE SEQUENCE commits_id_seq
258     START WITH 1
259     INCREMENT BY 1
260     NO MINVALUE
261     NO MAXVALUE
262     CACHE 1;
263
264
265 --
266 -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
267 --
268
269 ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
270
271
272 --
273 -- Name: container_requests; Type: TABLE; Schema: public; Owner: -
274 --
275
276 CREATE TABLE container_requests (
277     id integer NOT NULL,
278     uuid character varying(255),
279     owner_uuid character varying(255),
280     created_at timestamp without time zone NOT NULL,
281     modified_at timestamp without time zone,
282     modified_by_client_uuid character varying(255),
283     modified_by_user_uuid character varying(255),
284     name character varying(255),
285     description text,
286     properties text,
287     state character varying(255),
288     requesting_container_uuid character varying(255),
289     container_uuid character varying(255),
290     container_count_max integer,
291     mounts text,
292     runtime_constraints text,
293     container_image character varying(255),
294     environment text,
295     cwd character varying(255),
296     command text,
297     output_path character varying(255),
298     priority integer,
299     expires_at timestamp without time zone,
300     filters text,
301     updated_at timestamp without time zone NOT NULL,
302     container_count integer DEFAULT 0,
303     use_existing boolean DEFAULT true,
304     scheduling_parameters text,
305     output_uuid character varying(255),
306     log_uuid character varying(255),
307     output_name character varying(255) DEFAULT NULL::character varying,
308     output_ttl integer DEFAULT 0 NOT NULL
309 );
310
311
312 --
313 -- Name: container_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
314 --
315
316 CREATE SEQUENCE container_requests_id_seq
317     START WITH 1
318     INCREMENT BY 1
319     NO MINVALUE
320     NO MAXVALUE
321     CACHE 1;
322
323
324 --
325 -- Name: container_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
326 --
327
328 ALTER SEQUENCE container_requests_id_seq OWNED BY container_requests.id;
329
330
331 --
332 -- Name: containers; Type: TABLE; Schema: public; Owner: -
333 --
334
335 CREATE TABLE containers (
336     id integer NOT NULL,
337     uuid character varying(255),
338     owner_uuid character varying(255),
339     created_at timestamp without time zone NOT NULL,
340     modified_at timestamp without time zone,
341     modified_by_client_uuid character varying(255),
342     modified_by_user_uuid character varying(255),
343     state character varying(255),
344     started_at timestamp without time zone,
345     finished_at timestamp without time zone,
346     log character varying(255),
347     environment text,
348     cwd character varying(255),
349     command text,
350     output_path character varying(255),
351     mounts text,
352     runtime_constraints text,
353     output character varying(255),
354     container_image character varying(255),
355     progress double precision,
356     priority integer,
357     updated_at timestamp without time zone NOT NULL,
358     exit_code integer,
359     auth_uuid character varying(255),
360     locked_by_uuid character varying(255),
361     scheduling_parameters text
362 );
363
364
365 --
366 -- Name: containers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
367 --
368
369 CREATE SEQUENCE containers_id_seq
370     START WITH 1
371     INCREMENT BY 1
372     NO MINVALUE
373     NO MAXVALUE
374     CACHE 1;
375
376
377 --
378 -- Name: containers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
379 --
380
381 ALTER SEQUENCE containers_id_seq OWNED BY containers.id;
382
383
384 --
385 -- Name: groups; Type: TABLE; Schema: public; Owner: -
386 --
387
388 CREATE TABLE groups (
389     id integer NOT NULL,
390     uuid character varying(255),
391     owner_uuid character varying(255),
392     created_at timestamp without time zone NOT NULL,
393     modified_by_client_uuid character varying(255),
394     modified_by_user_uuid character varying(255),
395     modified_at timestamp without time zone,
396     name character varying(255) NOT NULL,
397     description character varying(524288),
398     updated_at timestamp without time zone NOT NULL,
399     group_class character varying(255),
400     trash_at timestamp without time zone,
401     is_trashed boolean DEFAULT false NOT NULL,
402     delete_at timestamp without time zone
403 );
404
405
406 --
407 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
408 --
409
410 CREATE SEQUENCE groups_id_seq
411     START WITH 1
412     INCREMENT BY 1
413     NO MINVALUE
414     NO MAXVALUE
415     CACHE 1;
416
417
418 --
419 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
420 --
421
422 ALTER SEQUENCE groups_id_seq OWNED BY groups.id;
423
424
425 --
426 -- Name: humans; Type: TABLE; Schema: public; Owner: -
427 --
428
429 CREATE TABLE humans (
430     id integer NOT NULL,
431     uuid character varying(255) NOT NULL,
432     owner_uuid character varying(255) NOT NULL,
433     modified_by_client_uuid character varying(255),
434     modified_by_user_uuid character varying(255),
435     modified_at timestamp without time zone,
436     properties text,
437     created_at timestamp without time zone NOT NULL,
438     updated_at timestamp without time zone NOT NULL
439 );
440
441
442 --
443 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
444 --
445
446 CREATE SEQUENCE humans_id_seq
447     START WITH 1
448     INCREMENT BY 1
449     NO MINVALUE
450     NO MAXVALUE
451     CACHE 1;
452
453
454 --
455 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
456 --
457
458 ALTER SEQUENCE humans_id_seq OWNED BY humans.id;
459
460
461 --
462 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -
463 --
464
465 CREATE TABLE job_tasks (
466     id integer NOT NULL,
467     uuid character varying(255),
468     owner_uuid character varying(255),
469     modified_by_client_uuid character varying(255),
470     modified_by_user_uuid character varying(255),
471     modified_at timestamp without time zone,
472     job_uuid character varying(255),
473     sequence integer,
474     parameters text,
475     output text,
476     progress double precision,
477     success boolean,
478     created_at timestamp without time zone NOT NULL,
479     updated_at timestamp without time zone NOT NULL,
480     created_by_job_task_uuid character varying(255),
481     qsequence bigint,
482     started_at timestamp without time zone,
483     finished_at timestamp without time zone
484 );
485
486
487 --
488 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
489 --
490
491 CREATE SEQUENCE job_tasks_id_seq
492     START WITH 1
493     INCREMENT BY 1
494     NO MINVALUE
495     NO MAXVALUE
496     CACHE 1;
497
498
499 --
500 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
501 --
502
503 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
504
505
506 --
507 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
508 --
509
510 CREATE SEQUENCE job_tasks_qsequence_seq
511     START WITH 1
512     INCREMENT BY 1
513     NO MINVALUE
514     NO MAXVALUE
515     CACHE 1;
516
517
518 --
519 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
520 --
521
522 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
523
524
525 --
526 -- Name: jobs; Type: TABLE; Schema: public; Owner: -
527 --
528
529 CREATE TABLE jobs (
530     id integer NOT NULL,
531     uuid character varying(255),
532     owner_uuid character varying(255),
533     modified_by_client_uuid character varying(255),
534     modified_by_user_uuid character varying(255),
535     modified_at timestamp without time zone,
536     submit_id character varying(255),
537     script character varying(255),
538     script_version character varying(255),
539     script_parameters text,
540     cancelled_by_client_uuid character varying(255),
541     cancelled_by_user_uuid character varying(255),
542     cancelled_at timestamp without time zone,
543     started_at timestamp without time zone,
544     finished_at timestamp without time zone,
545     running boolean,
546     success boolean,
547     output character varying(255),
548     created_at timestamp without time zone NOT NULL,
549     updated_at timestamp without time zone NOT NULL,
550     is_locked_by_uuid character varying(255),
551     log character varying(255),
552     tasks_summary text,
553     runtime_constraints text,
554     nondeterministic boolean,
555     repository character varying(255),
556     supplied_script_version character varying(255),
557     docker_image_locator character varying(255),
558     priority integer DEFAULT 0 NOT NULL,
559     description character varying(524288),
560     state character varying(255),
561     arvados_sdk_version character varying(255),
562     components text,
563     script_parameters_digest character varying(255)
564 );
565
566
567 --
568 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
569 --
570
571 CREATE SEQUENCE jobs_id_seq
572     START WITH 1
573     INCREMENT BY 1
574     NO MINVALUE
575     NO MAXVALUE
576     CACHE 1;
577
578
579 --
580 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
581 --
582
583 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
584
585
586 --
587 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -
588 --
589
590 CREATE TABLE keep_disks (
591     id integer NOT NULL,
592     uuid character varying(255) NOT NULL,
593     owner_uuid character varying(255) NOT NULL,
594     modified_by_client_uuid character varying(255),
595     modified_by_user_uuid character varying(255),
596     modified_at timestamp without time zone,
597     ping_secret character varying(255) NOT NULL,
598     node_uuid character varying(255),
599     filesystem_uuid character varying(255),
600     bytes_total integer,
601     bytes_free integer,
602     is_readable boolean DEFAULT true NOT NULL,
603     is_writable boolean DEFAULT true NOT NULL,
604     last_read_at timestamp without time zone,
605     last_write_at timestamp without time zone,
606     last_ping_at timestamp without time zone,
607     created_at timestamp without time zone NOT NULL,
608     updated_at timestamp without time zone NOT NULL,
609     keep_service_uuid character varying(255)
610 );
611
612
613 --
614 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
615 --
616
617 CREATE SEQUENCE keep_disks_id_seq
618     START WITH 1
619     INCREMENT BY 1
620     NO MINVALUE
621     NO MAXVALUE
622     CACHE 1;
623
624
625 --
626 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
627 --
628
629 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
630
631
632 --
633 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -
634 --
635
636 CREATE TABLE keep_services (
637     id integer NOT NULL,
638     uuid character varying(255) NOT NULL,
639     owner_uuid character varying(255) NOT NULL,
640     modified_by_client_uuid character varying(255),
641     modified_by_user_uuid character varying(255),
642     modified_at timestamp without time zone,
643     service_host character varying(255),
644     service_port integer,
645     service_ssl_flag boolean,
646     service_type character varying(255),
647     created_at timestamp without time zone NOT NULL,
648     updated_at timestamp without time zone NOT NULL,
649     read_only boolean DEFAULT false NOT NULL
650 );
651
652
653 --
654 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
655 --
656
657 CREATE SEQUENCE keep_services_id_seq
658     START WITH 1
659     INCREMENT BY 1
660     NO MINVALUE
661     NO MAXVALUE
662     CACHE 1;
663
664
665 --
666 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
667 --
668
669 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
670
671
672 --
673 -- Name: links; Type: TABLE; Schema: public; Owner: -
674 --
675
676 CREATE TABLE links (
677     id integer NOT NULL,
678     uuid character varying(255),
679     owner_uuid character varying(255),
680     created_at timestamp without time zone NOT NULL,
681     modified_by_client_uuid character varying(255),
682     modified_by_user_uuid character varying(255),
683     modified_at timestamp without time zone,
684     tail_uuid character varying(255),
685     link_class character varying(255),
686     name character varying(255),
687     head_uuid character varying(255),
688     properties text,
689     updated_at timestamp without time zone NOT NULL
690 );
691
692
693 --
694 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
695 --
696
697 CREATE SEQUENCE links_id_seq
698     START WITH 1
699     INCREMENT BY 1
700     NO MINVALUE
701     NO MAXVALUE
702     CACHE 1;
703
704
705 --
706 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
707 --
708
709 ALTER SEQUENCE links_id_seq OWNED BY links.id;
710
711
712 --
713 -- Name: logs; Type: TABLE; Schema: public; Owner: -
714 --
715
716 CREATE TABLE logs (
717     id integer NOT NULL,
718     uuid character varying(255),
719     owner_uuid character varying(255),
720     modified_by_client_uuid character varying(255),
721     modified_by_user_uuid character varying(255),
722     object_uuid character varying(255),
723     event_at timestamp without time zone,
724     event_type character varying(255),
725     summary text,
726     properties text,
727     created_at timestamp without time zone NOT NULL,
728     updated_at timestamp without time zone NOT NULL,
729     modified_at timestamp without time zone,
730     object_owner_uuid character varying(255)
731 );
732
733
734 --
735 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
736 --
737
738 CREATE SEQUENCE logs_id_seq
739     START WITH 1
740     INCREMENT BY 1
741     NO MINVALUE
742     NO MAXVALUE
743     CACHE 1;
744
745
746 --
747 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
748 --
749
750 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
751
752
753 --
754 -- Name: users; Type: TABLE; Schema: public; Owner: -
755 --
756
757 CREATE TABLE users (
758     id integer NOT NULL,
759     uuid character varying(255),
760     owner_uuid character varying(255) NOT NULL,
761     created_at timestamp without time zone NOT NULL,
762     modified_by_client_uuid character varying(255),
763     modified_by_user_uuid character varying(255),
764     modified_at timestamp without time zone,
765     email character varying(255),
766     first_name character varying(255),
767     last_name character varying(255),
768     identity_url character varying(255),
769     is_admin boolean,
770     prefs text,
771     updated_at timestamp without time zone NOT NULL,
772     default_owner_uuid character varying(255),
773     is_active boolean DEFAULT false,
774     username character varying(255)
775 );
776
777
778 --
779 -- Name: materialized_permission_view; Type: MATERIALIZED VIEW; Schema: public; Owner: -
780 --
781
782 CREATE MATERIALIZED VIEW materialized_permission_view AS
783  WITH RECURSIVE perm_value(name, val) AS (
784          VALUES ('can_read'::text,(1)::smallint), ('can_login'::text,1), ('can_write'::text,2), ('can_manage'::text,3)
785         ), perm_edges(tail_uuid, head_uuid, val, follow, trashed) AS (
786          SELECT links.tail_uuid,
787             links.head_uuid,
788             pv.val,
789             ((pv.val = 3) OR (groups.uuid IS NOT NULL)) AS follow,
790             (0)::smallint AS trashed
791            FROM ((links
792              LEFT JOIN perm_value pv ON ((pv.name = (links.name)::text)))
793              LEFT JOIN groups ON (((pv.val < 3) AND ((groups.uuid)::text = (links.head_uuid)::text))))
794           WHERE ((links.link_class)::text = 'permission'::text)
795         UNION ALL
796          SELECT groups.owner_uuid,
797             groups.uuid,
798             3,
799             true AS bool,
800                 CASE
801                     WHEN ((groups.trash_at IS NOT NULL) AND (groups.trash_at < clock_timestamp())) THEN 1
802                     ELSE 0
803                 END AS "case"
804            FROM groups
805         ), perm(val, follow, user_uuid, target_uuid, trashed) AS (
806          SELECT (3)::smallint AS val,
807             true AS follow,
808             (users.uuid)::character varying(32) AS user_uuid,
809             (users.uuid)::character varying(32) AS target_uuid,
810             (0)::smallint AS trashed
811            FROM users
812         UNION
813          SELECT (LEAST((perm_1.val)::integer, edges.val))::smallint AS val,
814             edges.follow,
815             perm_1.user_uuid,
816             (edges.head_uuid)::character varying(32) AS target_uuid,
817             (GREATEST((perm_1.trashed)::integer, edges.trashed))::smallint AS trashed
818            FROM (perm perm_1
819              JOIN perm_edges edges ON ((perm_1.follow AND ((edges.tail_uuid)::text = (perm_1.target_uuid)::text))))
820         )
821  SELECT perm.user_uuid,
822     perm.target_uuid,
823     max(perm.val) AS perm_level,
824         CASE perm.follow
825             WHEN true THEN perm.target_uuid
826             ELSE NULL::character varying
827         END AS target_owner_uuid,
828     max(perm.trashed) AS trashed
829    FROM perm
830   GROUP BY perm.user_uuid, perm.target_uuid,
831         CASE perm.follow
832             WHEN true THEN perm.target_uuid
833             ELSE NULL::character varying
834         END
835   WITH NO DATA;
836
837
838 --
839 -- Name: nodes; Type: TABLE; Schema: public; Owner: -
840 --
841
842 CREATE TABLE nodes (
843     id integer NOT NULL,
844     uuid character varying(255),
845     owner_uuid character varying(255),
846     created_at timestamp without time zone NOT NULL,
847     modified_by_client_uuid character varying(255),
848     modified_by_user_uuid character varying(255),
849     modified_at timestamp without time zone,
850     slot_number integer,
851     hostname character varying(255),
852     domain character varying(255),
853     ip_address character varying(255),
854     first_ping_at timestamp without time zone,
855     last_ping_at timestamp without time zone,
856     info text,
857     updated_at timestamp without time zone NOT NULL,
858     properties text,
859     job_uuid character varying(255)
860 );
861
862
863 --
864 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
865 --
866
867 CREATE SEQUENCE nodes_id_seq
868     START WITH 1
869     INCREMENT BY 1
870     NO MINVALUE
871     NO MAXVALUE
872     CACHE 1;
873
874
875 --
876 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
877 --
878
879 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
880
881
882 --
883 -- Name: permission_refresh_lock; Type: TABLE; Schema: public; Owner: -
884 --
885
886 CREATE TABLE permission_refresh_lock (
887     id integer NOT NULL
888 );
889
890
891 --
892 -- Name: permission_refresh_lock_id_seq; Type: SEQUENCE; Schema: public; Owner: -
893 --
894
895 CREATE SEQUENCE permission_refresh_lock_id_seq
896     START WITH 1
897     INCREMENT BY 1
898     NO MINVALUE
899     NO MAXVALUE
900     CACHE 1;
901
902
903 --
904 -- Name: permission_refresh_lock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
905 --
906
907 ALTER SEQUENCE permission_refresh_lock_id_seq OWNED BY permission_refresh_lock.id;
908
909
910 --
911 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -
912 --
913
914 CREATE TABLE pipeline_instances (
915     id integer NOT NULL,
916     uuid character varying(255),
917     owner_uuid character varying(255),
918     created_at timestamp without time zone NOT NULL,
919     modified_by_client_uuid character varying(255),
920     modified_by_user_uuid character varying(255),
921     modified_at timestamp without time zone,
922     pipeline_template_uuid character varying(255),
923     name character varying(255),
924     components text,
925     updated_at timestamp without time zone NOT NULL,
926     properties text,
927     state character varying(255),
928     components_summary text,
929     started_at timestamp without time zone,
930     finished_at timestamp without time zone,
931     description character varying(524288)
932 );
933
934
935 --
936 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
937 --
938
939 CREATE SEQUENCE pipeline_instances_id_seq
940     START WITH 1
941     INCREMENT BY 1
942     NO MINVALUE
943     NO MAXVALUE
944     CACHE 1;
945
946
947 --
948 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
949 --
950
951 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
952
953
954 --
955 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -
956 --
957
958 CREATE TABLE pipeline_templates (
959     id integer NOT NULL,
960     uuid character varying(255),
961     owner_uuid character varying(255),
962     created_at timestamp without time zone NOT NULL,
963     modified_by_client_uuid character varying(255),
964     modified_by_user_uuid character varying(255),
965     modified_at timestamp without time zone,
966     name character varying(255),
967     components text,
968     updated_at timestamp without time zone NOT NULL,
969     description character varying(524288)
970 );
971
972
973 --
974 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
975 --
976
977 CREATE SEQUENCE pipeline_templates_id_seq
978     START WITH 1
979     INCREMENT BY 1
980     NO MINVALUE
981     NO MAXVALUE
982     CACHE 1;
983
984
985 --
986 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
987 --
988
989 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
990
991
992 --
993 -- Name: repositories; Type: TABLE; Schema: public; Owner: -
994 --
995
996 CREATE TABLE repositories (
997     id integer NOT NULL,
998     uuid character varying(255) NOT NULL,
999     owner_uuid character varying(255) NOT NULL,
1000     modified_by_client_uuid character varying(255),
1001     modified_by_user_uuid character varying(255),
1002     modified_at timestamp without time zone,
1003     name character varying(255),
1004     created_at timestamp without time zone NOT NULL,
1005     updated_at timestamp without time zone NOT NULL
1006 );
1007
1008
1009 --
1010 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1011 --
1012
1013 CREATE SEQUENCE repositories_id_seq
1014     START WITH 1
1015     INCREMENT BY 1
1016     NO MINVALUE
1017     NO MAXVALUE
1018     CACHE 1;
1019
1020
1021 --
1022 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1023 --
1024
1025 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
1026
1027
1028 --
1029 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
1030 --
1031
1032 CREATE TABLE schema_migrations (
1033     version character varying(255) NOT NULL
1034 );
1035
1036
1037 --
1038 -- Name: specimens; Type: TABLE; Schema: public; Owner: -
1039 --
1040
1041 CREATE TABLE specimens (
1042     id integer NOT NULL,
1043     uuid character varying(255),
1044     owner_uuid character varying(255),
1045     created_at timestamp without time zone NOT NULL,
1046     modified_by_client_uuid character varying(255),
1047     modified_by_user_uuid character varying(255),
1048     modified_at timestamp without time zone,
1049     material character varying(255),
1050     updated_at timestamp without time zone NOT NULL,
1051     properties text
1052 );
1053
1054
1055 --
1056 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1057 --
1058
1059 CREATE SEQUENCE specimens_id_seq
1060     START WITH 1
1061     INCREMENT BY 1
1062     NO MINVALUE
1063     NO MAXVALUE
1064     CACHE 1;
1065
1066
1067 --
1068 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1069 --
1070
1071 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
1072
1073
1074 --
1075 -- Name: traits; Type: TABLE; Schema: public; Owner: -
1076 --
1077
1078 CREATE TABLE traits (
1079     id integer NOT NULL,
1080     uuid character varying(255) NOT NULL,
1081     owner_uuid character varying(255) NOT NULL,
1082     modified_by_client_uuid character varying(255),
1083     modified_by_user_uuid character varying(255),
1084     modified_at timestamp without time zone,
1085     name character varying(255),
1086     properties text,
1087     created_at timestamp without time zone NOT NULL,
1088     updated_at timestamp without time zone NOT NULL
1089 );
1090
1091
1092 --
1093 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1094 --
1095
1096 CREATE SEQUENCE traits_id_seq
1097     START WITH 1
1098     INCREMENT BY 1
1099     NO MINVALUE
1100     NO MAXVALUE
1101     CACHE 1;
1102
1103
1104 --
1105 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1106 --
1107
1108 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
1109
1110
1111 --
1112 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1113 --
1114
1115 CREATE SEQUENCE users_id_seq
1116     START WITH 1
1117     INCREMENT BY 1
1118     NO MINVALUE
1119     NO MAXVALUE
1120     CACHE 1;
1121
1122
1123 --
1124 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1125 --
1126
1127 ALTER SEQUENCE users_id_seq OWNED BY users.id;
1128
1129
1130 --
1131 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -
1132 --
1133
1134 CREATE TABLE virtual_machines (
1135     id integer NOT NULL,
1136     uuid character varying(255) NOT NULL,
1137     owner_uuid character varying(255) NOT NULL,
1138     modified_by_client_uuid character varying(255),
1139     modified_by_user_uuid character varying(255),
1140     modified_at timestamp without time zone,
1141     hostname character varying(255),
1142     created_at timestamp without time zone NOT NULL,
1143     updated_at timestamp without time zone NOT NULL
1144 );
1145
1146
1147 --
1148 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1149 --
1150
1151 CREATE SEQUENCE virtual_machines_id_seq
1152     START WITH 1
1153     INCREMENT BY 1
1154     NO MINVALUE
1155     NO MAXVALUE
1156     CACHE 1;
1157
1158
1159 --
1160 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1161 --
1162
1163 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
1164
1165
1166 --
1167 -- Name: workflows; Type: TABLE; Schema: public; Owner: -
1168 --
1169
1170 CREATE TABLE workflows (
1171     id integer NOT NULL,
1172     uuid character varying(255),
1173     owner_uuid character varying(255),
1174     created_at timestamp without time zone NOT NULL,
1175     modified_at timestamp without time zone,
1176     modified_by_client_uuid character varying(255),
1177     modified_by_user_uuid character varying(255),
1178     name character varying(255),
1179     description text,
1180     definition text,
1181     updated_at timestamp without time zone NOT NULL
1182 );
1183
1184
1185 --
1186 -- Name: workflows_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1187 --
1188
1189 CREATE SEQUENCE workflows_id_seq
1190     START WITH 1
1191     INCREMENT BY 1
1192     NO MINVALUE
1193     NO MAXVALUE
1194     CACHE 1;
1195
1196
1197 --
1198 -- Name: workflows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1199 --
1200
1201 ALTER SEQUENCE workflows_id_seq OWNED BY workflows.id;
1202
1203
1204 --
1205 -- Name: api_client_authorizations id; Type: DEFAULT; Schema: public; Owner: -
1206 --
1207
1208 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
1209
1210
1211 --
1212 -- Name: api_clients id; Type: DEFAULT; Schema: public; Owner: -
1213 --
1214
1215 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
1216
1217
1218 --
1219 -- Name: authorized_keys id; Type: DEFAULT; Schema: public; Owner: -
1220 --
1221
1222 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
1223
1224
1225 --
1226 -- Name: collections id; Type: DEFAULT; Schema: public; Owner: -
1227 --
1228
1229 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
1230
1231
1232 --
1233 -- Name: commit_ancestors id; Type: DEFAULT; Schema: public; Owner: -
1234 --
1235
1236 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
1237
1238
1239 --
1240 -- Name: commits id; Type: DEFAULT; Schema: public; Owner: -
1241 --
1242
1243 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
1244
1245
1246 --
1247 -- Name: container_requests id; Type: DEFAULT; Schema: public; Owner: -
1248 --
1249
1250 ALTER TABLE ONLY container_requests ALTER COLUMN id SET DEFAULT nextval('container_requests_id_seq'::regclass);
1251
1252
1253 --
1254 -- Name: containers id; Type: DEFAULT; Schema: public; Owner: -
1255 --
1256
1257 ALTER TABLE ONLY containers ALTER COLUMN id SET DEFAULT nextval('containers_id_seq'::regclass);
1258
1259
1260 --
1261 -- Name: groups id; Type: DEFAULT; Schema: public; Owner: -
1262 --
1263
1264 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
1265
1266
1267 --
1268 -- Name: humans id; Type: DEFAULT; Schema: public; Owner: -
1269 --
1270
1271 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
1272
1273
1274 --
1275 -- Name: job_tasks id; Type: DEFAULT; Schema: public; Owner: -
1276 --
1277
1278 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1279
1280
1281 --
1282 -- Name: jobs id; Type: DEFAULT; Schema: public; Owner: -
1283 --
1284
1285 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1286
1287
1288 --
1289 -- Name: keep_disks id; Type: DEFAULT; Schema: public; Owner: -
1290 --
1291
1292 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1293
1294
1295 --
1296 -- Name: keep_services id; Type: DEFAULT; Schema: public; Owner: -
1297 --
1298
1299 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1300
1301
1302 --
1303 -- Name: links id; Type: DEFAULT; Schema: public; Owner: -
1304 --
1305
1306 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1307
1308
1309 --
1310 -- Name: logs id; Type: DEFAULT; Schema: public; Owner: -
1311 --
1312
1313 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1314
1315
1316 --
1317 -- Name: nodes id; Type: DEFAULT; Schema: public; Owner: -
1318 --
1319
1320 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1321
1322
1323 --
1324 -- Name: permission_refresh_lock id; Type: DEFAULT; Schema: public; Owner: -
1325 --
1326
1327 ALTER TABLE ONLY permission_refresh_lock ALTER COLUMN id SET DEFAULT nextval('permission_refresh_lock_id_seq'::regclass);
1328
1329
1330 --
1331 -- Name: pipeline_instances id; Type: DEFAULT; Schema: public; Owner: -
1332 --
1333
1334 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1335
1336
1337 --
1338 -- Name: pipeline_templates id; Type: DEFAULT; Schema: public; Owner: -
1339 --
1340
1341 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1342
1343
1344 --
1345 -- Name: repositories id; Type: DEFAULT; Schema: public; Owner: -
1346 --
1347
1348 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1349
1350
1351 --
1352 -- Name: specimens id; Type: DEFAULT; Schema: public; Owner: -
1353 --
1354
1355 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1356
1357
1358 --
1359 -- Name: traits id; Type: DEFAULT; Schema: public; Owner: -
1360 --
1361
1362 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1363
1364
1365 --
1366 -- Name: users id; Type: DEFAULT; Schema: public; Owner: -
1367 --
1368
1369 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1370
1371
1372 --
1373 -- Name: virtual_machines id; Type: DEFAULT; Schema: public; Owner: -
1374 --
1375
1376 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1377
1378
1379 --
1380 -- Name: workflows id; Type: DEFAULT; Schema: public; Owner: -
1381 --
1382
1383 ALTER TABLE ONLY workflows ALTER COLUMN id SET DEFAULT nextval('workflows_id_seq'::regclass);
1384
1385
1386 --
1387 -- Name: api_client_authorizations api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1388 --
1389
1390 ALTER TABLE ONLY api_client_authorizations
1391     ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1392
1393
1394 --
1395 -- Name: api_clients api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1396 --
1397
1398 ALTER TABLE ONLY api_clients
1399     ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1400
1401
1402 --
1403 -- Name: authorized_keys authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1404 --
1405
1406 ALTER TABLE ONLY authorized_keys
1407     ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1408
1409
1410 --
1411 -- Name: collections collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1412 --
1413
1414 ALTER TABLE ONLY collections
1415     ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1416
1417
1418 --
1419 -- Name: commit_ancestors commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1420 --
1421
1422 ALTER TABLE ONLY commit_ancestors
1423     ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1424
1425
1426 --
1427 -- Name: commits commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1428 --
1429
1430 ALTER TABLE ONLY commits
1431     ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1432
1433
1434 --
1435 -- Name: container_requests container_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1436 --
1437
1438 ALTER TABLE ONLY container_requests
1439     ADD CONSTRAINT container_requests_pkey PRIMARY KEY (id);
1440
1441
1442 --
1443 -- Name: containers containers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1444 --
1445
1446 ALTER TABLE ONLY containers
1447     ADD CONSTRAINT containers_pkey PRIMARY KEY (id);
1448
1449
1450 --
1451 -- Name: groups groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1452 --
1453
1454 ALTER TABLE ONLY groups
1455     ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1456
1457
1458 --
1459 -- Name: humans humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1460 --
1461
1462 ALTER TABLE ONLY humans
1463     ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1464
1465
1466 --
1467 -- Name: job_tasks job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1468 --
1469
1470 ALTER TABLE ONLY job_tasks
1471     ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1472
1473
1474 --
1475 -- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1476 --
1477
1478 ALTER TABLE ONLY jobs
1479     ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1480
1481
1482 --
1483 -- Name: keep_disks keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1484 --
1485
1486 ALTER TABLE ONLY keep_disks
1487     ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1488
1489
1490 --
1491 -- Name: keep_services keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1492 --
1493
1494 ALTER TABLE ONLY keep_services
1495     ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1496
1497
1498 --
1499 -- Name: links links_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1500 --
1501
1502 ALTER TABLE ONLY links
1503     ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1504
1505
1506 --
1507 -- Name: logs logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1508 --
1509
1510 ALTER TABLE ONLY logs
1511     ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1512
1513
1514 --
1515 -- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1516 --
1517
1518 ALTER TABLE ONLY nodes
1519     ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1520
1521
1522 --
1523 -- Name: permission_refresh_lock permission_refresh_lock_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1524 --
1525
1526 ALTER TABLE ONLY permission_refresh_lock
1527     ADD CONSTRAINT permission_refresh_lock_pkey PRIMARY KEY (id);
1528
1529
1530 --
1531 -- Name: pipeline_instances pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1532 --
1533
1534 ALTER TABLE ONLY pipeline_instances
1535     ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1536
1537
1538 --
1539 -- Name: pipeline_templates pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1540 --
1541
1542 ALTER TABLE ONLY pipeline_templates
1543     ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1544
1545
1546 --
1547 -- Name: repositories repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1548 --
1549
1550 ALTER TABLE ONLY repositories
1551     ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1552
1553
1554 --
1555 -- Name: specimens specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1556 --
1557
1558 ALTER TABLE ONLY specimens
1559     ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1560
1561
1562 --
1563 -- Name: traits traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1564 --
1565
1566 ALTER TABLE ONLY traits
1567     ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1568
1569
1570 --
1571 -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1572 --
1573
1574 ALTER TABLE ONLY users
1575     ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1576
1577
1578 --
1579 -- Name: virtual_machines virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1580 --
1581
1582 ALTER TABLE ONLY virtual_machines
1583     ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1584
1585
1586 --
1587 -- Name: workflows workflows_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1588 --
1589
1590 ALTER TABLE ONLY workflows
1591     ADD CONSTRAINT workflows_pkey PRIMARY KEY (id);
1592
1593
1594 --
1595 -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -
1596 --
1597
1598 CREATE INDEX api_client_authorizations_search_index ON api_client_authorizations USING btree (api_token, created_by_ip_address, last_used_by_ip_address, default_owner_uuid, uuid);
1599
1600
1601 --
1602 -- Name: api_clients_search_index; Type: INDEX; Schema: public; Owner: -
1603 --
1604
1605 CREATE INDEX api_clients_search_index ON api_clients USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, url_prefix);
1606
1607
1608 --
1609 -- Name: authorized_keys_search_index; Type: INDEX; Schema: public; Owner: -
1610 --
1611
1612 CREATE INDEX authorized_keys_search_index ON authorized_keys USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, key_type, authorized_user_uuid);
1613
1614
1615 --
1616 -- Name: collections_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
1617 --
1618
1619 CREATE INDEX collections_full_text_search_idx ON collections USING gin (to_tsvector('english'::regconfig, (((((((((((((((((COALESCE(owner_uuid, ''::character varying))::text || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(portable_data_hash, ''::character varying))::text) || ' '::text) || (COALESCE(uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || (COALESCE(description, ''::character varying))::text) || ' '::text) || COALESCE(properties, ''::text)) || ' '::text) || (COALESCE(file_names, ''::character varying))::text)));
1620
1621
1622 --
1623 -- Name: collections_search_index; Type: INDEX; Schema: public; Owner: -
1624 --
1625
1626 CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, uuid, name);
1627
1628
1629 --
1630 -- Name: container_requests_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
1631 --
1632
1633 CREATE INDEX container_requests_full_text_search_idx ON container_requests USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((((((((((((((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(description, ''::text)) || ' '::text) || COALESCE(properties, ''::text)) || ' '::text) || (COALESCE(state, ''::character varying))::text) || ' '::text) || (COALESCE(requesting_container_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(container_uuid, ''::character varying))::text) || ' '::text) || COALESCE(runtime_constraints, ''::text)) || ' '::text) || (COALESCE(container_image, ''::character varying))::text) || ' '::text) || COALESCE(environment, ''::text)) || ' '::text) || (COALESCE(cwd, ''::character varying))::text) || ' '::text) || COALESCE(command, ''::text)) || ' '::text) || (COALESCE(output_path, ''::character varying))::text) || ' '::text) || COALESCE(filters, ''::text)) || ' '::text) || COALESCE(scheduling_parameters, ''::text)) || ' '::text) || (COALESCE(output_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(log_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(output_name, ''::character varying))::text)));
1634
1635
1636 --
1637 -- Name: container_requests_search_index; Type: INDEX; Schema: public; Owner: -
1638 --
1639
1640 CREATE INDEX container_requests_search_index ON container_requests USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, state, requesting_container_uuid, container_uuid, container_image, cwd, output_path, output_uuid, log_uuid, output_name);
1641
1642
1643 --
1644 -- Name: containers_search_index; Type: INDEX; Schema: public; Owner: -
1645 --
1646
1647 CREATE INDEX containers_search_index ON containers USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, state, log, cwd, output_path, output, container_image, auth_uuid, locked_by_uuid);
1648
1649
1650 --
1651 -- Name: groups_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
1652 --
1653
1654 CREATE INDEX groups_full_text_search_idx ON groups USING gin (to_tsvector('english'::regconfig, (((((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || (COALESCE(description, ''::character varying))::text) || ' '::text) || (COALESCE(group_class, ''::character varying))::text)));
1655
1656
1657 --
1658 -- Name: groups_search_index; Type: INDEX; Schema: public; Owner: -
1659 --
1660
1661 CREATE INDEX groups_search_index ON groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, group_class);
1662
1663
1664 --
1665 -- Name: humans_search_index; Type: INDEX; Schema: public; Owner: -
1666 --
1667
1668 CREATE INDEX humans_search_index ON humans USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid);
1669
1670
1671 --
1672 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -
1673 --
1674
1675 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1676
1677
1678 --
1679 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -
1680 --
1681
1682 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1683
1684
1685 --
1686 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -
1687 --
1688
1689 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1690
1691
1692 --
1693 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -
1694 --
1695
1696 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1697
1698
1699 --
1700 -- Name: index_api_client_authorizations_on_uuid; Type: INDEX; Schema: public; Owner: -
1701 --
1702
1703 CREATE UNIQUE INDEX index_api_client_authorizations_on_uuid ON api_client_authorizations USING btree (uuid);
1704
1705
1706 --
1707 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -
1708 --
1709
1710 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1711
1712
1713 --
1714 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -
1715 --
1716
1717 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1718
1719
1720 --
1721 -- Name: index_api_clients_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1722 --
1723
1724 CREATE INDEX index_api_clients_on_owner_uuid ON api_clients USING btree (owner_uuid);
1725
1726
1727 --
1728 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -
1729 --
1730
1731 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1732
1733
1734 --
1735 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -
1736 --
1737
1738 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1739
1740
1741 --
1742 -- Name: index_authorized_keys_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1743 --
1744
1745 CREATE INDEX index_authorized_keys_on_owner_uuid ON authorized_keys USING btree (owner_uuid);
1746
1747
1748 --
1749 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -
1750 --
1751
1752 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1753
1754
1755 --
1756 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -
1757 --
1758
1759 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1760
1761
1762 --
1763 -- Name: index_collections_on_delete_at; Type: INDEX; Schema: public; Owner: -
1764 --
1765
1766 CREATE INDEX index_collections_on_delete_at ON collections USING btree (delete_at);
1767
1768
1769 --
1770 -- Name: index_collections_on_is_trashed; Type: INDEX; Schema: public; Owner: -
1771 --
1772
1773 CREATE INDEX index_collections_on_is_trashed ON collections USING btree (is_trashed);
1774
1775
1776 --
1777 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -
1778 --
1779
1780 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1781
1782
1783 --
1784 -- Name: index_collections_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
1785 --
1786
1787 CREATE INDEX index_collections_on_modified_at_uuid ON collections USING btree (modified_at DESC, uuid);
1788
1789
1790 --
1791 -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1792 --
1793
1794 CREATE INDEX index_collections_on_owner_uuid ON collections USING btree (owner_uuid);
1795
1796
1797 --
1798 -- Name: index_collections_on_owner_uuid_and_name; Type: INDEX; Schema: public; Owner: -
1799 --
1800
1801 CREATE UNIQUE INDEX index_collections_on_owner_uuid_and_name ON collections USING btree (owner_uuid, name) WHERE (is_trashed = false);
1802
1803
1804 --
1805 -- Name: index_collections_on_portable_data_hash; Type: INDEX; Schema: public; Owner: -
1806 --
1807
1808 CREATE INDEX index_collections_on_portable_data_hash ON collections USING btree (portable_data_hash);
1809
1810
1811 --
1812 -- Name: index_collections_on_trash_at; Type: INDEX; Schema: public; Owner: -
1813 --
1814
1815 CREATE INDEX index_collections_on_trash_at ON collections USING btree (trash_at);
1816
1817
1818 --
1819 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -
1820 --
1821
1822 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1823
1824
1825 --
1826 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -
1827 --
1828
1829 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1830
1831
1832 --
1833 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -
1834 --
1835
1836 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1837
1838
1839 --
1840 -- Name: index_container_requests_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
1841 --
1842
1843 CREATE INDEX index_container_requests_on_modified_at_uuid ON container_requests USING btree (modified_at DESC, uuid);
1844
1845
1846 --
1847 -- Name: index_container_requests_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1848 --
1849
1850 CREATE INDEX index_container_requests_on_owner_uuid ON container_requests USING btree (owner_uuid);
1851
1852
1853 --
1854 -- Name: index_container_requests_on_requesting_container_uuid; Type: INDEX; Schema: public; Owner: -
1855 --
1856
1857 CREATE INDEX index_container_requests_on_requesting_container_uuid ON container_requests USING btree (requesting_container_uuid);
1858
1859
1860 --
1861 -- Name: index_container_requests_on_uuid; Type: INDEX; Schema: public; Owner: -
1862 --
1863
1864 CREATE UNIQUE INDEX index_container_requests_on_uuid ON container_requests USING btree (uuid);
1865
1866
1867 --
1868 -- Name: index_containers_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1869 --
1870
1871 CREATE INDEX index_containers_on_owner_uuid ON containers USING btree (owner_uuid);
1872
1873
1874 --
1875 -- Name: index_containers_on_uuid; Type: INDEX; Schema: public; Owner: -
1876 --
1877
1878 CREATE UNIQUE INDEX index_containers_on_uuid ON containers USING btree (uuid);
1879
1880
1881 --
1882 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -
1883 --
1884
1885 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1886
1887
1888 --
1889 -- Name: index_groups_on_delete_at; Type: INDEX; Schema: public; Owner: -
1890 --
1891
1892 CREATE INDEX index_groups_on_delete_at ON groups USING btree (delete_at);
1893
1894
1895 --
1896 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -
1897 --
1898
1899 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1900
1901
1902 --
1903 -- Name: index_groups_on_is_trashed; Type: INDEX; Schema: public; Owner: -
1904 --
1905
1906 CREATE INDEX index_groups_on_is_trashed ON groups USING btree (is_trashed);
1907
1908
1909 --
1910 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -
1911 --
1912
1913 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1914
1915
1916 --
1917 -- Name: index_groups_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
1918 --
1919
1920 CREATE INDEX index_groups_on_modified_at_uuid ON groups USING btree (modified_at DESC, uuid);
1921
1922
1923 --
1924 -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1925 --
1926
1927 CREATE INDEX index_groups_on_owner_uuid ON groups USING btree (owner_uuid);
1928
1929
1930 --
1931 -- Name: index_groups_on_owner_uuid_and_name; Type: INDEX; Schema: public; Owner: -
1932 --
1933
1934 CREATE UNIQUE INDEX index_groups_on_owner_uuid_and_name ON groups USING btree (owner_uuid, name) WHERE (is_trashed = false);
1935
1936
1937 --
1938 -- Name: index_groups_on_trash_at; Type: INDEX; Schema: public; Owner: -
1939 --
1940
1941 CREATE INDEX index_groups_on_trash_at ON groups USING btree (trash_at);
1942
1943
1944 --
1945 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -
1946 --
1947
1948 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1949
1950
1951 --
1952 -- Name: index_humans_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1953 --
1954
1955 CREATE INDEX index_humans_on_owner_uuid ON humans USING btree (owner_uuid);
1956
1957
1958 --
1959 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -
1960 --
1961
1962 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1963
1964
1965 --
1966 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -
1967 --
1968
1969 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1970
1971
1972 --
1973 -- Name: index_job_tasks_on_created_by_job_task_uuid; Type: INDEX; Schema: public; Owner: -
1974 --
1975
1976 CREATE INDEX index_job_tasks_on_created_by_job_task_uuid ON job_tasks USING btree (created_by_job_task_uuid);
1977
1978
1979 --
1980 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -
1981 --
1982
1983 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1984
1985
1986 --
1987 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -
1988 --
1989
1990 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1991
1992
1993 --
1994 -- Name: index_job_tasks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1995 --
1996
1997 CREATE INDEX index_job_tasks_on_owner_uuid ON job_tasks USING btree (owner_uuid);
1998
1999
2000 --
2001 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -
2002 --
2003
2004 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
2005
2006
2007 --
2008 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -
2009 --
2010
2011 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
2012
2013
2014 --
2015 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -
2016 --
2017
2018 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
2019
2020
2021 --
2022 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -
2023 --
2024
2025 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
2026
2027
2028 --
2029 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -
2030 --
2031
2032 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
2033
2034
2035 --
2036 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -
2037 --
2038
2039 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
2040
2041
2042 --
2043 -- Name: index_jobs_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2044 --
2045
2046 CREATE INDEX index_jobs_on_modified_at_uuid ON jobs USING btree (modified_at DESC, uuid);
2047
2048
2049 --
2050 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -
2051 --
2052
2053 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
2054
2055
2056 --
2057 -- Name: index_jobs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2058 --
2059
2060 CREATE INDEX index_jobs_on_owner_uuid ON jobs USING btree (owner_uuid);
2061
2062
2063 --
2064 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -
2065 --
2066
2067 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
2068
2069
2070 --
2071 -- Name: index_jobs_on_script_parameters_digest; Type: INDEX; Schema: public; Owner: -
2072 --
2073
2074 CREATE INDEX index_jobs_on_script_parameters_digest ON jobs USING btree (script_parameters_digest);
2075
2076
2077 --
2078 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -
2079 --
2080
2081 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
2082
2083
2084 --
2085 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -
2086 --
2087
2088 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
2089
2090
2091 --
2092 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -
2093 --
2094
2095 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
2096
2097
2098 --
2099 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -
2100 --
2101
2102 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
2103
2104
2105 --
2106 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -
2107 --
2108
2109 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
2110
2111
2112 --
2113 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -
2114 --
2115
2116 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
2117
2118
2119 --
2120 -- Name: index_keep_disks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2121 --
2122
2123 CREATE INDEX index_keep_disks_on_owner_uuid ON keep_disks USING btree (owner_uuid);
2124
2125
2126 --
2127 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -
2128 --
2129
2130 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
2131
2132
2133 --
2134 -- Name: index_keep_services_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2135 --
2136
2137 CREATE INDEX index_keep_services_on_owner_uuid ON keep_services USING btree (owner_uuid);
2138
2139
2140 --
2141 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -
2142 --
2143
2144 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
2145
2146
2147 --
2148 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -
2149 --
2150
2151 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
2152
2153
2154 --
2155 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -
2156 --
2157
2158 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
2159
2160
2161 --
2162 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -
2163 --
2164
2165 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
2166
2167
2168 --
2169 -- Name: index_links_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2170 --
2171
2172 CREATE INDEX index_links_on_modified_at_uuid ON links USING btree (modified_at DESC, uuid);
2173
2174
2175 --
2176 -- Name: index_links_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2177 --
2178
2179 CREATE INDEX index_links_on_owner_uuid ON links USING btree (owner_uuid);
2180
2181
2182 --
2183 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -
2184 --
2185
2186 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
2187
2188
2189 --
2190 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -
2191 --
2192
2193 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
2194
2195
2196 --
2197 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -
2198 --
2199
2200 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
2201
2202
2203 --
2204 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -
2205 --
2206
2207 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
2208
2209
2210 --
2211 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -
2212 --
2213
2214 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
2215
2216
2217 --
2218 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -
2219 --
2220
2221 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
2222
2223
2224 --
2225 -- Name: index_logs_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2226 --
2227
2228 CREATE INDEX index_logs_on_modified_at_uuid ON logs USING btree (modified_at DESC, uuid);
2229
2230
2231 --
2232 -- Name: index_logs_on_object_owner_uuid; Type: INDEX; Schema: public; Owner: -
2233 --
2234
2235 CREATE INDEX index_logs_on_object_owner_uuid ON logs USING btree (object_owner_uuid);
2236
2237
2238 --
2239 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -
2240 --
2241
2242 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
2243
2244
2245 --
2246 -- Name: index_logs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2247 --
2248
2249 CREATE INDEX index_logs_on_owner_uuid ON logs USING btree (owner_uuid);
2250
2251
2252 --
2253 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -
2254 --
2255
2256 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
2257
2258
2259 --
2260 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -
2261 --
2262
2263 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
2264
2265
2266 --
2267 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -
2268 --
2269
2270 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
2271
2272
2273 --
2274 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -
2275 --
2276
2277 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
2278
2279
2280 --
2281 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -
2282 --
2283
2284 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
2285
2286
2287 --
2288 -- Name: index_nodes_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2289 --
2290
2291 CREATE INDEX index_nodes_on_owner_uuid ON nodes USING btree (owner_uuid);
2292
2293
2294 --
2295 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -
2296 --
2297
2298 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
2299
2300
2301 --
2302 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -
2303 --
2304
2305 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
2306
2307
2308 --
2309 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -
2310 --
2311
2312 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
2313
2314
2315 --
2316 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -
2317 --
2318
2319 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
2320
2321
2322 --
2323 -- Name: index_pipeline_instances_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2324 --
2325
2326 CREATE INDEX index_pipeline_instances_on_modified_at_uuid ON pipeline_instances USING btree (modified_at DESC, uuid);
2327
2328
2329 --
2330 -- Name: index_pipeline_instances_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2331 --
2332
2333 CREATE INDEX index_pipeline_instances_on_owner_uuid ON pipeline_instances USING btree (owner_uuid);
2334
2335
2336 --
2337 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -
2338 --
2339
2340 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
2341
2342
2343 --
2344 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -
2345 --
2346
2347 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
2348
2349
2350 --
2351 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -
2352 --
2353
2354 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
2355
2356
2357 --
2358 -- Name: index_pipeline_templates_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2359 --
2360
2361 CREATE INDEX index_pipeline_templates_on_modified_at_uuid ON pipeline_templates USING btree (modified_at DESC, uuid);
2362
2363
2364 --
2365 -- Name: index_pipeline_templates_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2366 --
2367
2368 CREATE INDEX index_pipeline_templates_on_owner_uuid ON pipeline_templates USING btree (owner_uuid);
2369
2370
2371 --
2372 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -
2373 --
2374
2375 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
2376
2377
2378 --
2379 -- Name: index_repositories_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2380 --
2381
2382 CREATE INDEX index_repositories_on_modified_at_uuid ON repositories USING btree (modified_at DESC, uuid);
2383
2384
2385 --
2386 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -
2387 --
2388
2389 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
2390
2391
2392 --
2393 -- Name: index_repositories_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2394 --
2395
2396 CREATE INDEX index_repositories_on_owner_uuid ON repositories USING btree (owner_uuid);
2397
2398
2399 --
2400 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -
2401 --
2402
2403 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
2404
2405
2406 --
2407 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -
2408 --
2409
2410 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
2411
2412
2413 --
2414 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -
2415 --
2416
2417 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
2418
2419
2420 --
2421 -- Name: index_specimens_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2422 --
2423
2424 CREATE INDEX index_specimens_on_owner_uuid ON specimens USING btree (owner_uuid);
2425
2426
2427 --
2428 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -
2429 --
2430
2431 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
2432
2433
2434 --
2435 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -
2436 --
2437
2438 CREATE INDEX index_traits_on_name ON traits USING btree (name);
2439
2440
2441 --
2442 -- Name: index_traits_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2443 --
2444
2445 CREATE INDEX index_traits_on_owner_uuid ON traits USING btree (owner_uuid);
2446
2447
2448 --
2449 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -
2450 --
2451
2452 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
2453
2454
2455 --
2456 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -
2457 --
2458
2459 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
2460
2461
2462 --
2463 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -
2464 --
2465
2466 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
2467
2468
2469 --
2470 -- Name: index_users_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2471 --
2472
2473 CREATE INDEX index_users_on_modified_at_uuid ON users USING btree (modified_at DESC, uuid);
2474
2475
2476 --
2477 -- Name: index_users_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2478 --
2479
2480 CREATE INDEX index_users_on_owner_uuid ON users USING btree (owner_uuid);
2481
2482
2483 --
2484 -- Name: index_users_on_username; Type: INDEX; Schema: public; Owner: -
2485 --
2486
2487 CREATE UNIQUE INDEX index_users_on_username ON users USING btree (username);
2488
2489
2490 --
2491 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -
2492 --
2493
2494 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
2495
2496
2497 --
2498 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -
2499 --
2500
2501 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
2502
2503
2504 --
2505 -- Name: index_virtual_machines_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2506 --
2507
2508 CREATE INDEX index_virtual_machines_on_modified_at_uuid ON virtual_machines USING btree (modified_at DESC, uuid);
2509
2510
2511 --
2512 -- Name: index_virtual_machines_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2513 --
2514
2515 CREATE INDEX index_virtual_machines_on_owner_uuid ON virtual_machines USING btree (owner_uuid);
2516
2517
2518 --
2519 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -
2520 --
2521
2522 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
2523
2524
2525 --
2526 -- Name: index_workflows_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2527 --
2528
2529 CREATE INDEX index_workflows_on_modified_at_uuid ON workflows USING btree (modified_at DESC, uuid);
2530
2531
2532 --
2533 -- Name: index_workflows_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2534 --
2535
2536 CREATE INDEX index_workflows_on_owner_uuid ON workflows USING btree (owner_uuid);
2537
2538
2539 --
2540 -- Name: index_workflows_on_uuid; Type: INDEX; Schema: public; Owner: -
2541 --
2542
2543 CREATE UNIQUE INDEX index_workflows_on_uuid ON workflows USING btree (uuid);
2544
2545
2546 --
2547 -- Name: job_tasks_search_index; Type: INDEX; Schema: public; Owner: -
2548 --
2549
2550 CREATE INDEX job_tasks_search_index ON job_tasks USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, job_uuid, created_by_job_task_uuid);
2551
2552
2553 --
2554 -- Name: jobs_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2555 --
2556
2557 CREATE INDEX jobs_full_text_search_idx ON jobs USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((((((((((((((((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(submit_id, ''::character varying))::text) || ' '::text) || (COALESCE(script, ''::character varying))::text) || ' '::text) || (COALESCE(script_version, ''::character varying))::text) || ' '::text) || COALESCE(script_parameters, ''::text)) || ' '::text) || (COALESCE(cancelled_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(cancelled_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(output, ''::character varying))::text) || ' '::text) || (COALESCE(is_locked_by_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(log, ''::character varying))::text) || ' '::text) || COALESCE(tasks_summary, ''::text)) || ' '::text) || COALESCE(runtime_constraints, ''::text)) || ' '::text) || (COALESCE(repository, ''::character varying))::text) || ' '::text) || (COALESCE(supplied_script_version, ''::character varying))::text) || ' '::text) || (COALESCE(docker_image_locator, ''::character varying))::text) || ' '::text) || (COALESCE(description, ''::character varying))::text) || ' '::text) || (COALESCE(state, ''::character varying))::text) || ' '::text) || (COALESCE(arvados_sdk_version, ''::character varying))::text) || ' '::text) || COALESCE(components, ''::text))));
2558
2559
2560 --
2561 -- Name: jobs_search_index; Type: INDEX; Schema: public; Owner: -
2562 --
2563
2564 CREATE INDEX jobs_search_index ON jobs USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, submit_id, script, script_version, cancelled_by_client_uuid, cancelled_by_user_uuid, output, is_locked_by_uuid, log, repository, supplied_script_version, docker_image_locator, state, arvados_sdk_version);
2565
2566
2567 --
2568 -- Name: keep_disks_search_index; Type: INDEX; Schema: public; Owner: -
2569 --
2570
2571 CREATE INDEX keep_disks_search_index ON keep_disks USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, ping_secret, node_uuid, filesystem_uuid, keep_service_uuid);
2572
2573
2574 --
2575 -- Name: keep_services_search_index; Type: INDEX; Schema: public; Owner: -
2576 --
2577
2578 CREATE INDEX keep_services_search_index ON keep_services USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, service_host, service_type);
2579
2580
2581 --
2582 -- Name: links_search_index; Type: INDEX; Schema: public; Owner: -
2583 --
2584
2585 CREATE INDEX links_search_index ON links USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, tail_uuid, link_class, name, head_uuid);
2586
2587
2588 --
2589 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -
2590 --
2591
2592 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
2593
2594
2595 --
2596 -- Name: logs_search_index; Type: INDEX; Schema: public; Owner: -
2597 --
2598
2599 CREATE INDEX logs_search_index ON logs USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, object_uuid, event_type, object_owner_uuid);
2600
2601
2602 --
2603 -- Name: nodes_search_index; Type: INDEX; Schema: public; Owner: -
2604 --
2605
2606 CREATE INDEX nodes_search_index ON nodes USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname, domain, ip_address, job_uuid);
2607
2608
2609 --
2610 -- Name: permission_target_trashed; Type: INDEX; Schema: public; Owner: -
2611 --
2612
2613 CREATE INDEX permission_target_trashed ON materialized_permission_view USING btree (trashed, target_uuid);
2614
2615
2616 --
2617 -- Name: permission_target_user_trashed_level; Type: INDEX; Schema: public; Owner: -
2618 --
2619
2620 CREATE INDEX permission_target_user_trashed_level ON materialized_permission_view USING btree (user_uuid, trashed, perm_level);
2621
2622
2623 --
2624 -- Name: pipeline_instances_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2625 --
2626
2627 CREATE INDEX pipeline_instances_full_text_search_idx ON pipeline_instances USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(pipeline_template_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(components, ''::text)) || ' '::text) || COALESCE(properties, ''::text)) || ' '::text) || (COALESCE(state, ''::character varying))::text) || ' '::text) || COALESCE(components_summary, ''::text)) || ' '::text) || (COALESCE(description, ''::character varying))::text)));
2628
2629
2630 --
2631 -- Name: pipeline_instances_search_index; Type: INDEX; Schema: public; Owner: -
2632 --
2633
2634 CREATE INDEX pipeline_instances_search_index ON pipeline_instances USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, pipeline_template_uuid, name, state);
2635
2636
2637 --
2638 -- Name: pipeline_template_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -
2639 --
2640
2641 CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON pipeline_templates USING btree (owner_uuid, name);
2642
2643
2644 --
2645 -- Name: pipeline_templates_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2646 --
2647
2648 CREATE INDEX pipeline_templates_full_text_search_idx ON pipeline_templates USING gin (to_tsvector('english'::regconfig, (((((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(components, ''::text)) || ' '::text) || (COALESCE(description, ''::character varying))::text)));
2649
2650
2651 --
2652 -- Name: pipeline_templates_search_index; Type: INDEX; Schema: public; Owner: -
2653 --
2654
2655 CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2656
2657
2658 --
2659 -- Name: repositories_search_index; Type: INDEX; Schema: public; Owner: -
2660 --
2661
2662 CREATE INDEX repositories_search_index ON repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2663
2664
2665 --
2666 -- Name: specimens_search_index; Type: INDEX; Schema: public; Owner: -
2667 --
2668
2669 CREATE INDEX specimens_search_index ON specimens USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, material);
2670
2671
2672 --
2673 -- Name: traits_search_index; Type: INDEX; Schema: public; Owner: -
2674 --
2675
2676 CREATE INDEX traits_search_index ON traits USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2677
2678
2679 --
2680 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -
2681 --
2682
2683 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
2684
2685
2686 --
2687 -- Name: users_search_index; Type: INDEX; Schema: public; Owner: -
2688 --
2689
2690 CREATE INDEX users_search_index ON users USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, email, first_name, last_name, identity_url, default_owner_uuid, username);
2691
2692
2693 --
2694 -- Name: virtual_machines_search_index; Type: INDEX; Schema: public; Owner: -
2695 --
2696
2697 CREATE INDEX virtual_machines_search_index ON virtual_machines USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname);
2698
2699
2700 --
2701 -- Name: workflows_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2702 --
2703
2704 CREATE INDEX workflows_full_text_search_idx ON workflows USING gin (to_tsvector('english'::regconfig, (((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(description, ''::text))));
2705
2706
2707 --
2708 -- Name: workflows_search_idx; Type: INDEX; Schema: public; Owner: -
2709 --
2710
2711 CREATE INDEX workflows_search_idx ON workflows USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2712
2713
2714 --
2715 -- PostgreSQL database dump complete
2716 --
2717
2718 SET search_path TO "$user", public;
2719
2720 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
2721
2722 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
2723
2724 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
2725
2726 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
2727
2728 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
2729
2730 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
2731
2732 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
2733
2734 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
2735
2736 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
2737
2738 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
2739
2740 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
2741
2742 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
2743
2744 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
2745
2746 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
2747
2748 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
2749
2750 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
2751
2752 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
2753
2754 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
2755
2756 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
2757
2758 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
2759
2760 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
2761
2762 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
2763
2764 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
2765
2766 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
2767
2768 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
2769
2770 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
2771
2772 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
2773
2774 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
2775
2776 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
2777
2778 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
2779
2780 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
2781
2782 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
2783
2784 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
2785
2786 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
2787
2788 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
2789
2790 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
2791
2792 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
2793
2794 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
2795
2796 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
2797
2798 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
2799
2800 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
2801
2802 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
2803
2804 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
2805
2806 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
2807
2808 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
2809
2810 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
2811
2812 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
2813
2814 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
2815
2816 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
2817
2818 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
2819
2820 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
2821
2822 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
2823
2824 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
2825
2826 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
2827
2828 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
2829
2830 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
2831
2832 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
2833
2834 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
2835
2836 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
2837
2838 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
2839
2840 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
2841
2842 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
2843
2844 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
2845
2846 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
2847
2848 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
2849
2850 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
2851
2852 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
2853
2854 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
2855
2856 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
2857
2858 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
2859
2860 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
2861
2862 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
2863
2864 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
2865
2866 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
2867
2868 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
2869
2870 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
2871
2872 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
2873
2874 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
2875
2876 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
2877
2878 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
2879
2880 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
2881
2882 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
2883
2884 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
2885
2886 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
2887
2888 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
2889
2890 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
2891
2892 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
2893
2894 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
2895
2896 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
2897
2898 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
2899
2900 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
2901
2902 INSERT INTO schema_migrations (version) VALUES ('20140817035914');
2903
2904 INSERT INTO schema_migrations (version) VALUES ('20140818125735');
2905
2906 INSERT INTO schema_migrations (version) VALUES ('20140826180337');
2907
2908 INSERT INTO schema_migrations (version) VALUES ('20140828141043');
2909
2910 INSERT INTO schema_migrations (version) VALUES ('20140909183946');
2911
2912 INSERT INTO schema_migrations (version) VALUES ('20140911221252');
2913
2914 INSERT INTO schema_migrations (version) VALUES ('20140918141529');
2915
2916 INSERT INTO schema_migrations (version) VALUES ('20140918153541');
2917
2918 INSERT INTO schema_migrations (version) VALUES ('20140918153705');
2919
2920 INSERT INTO schema_migrations (version) VALUES ('20140924091559');
2921
2922 INSERT INTO schema_migrations (version) VALUES ('20141111133038');
2923
2924 INSERT INTO schema_migrations (version) VALUES ('20141208164553');
2925
2926 INSERT INTO schema_migrations (version) VALUES ('20141208174553');
2927
2928 INSERT INTO schema_migrations (version) VALUES ('20141208174653');
2929
2930 INSERT INTO schema_migrations (version) VALUES ('20141208185217');
2931
2932 INSERT INTO schema_migrations (version) VALUES ('20150122175935');
2933
2934 INSERT INTO schema_migrations (version) VALUES ('20150123142953');
2935
2936 INSERT INTO schema_migrations (version) VALUES ('20150203180223');
2937
2938 INSERT INTO schema_migrations (version) VALUES ('20150206210804');
2939
2940 INSERT INTO schema_migrations (version) VALUES ('20150206230342');
2941
2942 INSERT INTO schema_migrations (version) VALUES ('20150216193428');
2943
2944 INSERT INTO schema_migrations (version) VALUES ('20150303210106');
2945
2946 INSERT INTO schema_migrations (version) VALUES ('20150312151136');
2947
2948 INSERT INTO schema_migrations (version) VALUES ('20150317132720');
2949
2950 INSERT INTO schema_migrations (version) VALUES ('20150324152204');
2951
2952 INSERT INTO schema_migrations (version) VALUES ('20150423145759');
2953
2954 INSERT INTO schema_migrations (version) VALUES ('20150512193020');
2955
2956 INSERT INTO schema_migrations (version) VALUES ('20150526180251');
2957
2958 INSERT INTO schema_migrations (version) VALUES ('20151202151426');
2959
2960 INSERT INTO schema_migrations (version) VALUES ('20151215134304');
2961
2962 INSERT INTO schema_migrations (version) VALUES ('20151229214707');
2963
2964 INSERT INTO schema_migrations (version) VALUES ('20160208210629');
2965
2966 INSERT INTO schema_migrations (version) VALUES ('20160209155729');
2967
2968 INSERT INTO schema_migrations (version) VALUES ('20160324144017');
2969
2970 INSERT INTO schema_migrations (version) VALUES ('20160506175108');
2971
2972 INSERT INTO schema_migrations (version) VALUES ('20160509143250');
2973
2974 INSERT INTO schema_migrations (version) VALUES ('20160808151559');
2975
2976 INSERT INTO schema_migrations (version) VALUES ('20160819195557');
2977
2978 INSERT INTO schema_migrations (version) VALUES ('20160819195725');
2979
2980 INSERT INTO schema_migrations (version) VALUES ('20160901210110');
2981
2982 INSERT INTO schema_migrations (version) VALUES ('20160909181442');
2983
2984 INSERT INTO schema_migrations (version) VALUES ('20160926194129');
2985
2986 INSERT INTO schema_migrations (version) VALUES ('20161019171346');
2987
2988 INSERT INTO schema_migrations (version) VALUES ('20161111143147');
2989
2990 INSERT INTO schema_migrations (version) VALUES ('20161115171221');
2991
2992 INSERT INTO schema_migrations (version) VALUES ('20161115174218');
2993
2994 INSERT INTO schema_migrations (version) VALUES ('20161213172944');
2995
2996 INSERT INTO schema_migrations (version) VALUES ('20161222153434');
2997
2998 INSERT INTO schema_migrations (version) VALUES ('20161223090712');
2999
3000 INSERT INTO schema_migrations (version) VALUES ('20170102153111');
3001
3002 INSERT INTO schema_migrations (version) VALUES ('20170105160301');
3003
3004 INSERT INTO schema_migrations (version) VALUES ('20170105160302');
3005
3006 INSERT INTO schema_migrations (version) VALUES ('20170216170823');
3007
3008 INSERT INTO schema_migrations (version) VALUES ('20170301225558');
3009
3010 INSERT INTO schema_migrations (version) VALUES ('20170319063406');
3011
3012 INSERT INTO schema_migrations (version) VALUES ('20170328215436');
3013
3014 INSERT INTO schema_migrations (version) VALUES ('20170330012505');
3015
3016 INSERT INTO schema_migrations (version) VALUES ('20170419173031');
3017
3018 INSERT INTO schema_migrations (version) VALUES ('20170419173712');
3019
3020 INSERT INTO schema_migrations (version) VALUES ('20170419175801');
3021
3022 INSERT INTO schema_migrations (version) VALUES ('20170628185847');
3023
3024 INSERT INTO schema_migrations (version) VALUES ('20170824202826');
3025
3026 INSERT INTO schema_migrations (version) VALUES ('20170906224040');
3027