e2c6b66719b97cf959e89b1c4fb0c5aa287e7ec3
[arvados.git] / services / api / db / structure.sql
1 --
2 -- PostgreSQL database dump
3 --
4
5 SET statement_timeout = 0;
6 SET client_encoding = 'UTF8';
7 SET standard_conforming_strings = on;
8 SET check_function_bodies = false;
9 SET client_min_messages = warning;
10
11 --
12 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
13 --
14
15 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
16
17
18 --
19 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
20 --
21
22 COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
23
24
25 SET search_path = public, pg_catalog;
26
27 SET default_tablespace = '';
28
29 SET default_with_oids = false;
30
31 --
32 -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: -; Tablespace: 
33 --
34
35 CREATE TABLE api_client_authorizations (
36     id integer NOT NULL,
37     api_token character varying(255) NOT NULL,
38     api_client_id integer NOT NULL,
39     user_id integer NOT NULL,
40     created_by_ip_address character varying(255),
41     last_used_by_ip_address character varying(255),
42     last_used_at timestamp without time zone,
43     expires_at timestamp without time zone,
44     created_at timestamp without time zone NOT NULL,
45     updated_at timestamp without time zone NOT NULL,
46     default_owner_uuid character varying(255),
47     scopes text DEFAULT '---
48 - all
49 '::text NOT NULL
50 );
51
52
53 --
54 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
55 --
56
57 CREATE SEQUENCE api_client_authorizations_id_seq
58     START WITH 1
59     INCREMENT BY 1
60     NO MINVALUE
61     NO MAXVALUE
62     CACHE 1;
63
64
65 --
66 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
67 --
68
69 ALTER SEQUENCE api_client_authorizations_id_seq OWNED BY api_client_authorizations.id;
70
71
72 --
73 -- Name: api_clients; Type: TABLE; Schema: public; Owner: -; Tablespace: 
74 --
75
76 CREATE TABLE api_clients (
77     id integer NOT NULL,
78     uuid character varying(255),
79     owner_uuid character varying(255),
80     modified_by_client_uuid character varying(255),
81     modified_by_user_uuid character varying(255),
82     modified_at timestamp without time zone,
83     name character varying(255),
84     url_prefix character varying(255),
85     created_at timestamp without time zone NOT NULL,
86     updated_at timestamp without time zone NOT NULL,
87     is_trusted boolean DEFAULT false
88 );
89
90
91 --
92 -- Name: api_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: -
93 --
94
95 CREATE SEQUENCE api_clients_id_seq
96     START WITH 1
97     INCREMENT BY 1
98     NO MINVALUE
99     NO MAXVALUE
100     CACHE 1;
101
102
103 --
104 -- Name: api_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
105 --
106
107 ALTER SEQUENCE api_clients_id_seq OWNED BY api_clients.id;
108
109
110 --
111 -- Name: authorized_keys; Type: TABLE; Schema: public; Owner: -; Tablespace: 
112 --
113
114 CREATE TABLE authorized_keys (
115     id integer NOT NULL,
116     uuid character varying(255) NOT NULL,
117     owner_uuid character varying(255) NOT NULL,
118     modified_by_client_uuid character varying(255),
119     modified_by_user_uuid character varying(255),
120     modified_at timestamp without time zone,
121     name character varying(255),
122     key_type character varying(255),
123     authorized_user_uuid character varying(255),
124     public_key text,
125     expires_at timestamp without time zone,
126     created_at timestamp without time zone NOT NULL,
127     updated_at timestamp without time zone NOT NULL
128 );
129
130
131 --
132 -- Name: authorized_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
133 --
134
135 CREATE SEQUENCE authorized_keys_id_seq
136     START WITH 1
137     INCREMENT BY 1
138     NO MINVALUE
139     NO MAXVALUE
140     CACHE 1;
141
142
143 --
144 -- Name: authorized_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
145 --
146
147 ALTER SEQUENCE authorized_keys_id_seq OWNED BY authorized_keys.id;
148
149
150 --
151 -- Name: collections; Type: TABLE; Schema: public; Owner: -; Tablespace: 
152 --
153
154 CREATE TABLE collections (
155     id integer NOT NULL,
156     owner_uuid character varying(255),
157     created_at timestamp without time zone NOT NULL,
158     modified_by_client_uuid character varying(255),
159     modified_by_user_uuid character varying(255),
160     modified_at timestamp without time zone,
161     portable_data_hash character varying(255),
162     redundancy integer,
163     redundancy_confirmed_by_client_uuid character varying(255),
164     redundancy_confirmed_at timestamp without time zone,
165     redundancy_confirmed_as integer,
166     updated_at timestamp without time zone NOT NULL,
167     uuid character varying(255),
168     manifest_text text,
169     name character varying(255),
170     description character varying(524288),
171     properties text,
172     expires_at date,
173     file_names character varying(8192)
174 );
175
176
177 --
178 -- Name: collections_id_seq; Type: SEQUENCE; Schema: public; Owner: -
179 --
180
181 CREATE SEQUENCE collections_id_seq
182     START WITH 1
183     INCREMENT BY 1
184     NO MINVALUE
185     NO MAXVALUE
186     CACHE 1;
187
188
189 --
190 -- Name: collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
191 --
192
193 ALTER SEQUENCE collections_id_seq OWNED BY collections.id;
194
195
196 --
197 -- Name: commit_ancestors; Type: TABLE; Schema: public; Owner: -; Tablespace: 
198 --
199
200 CREATE TABLE commit_ancestors (
201     id integer NOT NULL,
202     repository_name character varying(255),
203     descendant character varying(255) NOT NULL,
204     ancestor character varying(255) NOT NULL,
205     "is" boolean DEFAULT false NOT NULL,
206     created_at timestamp without time zone NOT NULL,
207     updated_at timestamp without time zone NOT NULL
208 );
209
210
211 --
212 -- Name: commit_ancestors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
213 --
214
215 CREATE SEQUENCE commit_ancestors_id_seq
216     START WITH 1
217     INCREMENT BY 1
218     NO MINVALUE
219     NO MAXVALUE
220     CACHE 1;
221
222
223 --
224 -- Name: commit_ancestors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
225 --
226
227 ALTER SEQUENCE commit_ancestors_id_seq OWNED BY commit_ancestors.id;
228
229
230 --
231 -- Name: commits; Type: TABLE; Schema: public; Owner: -; Tablespace: 
232 --
233
234 CREATE TABLE commits (
235     id integer NOT NULL,
236     repository_name character varying(255),
237     sha1 character varying(255),
238     message character varying(255),
239     created_at timestamp without time zone NOT NULL,
240     updated_at timestamp without time zone NOT NULL
241 );
242
243
244 --
245 -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
246 --
247
248 CREATE SEQUENCE commits_id_seq
249     START WITH 1
250     INCREMENT BY 1
251     NO MINVALUE
252     NO MAXVALUE
253     CACHE 1;
254
255
256 --
257 -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
258 --
259
260 ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
261
262
263 --
264 -- Name: groups; Type: TABLE; Schema: public; Owner: -; Tablespace: 
265 --
266
267 CREATE TABLE groups (
268     id integer NOT NULL,
269     uuid character varying(255),
270     owner_uuid character varying(255),
271     created_at timestamp without time zone NOT NULL,
272     modified_by_client_uuid character varying(255),
273     modified_by_user_uuid character varying(255),
274     modified_at timestamp without time zone,
275     name character varying(255) NOT NULL,
276     description character varying(524288),
277     updated_at timestamp without time zone NOT NULL,
278     group_class character varying(255)
279 );
280
281
282 --
283 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
284 --
285
286 CREATE SEQUENCE groups_id_seq
287     START WITH 1
288     INCREMENT BY 1
289     NO MINVALUE
290     NO MAXVALUE
291     CACHE 1;
292
293
294 --
295 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
296 --
297
298 ALTER SEQUENCE groups_id_seq OWNED BY groups.id;
299
300
301 --
302 -- Name: humans; Type: TABLE; Schema: public; Owner: -; Tablespace: 
303 --
304
305 CREATE TABLE humans (
306     id integer NOT NULL,
307     uuid character varying(255) NOT NULL,
308     owner_uuid character varying(255) NOT NULL,
309     modified_by_client_uuid character varying(255),
310     modified_by_user_uuid character varying(255),
311     modified_at timestamp without time zone,
312     properties text,
313     created_at timestamp without time zone NOT NULL,
314     updated_at timestamp without time zone NOT NULL
315 );
316
317
318 --
319 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
320 --
321
322 CREATE SEQUENCE humans_id_seq
323     START WITH 1
324     INCREMENT BY 1
325     NO MINVALUE
326     NO MAXVALUE
327     CACHE 1;
328
329
330 --
331 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
332 --
333
334 ALTER SEQUENCE humans_id_seq OWNED BY humans.id;
335
336
337 --
338 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace: 
339 --
340
341 CREATE TABLE job_tasks (
342     id integer NOT NULL,
343     uuid character varying(255),
344     owner_uuid character varying(255),
345     modified_by_client_uuid character varying(255),
346     modified_by_user_uuid character varying(255),
347     modified_at timestamp without time zone,
348     job_uuid character varying(255),
349     sequence integer,
350     parameters text,
351     output text,
352     progress double precision,
353     success boolean,
354     created_at timestamp without time zone NOT NULL,
355     updated_at timestamp without time zone NOT NULL,
356     created_by_job_task_uuid character varying(255),
357     qsequence bigint,
358     started_at timestamp without time zone,
359     finished_at timestamp without time zone
360 );
361
362
363 --
364 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
365 --
366
367 CREATE SEQUENCE job_tasks_id_seq
368     START WITH 1
369     INCREMENT BY 1
370     NO MINVALUE
371     NO MAXVALUE
372     CACHE 1;
373
374
375 --
376 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
377 --
378
379 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
380
381
382 --
383 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
384 --
385
386 CREATE SEQUENCE job_tasks_qsequence_seq
387     START WITH 1
388     INCREMENT BY 1
389     NO MINVALUE
390     NO MAXVALUE
391     CACHE 1;
392
393
394 --
395 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
396 --
397
398 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
399
400
401 --
402 -- Name: jobs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
403 --
404
405 CREATE TABLE jobs (
406     id integer NOT NULL,
407     uuid character varying(255),
408     owner_uuid character varying(255),
409     modified_by_client_uuid character varying(255),
410     modified_by_user_uuid character varying(255),
411     modified_at timestamp without time zone,
412     submit_id character varying(255),
413     script character varying(255),
414     script_version character varying(255),
415     script_parameters text,
416     cancelled_by_client_uuid character varying(255),
417     cancelled_by_user_uuid character varying(255),
418     cancelled_at timestamp without time zone,
419     started_at timestamp without time zone,
420     finished_at timestamp without time zone,
421     running boolean,
422     success boolean,
423     output character varying(255),
424     created_at timestamp without time zone NOT NULL,
425     updated_at timestamp without time zone NOT NULL,
426     is_locked_by_uuid character varying(255),
427     log character varying(255),
428     tasks_summary text,
429     runtime_constraints text,
430     nondeterministic boolean,
431     repository character varying(255),
432     supplied_script_version character varying(255),
433     docker_image_locator character varying(255),
434     priority integer DEFAULT 0 NOT NULL,
435     description character varying(524288),
436     state character varying(255),
437     arvados_sdk_version character varying(255)
438 );
439
440
441 --
442 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
443 --
444
445 CREATE SEQUENCE jobs_id_seq
446     START WITH 1
447     INCREMENT BY 1
448     NO MINVALUE
449     NO MAXVALUE
450     CACHE 1;
451
452
453 --
454 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
455 --
456
457 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
458
459
460 --
461 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -; Tablespace: 
462 --
463
464 CREATE TABLE keep_disks (
465     id integer NOT NULL,
466     uuid character varying(255) NOT NULL,
467     owner_uuid character varying(255) NOT NULL,
468     modified_by_client_uuid character varying(255),
469     modified_by_user_uuid character varying(255),
470     modified_at timestamp without time zone,
471     ping_secret character varying(255) NOT NULL,
472     node_uuid character varying(255),
473     filesystem_uuid character varying(255),
474     bytes_total integer,
475     bytes_free integer,
476     is_readable boolean DEFAULT true NOT NULL,
477     is_writable boolean DEFAULT true NOT NULL,
478     last_read_at timestamp without time zone,
479     last_write_at timestamp without time zone,
480     last_ping_at timestamp without time zone,
481     created_at timestamp without time zone NOT NULL,
482     updated_at timestamp without time zone NOT NULL,
483     keep_service_uuid character varying(255)
484 );
485
486
487 --
488 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
489 --
490
491 CREATE SEQUENCE keep_disks_id_seq
492     START WITH 1
493     INCREMENT BY 1
494     NO MINVALUE
495     NO MAXVALUE
496     CACHE 1;
497
498
499 --
500 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
501 --
502
503 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
504
505
506 --
507 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -; Tablespace: 
508 --
509
510 CREATE TABLE keep_services (
511     id integer NOT NULL,
512     uuid character varying(255) NOT NULL,
513     owner_uuid character varying(255) NOT NULL,
514     modified_by_client_uuid character varying(255),
515     modified_by_user_uuid character varying(255),
516     modified_at timestamp without time zone,
517     service_host character varying(255),
518     service_port integer,
519     service_ssl_flag boolean,
520     service_type character varying(255),
521     created_at timestamp without time zone NOT NULL,
522     updated_at timestamp without time zone NOT NULL
523 );
524
525
526 --
527 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
528 --
529
530 CREATE SEQUENCE keep_services_id_seq
531     START WITH 1
532     INCREMENT BY 1
533     NO MINVALUE
534     NO MAXVALUE
535     CACHE 1;
536
537
538 --
539 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
540 --
541
542 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
543
544
545 --
546 -- Name: links; Type: TABLE; Schema: public; Owner: -; Tablespace: 
547 --
548
549 CREATE TABLE links (
550     id integer NOT NULL,
551     uuid character varying(255),
552     owner_uuid character varying(255),
553     created_at timestamp without time zone NOT NULL,
554     modified_by_client_uuid character varying(255),
555     modified_by_user_uuid character varying(255),
556     modified_at timestamp without time zone,
557     tail_uuid character varying(255),
558     link_class character varying(255),
559     name character varying(255),
560     head_uuid character varying(255),
561     properties text,
562     updated_at timestamp without time zone NOT NULL
563 );
564
565
566 --
567 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
568 --
569
570 CREATE SEQUENCE links_id_seq
571     START WITH 1
572     INCREMENT BY 1
573     NO MINVALUE
574     NO MAXVALUE
575     CACHE 1;
576
577
578 --
579 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
580 --
581
582 ALTER SEQUENCE links_id_seq OWNED BY links.id;
583
584
585 --
586 -- Name: logs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
587 --
588
589 CREATE TABLE logs (
590     id integer NOT NULL,
591     uuid character varying(255),
592     owner_uuid character varying(255),
593     modified_by_client_uuid character varying(255),
594     modified_by_user_uuid character varying(255),
595     object_uuid character varying(255),
596     event_at timestamp without time zone,
597     event_type character varying(255),
598     summary text,
599     properties text,
600     created_at timestamp without time zone NOT NULL,
601     updated_at timestamp without time zone NOT NULL,
602     modified_at timestamp without time zone,
603     object_owner_uuid character varying(255)
604 );
605
606
607 --
608 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
609 --
610
611 CREATE SEQUENCE logs_id_seq
612     START WITH 1
613     INCREMENT BY 1
614     NO MINVALUE
615     NO MAXVALUE
616     CACHE 1;
617
618
619 --
620 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
621 --
622
623 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
624
625
626 --
627 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
628 --
629
630 CREATE TABLE nodes (
631     id integer NOT NULL,
632     uuid character varying(255),
633     owner_uuid character varying(255),
634     created_at timestamp without time zone NOT NULL,
635     modified_by_client_uuid character varying(255),
636     modified_by_user_uuid character varying(255),
637     modified_at timestamp without time zone,
638     slot_number integer,
639     hostname character varying(255),
640     domain character varying(255),
641     ip_address character varying(255),
642     first_ping_at timestamp without time zone,
643     last_ping_at timestamp without time zone,
644     info text,
645     updated_at timestamp without time zone NOT NULL,
646     properties text,
647     job_uuid character varying(255)
648 );
649
650
651 --
652 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
653 --
654
655 CREATE SEQUENCE nodes_id_seq
656     START WITH 1
657     INCREMENT BY 1
658     NO MINVALUE
659     NO MAXVALUE
660     CACHE 1;
661
662
663 --
664 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
665 --
666
667 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
668
669
670 --
671 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -; Tablespace: 
672 --
673
674 CREATE TABLE pipeline_instances (
675     id integer NOT NULL,
676     uuid character varying(255),
677     owner_uuid character varying(255),
678     created_at timestamp without time zone NOT NULL,
679     modified_by_client_uuid character varying(255),
680     modified_by_user_uuid character varying(255),
681     modified_at timestamp without time zone,
682     pipeline_template_uuid character varying(255),
683     name character varying(255),
684     components text,
685     updated_at timestamp without time zone NOT NULL,
686     properties text,
687     state character varying(255),
688     components_summary text,
689     started_at timestamp without time zone,
690     finished_at timestamp without time zone,
691     description character varying(524288)
692 );
693
694
695 --
696 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
697 --
698
699 CREATE SEQUENCE pipeline_instances_id_seq
700     START WITH 1
701     INCREMENT BY 1
702     NO MINVALUE
703     NO MAXVALUE
704     CACHE 1;
705
706
707 --
708 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
709 --
710
711 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
712
713
714 --
715 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -; Tablespace: 
716 --
717
718 CREATE TABLE pipeline_templates (
719     id integer NOT NULL,
720     uuid character varying(255),
721     owner_uuid character varying(255),
722     created_at timestamp without time zone NOT NULL,
723     modified_by_client_uuid character varying(255),
724     modified_by_user_uuid character varying(255),
725     modified_at timestamp without time zone,
726     name character varying(255),
727     components text,
728     updated_at timestamp without time zone NOT NULL,
729     description character varying(524288)
730 );
731
732
733 --
734 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
735 --
736
737 CREATE SEQUENCE pipeline_templates_id_seq
738     START WITH 1
739     INCREMENT BY 1
740     NO MINVALUE
741     NO MAXVALUE
742     CACHE 1;
743
744
745 --
746 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
747 --
748
749 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
750
751
752 --
753 -- Name: repositories; Type: TABLE; Schema: public; Owner: -; Tablespace: 
754 --
755
756 CREATE TABLE repositories (
757     id integer NOT NULL,
758     uuid character varying(255) NOT NULL,
759     owner_uuid character varying(255) NOT NULL,
760     modified_by_client_uuid character varying(255),
761     modified_by_user_uuid character varying(255),
762     modified_at timestamp without time zone,
763     name character varying(255),
764     fetch_url character varying(255),
765     push_url character varying(255),
766     created_at timestamp without time zone NOT NULL,
767     updated_at timestamp without time zone NOT NULL
768 );
769
770
771 --
772 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
773 --
774
775 CREATE SEQUENCE repositories_id_seq
776     START WITH 1
777     INCREMENT BY 1
778     NO MINVALUE
779     NO MAXVALUE
780     CACHE 1;
781
782
783 --
784 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
785 --
786
787 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
788
789
790 --
791 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace: 
792 --
793
794 CREATE TABLE schema_migrations (
795     version character varying(255) NOT NULL
796 );
797
798
799 --
800 -- Name: specimens; Type: TABLE; Schema: public; Owner: -; Tablespace: 
801 --
802
803 CREATE TABLE specimens (
804     id integer NOT NULL,
805     uuid character varying(255),
806     owner_uuid character varying(255),
807     created_at timestamp without time zone NOT NULL,
808     modified_by_client_uuid character varying(255),
809     modified_by_user_uuid character varying(255),
810     modified_at timestamp without time zone,
811     material character varying(255),
812     updated_at timestamp without time zone NOT NULL,
813     properties text
814 );
815
816
817 --
818 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
819 --
820
821 CREATE SEQUENCE specimens_id_seq
822     START WITH 1
823     INCREMENT BY 1
824     NO MINVALUE
825     NO MAXVALUE
826     CACHE 1;
827
828
829 --
830 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
831 --
832
833 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
834
835
836 --
837 -- Name: traits; Type: TABLE; Schema: public; Owner: -; Tablespace: 
838 --
839
840 CREATE TABLE traits (
841     id integer NOT NULL,
842     uuid character varying(255) NOT NULL,
843     owner_uuid character varying(255) NOT NULL,
844     modified_by_client_uuid character varying(255),
845     modified_by_user_uuid character varying(255),
846     modified_at timestamp without time zone,
847     name character varying(255),
848     properties text,
849     created_at timestamp without time zone NOT NULL,
850     updated_at timestamp without time zone NOT NULL
851 );
852
853
854 --
855 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
856 --
857
858 CREATE SEQUENCE traits_id_seq
859     START WITH 1
860     INCREMENT BY 1
861     NO MINVALUE
862     NO MAXVALUE
863     CACHE 1;
864
865
866 --
867 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
868 --
869
870 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
871
872
873 --
874 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace: 
875 --
876
877 CREATE TABLE users (
878     id integer NOT NULL,
879     uuid character varying(255),
880     owner_uuid character varying(255) NOT NULL,
881     created_at timestamp without time zone NOT NULL,
882     modified_by_client_uuid character varying(255),
883     modified_by_user_uuid character varying(255),
884     modified_at timestamp without time zone,
885     email character varying(255),
886     first_name character varying(255),
887     last_name character varying(255),
888     identity_url character varying(255),
889     is_admin boolean,
890     prefs text,
891     updated_at timestamp without time zone NOT NULL,
892     default_owner_uuid character varying(255),
893     is_active boolean DEFAULT false
894 );
895
896
897 --
898 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
899 --
900
901 CREATE SEQUENCE users_id_seq
902     START WITH 1
903     INCREMENT BY 1
904     NO MINVALUE
905     NO MAXVALUE
906     CACHE 1;
907
908
909 --
910 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
911 --
912
913 ALTER SEQUENCE users_id_seq OWNED BY users.id;
914
915
916 --
917 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -; Tablespace: 
918 --
919
920 CREATE TABLE virtual_machines (
921     id integer NOT NULL,
922     uuid character varying(255) NOT NULL,
923     owner_uuid character varying(255) NOT NULL,
924     modified_by_client_uuid character varying(255),
925     modified_by_user_uuid character varying(255),
926     modified_at timestamp without time zone,
927     hostname character varying(255),
928     created_at timestamp without time zone NOT NULL,
929     updated_at timestamp without time zone NOT NULL
930 );
931
932
933 --
934 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
935 --
936
937 CREATE SEQUENCE virtual_machines_id_seq
938     START WITH 1
939     INCREMENT BY 1
940     NO MINVALUE
941     NO MAXVALUE
942     CACHE 1;
943
944
945 --
946 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
947 --
948
949 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
950
951
952 --
953 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
954 --
955
956 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
957
958
959 --
960 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
961 --
962
963 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
964
965
966 --
967 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
968 --
969
970 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
971
972
973 --
974 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
975 --
976
977 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
978
979
980 --
981 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
982 --
983
984 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
985
986
987 --
988 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
989 --
990
991 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
992
993
994 --
995 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
996 --
997
998 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
999
1000
1001 --
1002 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1003 --
1004
1005 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
1006
1007
1008 --
1009 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1010 --
1011
1012 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1013
1014
1015 --
1016 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1017 --
1018
1019 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1020
1021
1022 --
1023 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1024 --
1025
1026 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1027
1028
1029 --
1030 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1031 --
1032
1033 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1034
1035
1036 --
1037 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1038 --
1039
1040 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1041
1042
1043 --
1044 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1045 --
1046
1047 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1048
1049
1050 --
1051 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1052 --
1053
1054 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1055
1056
1057 --
1058 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1059 --
1060
1061 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1062
1063
1064 --
1065 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1066 --
1067
1068 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1069
1070
1071 --
1072 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1073 --
1074
1075 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1076
1077
1078 --
1079 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1080 --
1081
1082 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1083
1084
1085 --
1086 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1087 --
1088
1089 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1090
1091
1092 --
1093 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1094 --
1095
1096 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1097
1098
1099 --
1100 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1101 --
1102
1103 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1104
1105
1106 --
1107 -- Name: api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1108 --
1109
1110 ALTER TABLE ONLY api_client_authorizations
1111     ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1112
1113
1114 --
1115 -- Name: api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1116 --
1117
1118 ALTER TABLE ONLY api_clients
1119     ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1120
1121
1122 --
1123 -- Name: authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1124 --
1125
1126 ALTER TABLE ONLY authorized_keys
1127     ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1128
1129
1130 --
1131 -- Name: collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1132 --
1133
1134 ALTER TABLE ONLY collections
1135     ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1136
1137
1138 --
1139 -- Name: commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1140 --
1141
1142 ALTER TABLE ONLY commit_ancestors
1143     ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1144
1145
1146 --
1147 -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1148 --
1149
1150 ALTER TABLE ONLY commits
1151     ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1152
1153
1154 --
1155 -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1156 --
1157
1158 ALTER TABLE ONLY groups
1159     ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1160
1161
1162 --
1163 -- Name: humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1164 --
1165
1166 ALTER TABLE ONLY humans
1167     ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1168
1169
1170 --
1171 -- Name: job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1172 --
1173
1174 ALTER TABLE ONLY job_tasks
1175     ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1176
1177
1178 --
1179 -- Name: jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1180 --
1181
1182 ALTER TABLE ONLY jobs
1183     ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1184
1185
1186 --
1187 -- Name: keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1188 --
1189
1190 ALTER TABLE ONLY keep_disks
1191     ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1192
1193
1194 --
1195 -- Name: keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1196 --
1197
1198 ALTER TABLE ONLY keep_services
1199     ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1200
1201
1202 --
1203 -- Name: links_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1204 --
1205
1206 ALTER TABLE ONLY links
1207     ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1208
1209
1210 --
1211 -- Name: logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1212 --
1213
1214 ALTER TABLE ONLY logs
1215     ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1216
1217
1218 --
1219 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1220 --
1221
1222 ALTER TABLE ONLY nodes
1223     ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1224
1225
1226 --
1227 -- Name: pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1228 --
1229
1230 ALTER TABLE ONLY pipeline_instances
1231     ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1232
1233
1234 --
1235 -- Name: pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1236 --
1237
1238 ALTER TABLE ONLY pipeline_templates
1239     ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1240
1241
1242 --
1243 -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1244 --
1245
1246 ALTER TABLE ONLY repositories
1247     ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1248
1249
1250 --
1251 -- Name: specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1252 --
1253
1254 ALTER TABLE ONLY specimens
1255     ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1256
1257
1258 --
1259 -- Name: traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1260 --
1261
1262 ALTER TABLE ONLY traits
1263     ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1264
1265
1266 --
1267 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1268 --
1269
1270 ALTER TABLE ONLY users
1271     ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1272
1273
1274 --
1275 -- Name: virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1276 --
1277
1278 ALTER TABLE ONLY virtual_machines
1279     ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1280
1281
1282 --
1283 -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1284 --
1285
1286 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);
1287
1288
1289 --
1290 -- Name: api_clients_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1291 --
1292
1293 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);
1294
1295
1296 --
1297 -- Name: authorized_keys_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1298 --
1299
1300 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);
1301
1302
1303 --
1304 -- Name: collection_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1305 --
1306
1307 CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree (owner_uuid, name);
1308
1309
1310 --
1311 -- Name: collections_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1312 --
1313
1314 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(redundancy_confirmed_by_client_uuid, ''::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)));
1315
1316
1317 --
1318 -- Name: collections_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1319 --
1320
1321 CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, redundancy_confirmed_by_client_uuid, uuid, name, file_names);
1322
1323
1324 --
1325 -- Name: groups_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1326 --
1327
1328 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)));
1329
1330
1331 --
1332 -- Name: groups_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1333 --
1334
1335 CREATE UNIQUE INDEX groups_owner_uuid_name_unique ON groups USING btree (owner_uuid, name);
1336
1337
1338 --
1339 -- Name: groups_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1340 --
1341
1342 CREATE INDEX groups_search_index ON groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, group_class);
1343
1344
1345 --
1346 -- Name: humans_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1347 --
1348
1349 CREATE INDEX humans_search_index ON humans USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid);
1350
1351
1352 --
1353 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1354 --
1355
1356 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1357
1358
1359 --
1360 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1361 --
1362
1363 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1364
1365
1366 --
1367 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1368 --
1369
1370 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1371
1372
1373 --
1374 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1375 --
1376
1377 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1378
1379
1380 --
1381 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1382 --
1383
1384 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1385
1386
1387 --
1388 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1389 --
1390
1391 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1392
1393
1394 --
1395 -- Name: index_api_clients_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1396 --
1397
1398 CREATE INDEX index_api_clients_on_owner_uuid ON api_clients USING btree (owner_uuid);
1399
1400
1401 --
1402 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1403 --
1404
1405 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1406
1407
1408 --
1409 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1410 --
1411
1412 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1413
1414
1415 --
1416 -- Name: index_authorized_keys_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1417 --
1418
1419 CREATE INDEX index_authorized_keys_on_owner_uuid ON authorized_keys USING btree (owner_uuid);
1420
1421
1422 --
1423 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1424 --
1425
1426 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1427
1428
1429 --
1430 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1431 --
1432
1433 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1434
1435
1436 --
1437 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1438 --
1439
1440 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1441
1442
1443 --
1444 -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1445 --
1446
1447 CREATE INDEX index_collections_on_owner_uuid ON collections USING btree (owner_uuid);
1448
1449
1450 --
1451 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1452 --
1453
1454 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1455
1456
1457 --
1458 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1459 --
1460
1461 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1462
1463
1464 --
1465 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1466 --
1467
1468 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1469
1470
1471 --
1472 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1473 --
1474
1475 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1476
1477
1478 --
1479 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1480 --
1481
1482 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1483
1484
1485 --
1486 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1487 --
1488
1489 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1490
1491
1492 --
1493 -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1494 --
1495
1496 CREATE INDEX index_groups_on_owner_uuid ON groups USING btree (owner_uuid);
1497
1498
1499 --
1500 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1501 --
1502
1503 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1504
1505
1506 --
1507 -- Name: index_humans_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1508 --
1509
1510 CREATE INDEX index_humans_on_owner_uuid ON humans USING btree (owner_uuid);
1511
1512
1513 --
1514 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1515 --
1516
1517 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1518
1519
1520 --
1521 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1522 --
1523
1524 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1525
1526
1527 --
1528 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1529 --
1530
1531 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1532
1533
1534 --
1535 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1536 --
1537
1538 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1539
1540
1541 --
1542 -- Name: index_job_tasks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1543 --
1544
1545 CREATE INDEX index_job_tasks_on_owner_uuid ON job_tasks USING btree (owner_uuid);
1546
1547
1548 --
1549 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1550 --
1551
1552 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
1553
1554
1555 --
1556 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1557 --
1558
1559 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
1560
1561
1562 --
1563 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1564 --
1565
1566 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
1567
1568
1569 --
1570 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1571 --
1572
1573 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
1574
1575
1576 --
1577 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1578 --
1579
1580 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
1581
1582
1583 --
1584 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1585 --
1586
1587 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
1588
1589
1590 --
1591 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1592 --
1593
1594 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
1595
1596
1597 --
1598 -- Name: index_jobs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1599 --
1600
1601 CREATE INDEX index_jobs_on_owner_uuid ON jobs USING btree (owner_uuid);
1602
1603
1604 --
1605 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1606 --
1607
1608 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
1609
1610
1611 --
1612 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1613 --
1614
1615 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
1616
1617
1618 --
1619 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1620 --
1621
1622 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
1623
1624
1625 --
1626 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1627 --
1628
1629 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
1630
1631
1632 --
1633 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1634 --
1635
1636 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
1637
1638
1639 --
1640 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1641 --
1642
1643 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
1644
1645
1646 --
1647 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1648 --
1649
1650 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
1651
1652
1653 --
1654 -- Name: index_keep_disks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1655 --
1656
1657 CREATE INDEX index_keep_disks_on_owner_uuid ON keep_disks USING btree (owner_uuid);
1658
1659
1660 --
1661 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1662 --
1663
1664 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
1665
1666
1667 --
1668 -- Name: index_keep_services_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1669 --
1670
1671 CREATE INDEX index_keep_services_on_owner_uuid ON keep_services USING btree (owner_uuid);
1672
1673
1674 --
1675 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1676 --
1677
1678 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
1679
1680
1681 --
1682 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1683 --
1684
1685 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
1686
1687
1688 --
1689 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1690 --
1691
1692 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
1693
1694
1695 --
1696 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1697 --
1698
1699 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
1700
1701
1702 --
1703 -- Name: index_links_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1704 --
1705
1706 CREATE INDEX index_links_on_owner_uuid ON links USING btree (owner_uuid);
1707
1708
1709 --
1710 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1711 --
1712
1713 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
1714
1715
1716 --
1717 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1718 --
1719
1720 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
1721
1722
1723 --
1724 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1725 --
1726
1727 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
1728
1729
1730 --
1731 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1732 --
1733
1734 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
1735
1736
1737 --
1738 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1739 --
1740
1741 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
1742
1743
1744 --
1745 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1746 --
1747
1748 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
1749
1750
1751 --
1752 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1753 --
1754
1755 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
1756
1757
1758 --
1759 -- Name: index_logs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1760 --
1761
1762 CREATE INDEX index_logs_on_owner_uuid ON logs USING btree (owner_uuid);
1763
1764
1765 --
1766 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1767 --
1768
1769 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
1770
1771
1772 --
1773 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1774 --
1775
1776 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
1777
1778
1779 --
1780 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1781 --
1782
1783 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
1784
1785
1786 --
1787 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1788 --
1789
1790 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
1791
1792
1793 --
1794 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1795 --
1796
1797 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
1798
1799
1800 --
1801 -- Name: index_nodes_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1802 --
1803
1804 CREATE INDEX index_nodes_on_owner_uuid ON nodes USING btree (owner_uuid);
1805
1806
1807 --
1808 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1809 --
1810
1811 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
1812
1813
1814 --
1815 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1816 --
1817
1818 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
1819
1820
1821 --
1822 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1823 --
1824
1825 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
1826
1827
1828 --
1829 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1830 --
1831
1832 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
1833
1834
1835 --
1836 -- Name: index_pipeline_instances_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1837 --
1838
1839 CREATE INDEX index_pipeline_instances_on_owner_uuid ON pipeline_instances USING btree (owner_uuid);
1840
1841
1842 --
1843 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1844 --
1845
1846 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
1847
1848
1849 --
1850 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1851 --
1852
1853 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
1854
1855
1856 --
1857 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1858 --
1859
1860 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
1861
1862
1863 --
1864 -- Name: index_pipeline_templates_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1865 --
1866
1867 CREATE INDEX index_pipeline_templates_on_owner_uuid ON pipeline_templates USING btree (owner_uuid);
1868
1869
1870 --
1871 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1872 --
1873
1874 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
1875
1876
1877 --
1878 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1879 --
1880
1881 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
1882
1883
1884 --
1885 -- Name: index_repositories_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1886 --
1887
1888 CREATE INDEX index_repositories_on_owner_uuid ON repositories USING btree (owner_uuid);
1889
1890
1891 --
1892 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1893 --
1894
1895 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
1896
1897
1898 --
1899 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1900 --
1901
1902 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
1903
1904
1905 --
1906 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1907 --
1908
1909 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
1910
1911
1912 --
1913 -- Name: index_specimens_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1914 --
1915
1916 CREATE INDEX index_specimens_on_owner_uuid ON specimens USING btree (owner_uuid);
1917
1918
1919 --
1920 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1921 --
1922
1923 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
1924
1925
1926 --
1927 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1928 --
1929
1930 CREATE INDEX index_traits_on_name ON traits USING btree (name);
1931
1932
1933 --
1934 -- Name: index_traits_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1935 --
1936
1937 CREATE INDEX index_traits_on_owner_uuid ON traits USING btree (owner_uuid);
1938
1939
1940 --
1941 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1942 --
1943
1944 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
1945
1946
1947 --
1948 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1949 --
1950
1951 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
1952
1953
1954 --
1955 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1956 --
1957
1958 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
1959
1960
1961 --
1962 -- Name: index_users_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1963 --
1964
1965 CREATE INDEX index_users_on_owner_uuid ON users USING btree (owner_uuid);
1966
1967
1968 --
1969 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1970 --
1971
1972 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
1973
1974
1975 --
1976 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1977 --
1978
1979 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
1980
1981
1982 --
1983 -- Name: index_virtual_machines_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1984 --
1985
1986 CREATE INDEX index_virtual_machines_on_owner_uuid ON virtual_machines USING btree (owner_uuid);
1987
1988
1989 --
1990 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1991 --
1992
1993 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
1994
1995
1996 --
1997 -- Name: job_tasks_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1998 --
1999
2000 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);
2001
2002
2003 --
2004 -- Name: jobs_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2005 --
2006
2007 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)));
2008
2009
2010 --
2011 -- Name: jobs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2012 --
2013
2014 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);
2015
2016
2017 --
2018 -- Name: keep_disks_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2019 --
2020
2021 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);
2022
2023
2024 --
2025 -- Name: keep_services_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2026 --
2027
2028 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);
2029
2030
2031 --
2032 -- Name: links_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2033 --
2034
2035 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);
2036
2037
2038 --
2039 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2040 --
2041
2042 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
2043
2044
2045 --
2046 -- Name: logs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2047 --
2048
2049 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);
2050
2051
2052 --
2053 -- Name: nodes_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2054 --
2055
2056 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);
2057
2058
2059 --
2060 -- Name: pipeline_instances_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2061 --
2062
2063 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)));
2064
2065
2066 --
2067 -- Name: pipeline_instances_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2068 --
2069
2070 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);
2071
2072
2073 --
2074 -- Name: pipeline_template_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2075 --
2076
2077 CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON pipeline_templates USING btree (owner_uuid, name);
2078
2079
2080 --
2081 -- Name: pipeline_templates_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2082 --
2083
2084 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)));
2085
2086
2087 --
2088 -- Name: pipeline_templates_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2089 --
2090
2091 CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2092
2093
2094 --
2095 -- Name: repositories_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2096 --
2097
2098 CREATE INDEX repositories_search_index ON repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, fetch_url, push_url);
2099
2100
2101 --
2102 -- Name: specimens_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2103 --
2104
2105 CREATE INDEX specimens_search_index ON specimens USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, material);
2106
2107
2108 --
2109 -- Name: traits_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2110 --
2111
2112 CREATE INDEX traits_search_index ON traits USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2113
2114
2115 --
2116 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2117 --
2118
2119 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
2120
2121
2122 --
2123 -- Name: users_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2124 --
2125
2126 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);
2127
2128
2129 --
2130 -- Name: virtual_machines_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2131 --
2132
2133 CREATE INDEX virtual_machines_search_index ON virtual_machines USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname);
2134
2135
2136 --
2137 -- PostgreSQL database dump complete
2138 --
2139
2140 SET search_path TO "$user",public;
2141
2142 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
2143
2144 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
2145
2146 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
2147
2148 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
2149
2150 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
2151
2152 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
2153
2154 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
2155
2156 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
2157
2158 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
2159
2160 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
2161
2162 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
2163
2164 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
2165
2166 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
2167
2168 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
2169
2170 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
2171
2172 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
2173
2174 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
2175
2176 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
2177
2178 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
2179
2180 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
2181
2182 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
2183
2184 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
2185
2186 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
2187
2188 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
2189
2190 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
2191
2192 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
2193
2194 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
2195
2196 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
2197
2198 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
2199
2200 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
2201
2202 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
2203
2204 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
2205
2206 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
2207
2208 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
2209
2210 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
2211
2212 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
2213
2214 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
2215
2216 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
2217
2218 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
2219
2220 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
2221
2222 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
2223
2224 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
2225
2226 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
2227
2228 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
2229
2230 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
2231
2232 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
2233
2234 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
2235
2236 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
2237
2238 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
2239
2240 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
2241
2242 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
2243
2244 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
2245
2246 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
2247
2248 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
2249
2250 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
2251
2252 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
2253
2254 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
2255
2256 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
2257
2258 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
2259
2260 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
2261
2262 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
2263
2264 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
2265
2266 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
2267
2268 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
2269
2270 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
2271
2272 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
2273
2274 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
2275
2276 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
2277
2278 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
2279
2280 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
2281
2282 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
2283
2284 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
2285
2286 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
2287
2288 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
2289
2290 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
2291
2292 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
2293
2294 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
2295
2296 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
2297
2298 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
2299
2300 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
2301
2302 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
2303
2304 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
2305
2306 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
2307
2308 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
2309
2310 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
2311
2312 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
2313
2314 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
2315
2316 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
2317
2318 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
2319
2320 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
2321
2322 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
2323
2324 INSERT INTO schema_migrations (version) VALUES ('20140817035914');
2325
2326 INSERT INTO schema_migrations (version) VALUES ('20140818125735');
2327
2328 INSERT INTO schema_migrations (version) VALUES ('20140826180337');
2329
2330 INSERT INTO schema_migrations (version) VALUES ('20140828141043');
2331
2332 INSERT INTO schema_migrations (version) VALUES ('20140909183946');
2333
2334 INSERT INTO schema_migrations (version) VALUES ('20140911221252');
2335
2336 INSERT INTO schema_migrations (version) VALUES ('20140918141529');
2337
2338 INSERT INTO schema_migrations (version) VALUES ('20140918153541');
2339
2340 INSERT INTO schema_migrations (version) VALUES ('20140918153705');
2341
2342 INSERT INTO schema_migrations (version) VALUES ('20140924091559');
2343
2344 INSERT INTO schema_migrations (version) VALUES ('20141111133038');
2345
2346 INSERT INTO schema_migrations (version) VALUES ('20141208164553');
2347
2348 INSERT INTO schema_migrations (version) VALUES ('20141208174553');
2349
2350 INSERT INTO schema_migrations (version) VALUES ('20141208174653');
2351
2352 INSERT INTO schema_migrations (version) VALUES ('20141208185217');
2353
2354 INSERT INTO schema_migrations (version) VALUES ('20150122175935');
2355
2356 INSERT INTO schema_migrations (version) VALUES ('20150123142953');
2357
2358 INSERT INTO schema_migrations (version) VALUES ('20150203180223');
2359
2360 INSERT INTO schema_migrations (version) VALUES ('20150206210804');