2 -- PostgreSQL database dump
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;
12 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
15 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
19 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
22 -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
25 SET search_path = public, pg_catalog;
27 SET default_tablespace = '';
29 SET default_with_oids = false;
32 -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: -; Tablespace:
35 CREATE TABLE api_client_authorizations (
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 '---
50 uuid character varying(255) NOT NULL
55 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
58 CREATE SEQUENCE api_client_authorizations_id_seq
67 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
70 ALTER SEQUENCE api_client_authorizations_id_seq OWNED BY api_client_authorizations.id;
74 -- Name: api_clients; Type: TABLE; Schema: public; Owner: -; Tablespace:
77 CREATE TABLE api_clients (
79 uuid character varying(255),
80 owner_uuid character varying(255),
81 modified_by_client_uuid character varying(255),
82 modified_by_user_uuid character varying(255),
83 modified_at timestamp without time zone,
84 name character varying(255),
85 url_prefix character varying(255),
86 created_at timestamp without time zone NOT NULL,
87 updated_at timestamp without time zone NOT NULL,
88 is_trusted boolean DEFAULT false
93 -- Name: api_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: -
96 CREATE SEQUENCE api_clients_id_seq
105 -- Name: api_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
108 ALTER SEQUENCE api_clients_id_seq OWNED BY api_clients.id;
112 -- Name: authorized_keys; Type: TABLE; Schema: public; Owner: -; Tablespace:
115 CREATE TABLE authorized_keys (
117 uuid character varying(255) NOT NULL,
118 owner_uuid character varying(255) NOT NULL,
119 modified_by_client_uuid character varying(255),
120 modified_by_user_uuid character varying(255),
121 modified_at timestamp without time zone,
122 name character varying(255),
123 key_type character varying(255),
124 authorized_user_uuid character varying(255),
126 expires_at timestamp without time zone,
127 created_at timestamp without time zone NOT NULL,
128 updated_at timestamp without time zone NOT NULL
133 -- Name: authorized_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
136 CREATE SEQUENCE authorized_keys_id_seq
145 -- Name: authorized_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
148 ALTER SEQUENCE authorized_keys_id_seq OWNED BY authorized_keys.id;
152 -- Name: collections; Type: TABLE; Schema: public; Owner: -; Tablespace:
155 CREATE TABLE collections (
157 owner_uuid character varying(255),
158 created_at timestamp without time zone NOT NULL,
159 modified_by_client_uuid character varying(255),
160 modified_by_user_uuid character varying(255),
161 modified_at timestamp without time zone,
162 portable_data_hash character varying(255),
163 replication_desired integer,
164 replication_confirmed_at timestamp without time zone,
165 replication_confirmed integer,
166 updated_at timestamp without time zone NOT NULL,
167 uuid character varying(255),
169 name character varying(255),
170 description character varying(524288),
172 expires_at timestamp without time zone,
173 file_names character varying(8192)
178 -- Name: collections_id_seq; Type: SEQUENCE; Schema: public; Owner: -
181 CREATE SEQUENCE collections_id_seq
190 -- Name: collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
193 ALTER SEQUENCE collections_id_seq OWNED BY collections.id;
197 -- Name: commit_ancestors; Type: TABLE; Schema: public; Owner: -; Tablespace:
200 CREATE TABLE commit_ancestors (
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
212 -- Name: commit_ancestors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
215 CREATE SEQUENCE commit_ancestors_id_seq
224 -- Name: commit_ancestors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
227 ALTER SEQUENCE commit_ancestors_id_seq OWNED BY commit_ancestors.id;
231 -- Name: commits; Type: TABLE; Schema: public; Owner: -; Tablespace:
234 CREATE TABLE commits (
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
245 -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
248 CREATE SEQUENCE commits_id_seq
257 -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
260 ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
264 -- Name: container_requests; Type: TABLE; Schema: public; Owner: -; Tablespace:
267 CREATE TABLE container_requests (
269 uuid character varying(255),
270 owner_uuid character varying(255),
271 created_at timestamp without time zone NOT NULL,
272 modified_at timestamp without time zone,
273 modified_by_client_uuid character varying(255),
274 modified_by_user_uuid character varying(255),
275 name character varying(255),
278 state character varying(255),
279 requesting_container_uuid character varying(255),
280 container_uuid character varying(255),
281 container_count_max integer,
283 runtime_constraints text,
284 container_image character varying(255),
286 cwd character varying(255),
288 output_path character varying(255),
290 expires_at timestamp without time zone,
292 updated_at timestamp without time zone NOT NULL,
293 container_count integer DEFAULT 0,
294 use_existing boolean DEFAULT true,
295 scheduling_parameters text,
296 output_uuid character varying(255),
297 log_uuid character varying(255)
302 -- Name: container_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
305 CREATE SEQUENCE container_requests_id_seq
314 -- Name: container_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
317 ALTER SEQUENCE container_requests_id_seq OWNED BY container_requests.id;
321 -- Name: containers; Type: TABLE; Schema: public; Owner: -; Tablespace:
324 CREATE TABLE containers (
326 uuid character varying(255),
327 owner_uuid character varying(255),
328 created_at timestamp without time zone NOT NULL,
329 modified_at timestamp without time zone,
330 modified_by_client_uuid character varying(255),
331 modified_by_user_uuid character varying(255),
332 state character varying(255),
333 started_at timestamp without time zone,
334 finished_at timestamp without time zone,
335 log character varying(255),
337 cwd character varying(255),
339 output_path character varying(255),
341 runtime_constraints text,
342 output character varying(255),
343 container_image character varying(255),
344 progress double precision,
346 updated_at timestamp without time zone NOT NULL,
348 auth_uuid character varying(255),
349 locked_by_uuid character varying(255),
350 scheduling_parameters text
355 -- Name: containers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
358 CREATE SEQUENCE containers_id_seq
367 -- Name: containers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
370 ALTER SEQUENCE containers_id_seq OWNED BY containers.id;
374 -- Name: groups; Type: TABLE; Schema: public; Owner: -; Tablespace:
377 CREATE TABLE groups (
379 uuid character varying(255),
380 owner_uuid character varying(255),
381 created_at timestamp without time zone NOT NULL,
382 modified_by_client_uuid character varying(255),
383 modified_by_user_uuid character varying(255),
384 modified_at timestamp without time zone,
385 name character varying(255) NOT NULL,
386 description character varying(524288),
387 updated_at timestamp without time zone NOT NULL,
388 group_class character varying(255)
393 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
396 CREATE SEQUENCE groups_id_seq
405 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
408 ALTER SEQUENCE groups_id_seq OWNED BY groups.id;
412 -- Name: humans; Type: TABLE; Schema: public; Owner: -; Tablespace:
415 CREATE TABLE humans (
417 uuid character varying(255) NOT NULL,
418 owner_uuid character varying(255) NOT NULL,
419 modified_by_client_uuid character varying(255),
420 modified_by_user_uuid character varying(255),
421 modified_at timestamp without time zone,
423 created_at timestamp without time zone NOT NULL,
424 updated_at timestamp without time zone NOT NULL
429 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
432 CREATE SEQUENCE humans_id_seq
441 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
444 ALTER SEQUENCE humans_id_seq OWNED BY humans.id;
448 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
451 CREATE TABLE job_tasks (
453 uuid character varying(255),
454 owner_uuid character varying(255),
455 modified_by_client_uuid character varying(255),
456 modified_by_user_uuid character varying(255),
457 modified_at timestamp without time zone,
458 job_uuid character varying(255),
462 progress double precision,
464 created_at timestamp without time zone NOT NULL,
465 updated_at timestamp without time zone NOT NULL,
466 created_by_job_task_uuid character varying(255),
468 started_at timestamp without time zone,
469 finished_at timestamp without time zone
474 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
477 CREATE SEQUENCE job_tasks_id_seq
486 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
489 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
493 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
496 CREATE SEQUENCE job_tasks_qsequence_seq
505 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
508 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
512 -- Name: jobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
517 uuid character varying(255),
518 owner_uuid character varying(255),
519 modified_by_client_uuid character varying(255),
520 modified_by_user_uuid character varying(255),
521 modified_at timestamp without time zone,
522 submit_id character varying(255),
523 script character varying(255),
524 script_version character varying(255),
525 script_parameters text,
526 cancelled_by_client_uuid character varying(255),
527 cancelled_by_user_uuid character varying(255),
528 cancelled_at timestamp without time zone,
529 started_at timestamp without time zone,
530 finished_at timestamp without time zone,
533 output character varying(255),
534 created_at timestamp without time zone NOT NULL,
535 updated_at timestamp without time zone NOT NULL,
536 is_locked_by_uuid character varying(255),
537 log character varying(255),
539 runtime_constraints text,
540 nondeterministic boolean,
541 repository character varying(255),
542 supplied_script_version character varying(255),
543 docker_image_locator character varying(255),
544 priority integer DEFAULT 0 NOT NULL,
545 description character varying(524288),
546 state character varying(255),
547 arvados_sdk_version character varying(255),
549 script_parameters_digest character varying(255)
554 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
557 CREATE SEQUENCE jobs_id_seq
566 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
569 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
573 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -; Tablespace:
576 CREATE TABLE keep_disks (
578 uuid character varying(255) NOT NULL,
579 owner_uuid character varying(255) NOT NULL,
580 modified_by_client_uuid character varying(255),
581 modified_by_user_uuid character varying(255),
582 modified_at timestamp without time zone,
583 ping_secret character varying(255) NOT NULL,
584 node_uuid character varying(255),
585 filesystem_uuid character varying(255),
588 is_readable boolean DEFAULT true NOT NULL,
589 is_writable boolean DEFAULT true NOT NULL,
590 last_read_at timestamp without time zone,
591 last_write_at timestamp without time zone,
592 last_ping_at timestamp without time zone,
593 created_at timestamp without time zone NOT NULL,
594 updated_at timestamp without time zone NOT NULL,
595 keep_service_uuid character varying(255)
600 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
603 CREATE SEQUENCE keep_disks_id_seq
612 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
615 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
619 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
622 CREATE TABLE keep_services (
624 uuid character varying(255) NOT NULL,
625 owner_uuid character varying(255) NOT NULL,
626 modified_by_client_uuid character varying(255),
627 modified_by_user_uuid character varying(255),
628 modified_at timestamp without time zone,
629 service_host character varying(255),
630 service_port integer,
631 service_ssl_flag boolean,
632 service_type character varying(255),
633 created_at timestamp without time zone NOT NULL,
634 updated_at timestamp without time zone NOT NULL,
635 read_only boolean DEFAULT false NOT NULL
640 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
643 CREATE SEQUENCE keep_services_id_seq
652 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
655 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
659 -- Name: links; Type: TABLE; Schema: public; Owner: -; Tablespace:
664 uuid character varying(255),
665 owner_uuid character varying(255),
666 created_at timestamp without time zone NOT NULL,
667 modified_by_client_uuid character varying(255),
668 modified_by_user_uuid character varying(255),
669 modified_at timestamp without time zone,
670 tail_uuid character varying(255),
671 link_class character varying(255),
672 name character varying(255),
673 head_uuid character varying(255),
675 updated_at timestamp without time zone NOT NULL
680 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
683 CREATE SEQUENCE links_id_seq
692 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
695 ALTER SEQUENCE links_id_seq OWNED BY links.id;
699 -- Name: logs; Type: TABLE; Schema: public; Owner: -; Tablespace:
704 uuid character varying(255),
705 owner_uuid character varying(255),
706 modified_by_client_uuid character varying(255),
707 modified_by_user_uuid character varying(255),
708 object_uuid character varying(255),
709 event_at timestamp without time zone,
710 event_type character varying(255),
713 created_at timestamp without time zone NOT NULL,
714 updated_at timestamp without time zone NOT NULL,
715 modified_at timestamp without time zone,
716 object_owner_uuid character varying(255)
721 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
724 CREATE SEQUENCE logs_id_seq
733 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
736 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
740 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
745 uuid character varying(255),
746 owner_uuid character varying(255),
747 created_at timestamp without time zone NOT NULL,
748 modified_by_client_uuid character varying(255),
749 modified_by_user_uuid character varying(255),
750 modified_at timestamp without time zone,
752 hostname character varying(255),
753 domain character varying(255),
754 ip_address character varying(255),
755 first_ping_at timestamp without time zone,
756 last_ping_at timestamp without time zone,
758 updated_at timestamp without time zone NOT NULL,
760 job_uuid character varying(255)
765 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
768 CREATE SEQUENCE nodes_id_seq
777 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
780 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
784 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -; Tablespace:
787 CREATE TABLE pipeline_instances (
789 uuid character varying(255),
790 owner_uuid character varying(255),
791 created_at timestamp without time zone NOT NULL,
792 modified_by_client_uuid character varying(255),
793 modified_by_user_uuid character varying(255),
794 modified_at timestamp without time zone,
795 pipeline_template_uuid character varying(255),
796 name character varying(255),
798 updated_at timestamp without time zone NOT NULL,
800 state character varying(255),
801 components_summary text,
802 started_at timestamp without time zone,
803 finished_at timestamp without time zone,
804 description character varying(524288)
809 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
812 CREATE SEQUENCE pipeline_instances_id_seq
821 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
824 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
828 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
831 CREATE TABLE pipeline_templates (
833 uuid character varying(255),
834 owner_uuid character varying(255),
835 created_at timestamp without time zone NOT NULL,
836 modified_by_client_uuid character varying(255),
837 modified_by_user_uuid character varying(255),
838 modified_at timestamp without time zone,
839 name character varying(255),
841 updated_at timestamp without time zone NOT NULL,
842 description character varying(524288)
847 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
850 CREATE SEQUENCE pipeline_templates_id_seq
859 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
862 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
866 -- Name: repositories; Type: TABLE; Schema: public; Owner: -; Tablespace:
869 CREATE TABLE repositories (
871 uuid character varying(255) NOT NULL,
872 owner_uuid character varying(255) NOT NULL,
873 modified_by_client_uuid character varying(255),
874 modified_by_user_uuid character varying(255),
875 modified_at timestamp without time zone,
876 name character varying(255),
877 created_at timestamp without time zone NOT NULL,
878 updated_at timestamp without time zone NOT NULL
883 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
886 CREATE SEQUENCE repositories_id_seq
895 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
898 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
902 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
905 CREATE TABLE schema_migrations (
906 version character varying(255) NOT NULL
911 -- Name: specimens; Type: TABLE; Schema: public; Owner: -; Tablespace:
914 CREATE TABLE specimens (
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 material character varying(255),
923 updated_at timestamp without time zone NOT NULL,
929 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
932 CREATE SEQUENCE specimens_id_seq
941 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
944 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
948 -- Name: traits; Type: TABLE; Schema: public; Owner: -; Tablespace:
951 CREATE TABLE traits (
953 uuid character varying(255) NOT NULL,
954 owner_uuid character varying(255) NOT NULL,
955 modified_by_client_uuid character varying(255),
956 modified_by_user_uuid character varying(255),
957 modified_at timestamp without time zone,
958 name character varying(255),
960 created_at timestamp without time zone NOT NULL,
961 updated_at timestamp without time zone NOT NULL
966 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
969 CREATE SEQUENCE traits_id_seq
978 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
981 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
985 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
990 uuid character varying(255),
991 owner_uuid character varying(255) NOT NULL,
992 created_at timestamp without time zone NOT NULL,
993 modified_by_client_uuid character varying(255),
994 modified_by_user_uuid character varying(255),
995 modified_at timestamp without time zone,
996 email character varying(255),
997 first_name character varying(255),
998 last_name character varying(255),
999 identity_url character varying(255),
1002 updated_at timestamp without time zone NOT NULL,
1003 default_owner_uuid character varying(255),
1004 is_active boolean DEFAULT false,
1005 username character varying(255)
1010 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1013 CREATE SEQUENCE users_id_seq
1022 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1025 ALTER SEQUENCE users_id_seq OWNED BY users.id;
1029 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -; Tablespace:
1032 CREATE TABLE virtual_machines (
1033 id integer NOT NULL,
1034 uuid character varying(255) NOT NULL,
1035 owner_uuid character varying(255) NOT NULL,
1036 modified_by_client_uuid character varying(255),
1037 modified_by_user_uuid character varying(255),
1038 modified_at timestamp without time zone,
1039 hostname character varying(255),
1040 created_at timestamp without time zone NOT NULL,
1041 updated_at timestamp without time zone NOT NULL
1046 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1049 CREATE SEQUENCE virtual_machines_id_seq
1058 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1061 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
1065 -- Name: workflows; Type: TABLE; Schema: public; Owner: -; Tablespace:
1068 CREATE TABLE workflows (
1069 id integer NOT NULL,
1070 uuid character varying(255),
1071 owner_uuid character varying(255),
1072 created_at timestamp without time zone NOT NULL,
1073 modified_at timestamp without time zone,
1074 modified_by_client_uuid character varying(255),
1075 modified_by_user_uuid character varying(255),
1076 name character varying(255),
1079 updated_at timestamp without time zone NOT NULL
1084 -- Name: workflows_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1087 CREATE SEQUENCE workflows_id_seq
1096 -- Name: workflows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1099 ALTER SEQUENCE workflows_id_seq OWNED BY workflows.id;
1103 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1106 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
1110 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1113 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
1117 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1120 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
1124 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1127 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
1131 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1134 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
1138 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1141 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
1145 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1148 ALTER TABLE ONLY container_requests ALTER COLUMN id SET DEFAULT nextval('container_requests_id_seq'::regclass);
1152 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1155 ALTER TABLE ONLY containers ALTER COLUMN id SET DEFAULT nextval('containers_id_seq'::regclass);
1159 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1162 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
1166 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1169 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
1173 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1176 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1180 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1183 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1187 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1190 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1194 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1197 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1201 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1204 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1208 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1211 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1215 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1218 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1222 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1225 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1229 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1232 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1236 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1239 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1243 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1246 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1250 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1253 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1257 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1260 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1264 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1267 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1271 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1274 ALTER TABLE ONLY workflows ALTER COLUMN id SET DEFAULT nextval('workflows_id_seq'::regclass);
1278 -- Name: api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1281 ALTER TABLE ONLY api_client_authorizations
1282 ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1286 -- Name: api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1289 ALTER TABLE ONLY api_clients
1290 ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1294 -- Name: authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1297 ALTER TABLE ONLY authorized_keys
1298 ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1302 -- Name: collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1305 ALTER TABLE ONLY collections
1306 ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1310 -- Name: commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1313 ALTER TABLE ONLY commit_ancestors
1314 ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1318 -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1321 ALTER TABLE ONLY commits
1322 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1326 -- Name: container_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1329 ALTER TABLE ONLY container_requests
1330 ADD CONSTRAINT container_requests_pkey PRIMARY KEY (id);
1334 -- Name: containers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1337 ALTER TABLE ONLY containers
1338 ADD CONSTRAINT containers_pkey PRIMARY KEY (id);
1342 -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1345 ALTER TABLE ONLY groups
1346 ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1350 -- Name: humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1353 ALTER TABLE ONLY humans
1354 ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1358 -- Name: job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1361 ALTER TABLE ONLY job_tasks
1362 ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1366 -- Name: jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1369 ALTER TABLE ONLY jobs
1370 ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1374 -- Name: keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1377 ALTER TABLE ONLY keep_disks
1378 ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1382 -- Name: keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1385 ALTER TABLE ONLY keep_services
1386 ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1390 -- Name: links_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1393 ALTER TABLE ONLY links
1394 ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1398 -- Name: logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1401 ALTER TABLE ONLY logs
1402 ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1406 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1409 ALTER TABLE ONLY nodes
1410 ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1414 -- Name: pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1417 ALTER TABLE ONLY pipeline_instances
1418 ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1422 -- Name: pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1425 ALTER TABLE ONLY pipeline_templates
1426 ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1430 -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1433 ALTER TABLE ONLY repositories
1434 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1438 -- Name: specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1441 ALTER TABLE ONLY specimens
1442 ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1446 -- Name: traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1449 ALTER TABLE ONLY traits
1450 ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1454 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1457 ALTER TABLE ONLY users
1458 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1462 -- Name: virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1465 ALTER TABLE ONLY virtual_machines
1466 ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1470 -- Name: workflows_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1473 ALTER TABLE ONLY workflows
1474 ADD CONSTRAINT workflows_pkey PRIMARY KEY (id);
1478 -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1481 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);
1485 -- Name: api_clients_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1488 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);
1492 -- Name: authorized_keys_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1495 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);
1499 -- Name: collection_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1502 CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree (owner_uuid, name) WHERE (expires_at IS NULL);
1506 -- Name: collections_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
1509 CREATE INDEX collections_full_text_search_idx ON collections USING gin (to_tsvector('english'::regconfig, (((((((((((((((((' '::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(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)));
1513 -- Name: collections_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1516 CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, uuid, name);
1520 -- Name: container_requests_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
1523 CREATE INDEX container_requests_full_text_search_idx ON container_requests USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((((((((((((((((' '::text || (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(mounts, ''::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))));
1527 -- Name: container_requests_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1530 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);
1534 -- Name: containers_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1537 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);
1541 -- Name: groups_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
1544 CREATE INDEX groups_full_text_search_idx ON groups USING gin (to_tsvector('english'::regconfig, (((((((((((((' '::text || (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)));
1548 -- Name: groups_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1551 CREATE UNIQUE INDEX groups_owner_uuid_name_unique ON groups USING btree (owner_uuid, name);
1555 -- Name: groups_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1558 CREATE INDEX groups_search_index ON groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, group_class);
1562 -- Name: humans_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1565 CREATE INDEX humans_search_index ON humans USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid);
1569 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1572 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1576 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
1579 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1583 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1586 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1590 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1593 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1597 -- Name: index_api_client_authorizations_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1600 CREATE UNIQUE INDEX index_api_client_authorizations_on_uuid ON api_client_authorizations USING btree (uuid);
1604 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1607 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1611 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1614 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1618 -- Name: index_api_clients_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1621 CREATE INDEX index_api_clients_on_owner_uuid ON api_clients USING btree (owner_uuid);
1625 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1628 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1632 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1635 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1639 -- Name: index_authorized_keys_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1642 CREATE INDEX index_authorized_keys_on_owner_uuid ON authorized_keys USING btree (owner_uuid);
1646 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1649 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1653 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1656 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1660 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1663 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1667 -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1670 CREATE INDEX index_collections_on_owner_uuid ON collections USING btree (owner_uuid);
1674 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1677 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1681 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -; Tablespace:
1684 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1688 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -; Tablespace:
1691 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1695 -- Name: index_container_requests_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1698 CREATE INDEX index_container_requests_on_owner_uuid ON container_requests USING btree (owner_uuid);
1702 -- Name: index_container_requests_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1705 CREATE UNIQUE INDEX index_container_requests_on_uuid ON container_requests USING btree (uuid);
1709 -- Name: index_containers_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1712 CREATE INDEX index_containers_on_owner_uuid ON containers USING btree (owner_uuid);
1716 -- Name: index_containers_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1719 CREATE UNIQUE INDEX index_containers_on_uuid ON containers USING btree (uuid);
1723 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1726 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1730 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -; Tablespace:
1733 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1737 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1740 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1744 -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1747 CREATE INDEX index_groups_on_owner_uuid ON groups USING btree (owner_uuid);
1751 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1754 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1758 -- Name: index_humans_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1761 CREATE INDEX index_humans_on_owner_uuid ON humans USING btree (owner_uuid);
1765 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1768 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1772 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1775 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1779 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1782 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1786 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1789 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1793 -- Name: index_job_tasks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1796 CREATE INDEX index_job_tasks_on_owner_uuid ON job_tasks USING btree (owner_uuid);
1800 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -; Tablespace:
1803 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
1807 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -; Tablespace:
1810 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
1814 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1817 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
1821 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1824 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
1828 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1831 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
1835 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1838 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
1842 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -; Tablespace:
1845 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
1849 -- Name: index_jobs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1852 CREATE INDEX index_jobs_on_owner_uuid ON jobs USING btree (owner_uuid);
1856 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -; Tablespace:
1859 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
1863 -- Name: index_jobs_on_script_parameters_digest; Type: INDEX; Schema: public; Owner: -; Tablespace:
1866 CREATE INDEX index_jobs_on_script_parameters_digest ON jobs USING btree (script_parameters_digest);
1870 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1873 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
1877 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1880 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
1884 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1887 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
1891 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1894 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
1898 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1901 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
1905 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1908 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
1912 -- Name: index_keep_disks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1915 CREATE INDEX index_keep_disks_on_owner_uuid ON keep_disks USING btree (owner_uuid);
1919 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1922 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
1926 -- Name: index_keep_services_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1929 CREATE INDEX index_keep_services_on_owner_uuid ON keep_services USING btree (owner_uuid);
1933 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1936 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
1940 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1943 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
1947 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1950 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
1954 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1957 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
1961 -- Name: index_links_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1964 CREATE INDEX index_links_on_owner_uuid ON links USING btree (owner_uuid);
1968 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1971 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
1975 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1978 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
1982 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1985 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
1989 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1992 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
1996 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
1999 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
2003 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2006 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
2010 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2013 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
2017 -- Name: index_logs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2020 CREATE INDEX index_logs_on_owner_uuid ON logs USING btree (owner_uuid);
2024 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -; Tablespace:
2027 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
2031 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2034 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
2038 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2041 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
2045 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
2048 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
2052 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2055 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
2059 -- Name: index_nodes_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2062 CREATE INDEX index_nodes_on_owner_uuid ON nodes USING btree (owner_uuid);
2066 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -; Tablespace:
2069 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
2073 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2076 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
2080 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2083 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
2087 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2090 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
2094 -- Name: index_pipeline_instances_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2097 CREATE INDEX index_pipeline_instances_on_owner_uuid ON pipeline_instances USING btree (owner_uuid);
2101 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2104 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
2108 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2111 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
2115 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2118 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
2122 -- Name: index_pipeline_templates_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2125 CREATE INDEX index_pipeline_templates_on_owner_uuid ON pipeline_templates USING btree (owner_uuid);
2129 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2132 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
2136 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
2139 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
2143 -- Name: index_repositories_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2146 CREATE INDEX index_repositories_on_owner_uuid ON repositories USING btree (owner_uuid);
2150 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2153 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
2157 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2160 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
2164 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2167 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
2171 -- Name: index_specimens_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2174 CREATE INDEX index_specimens_on_owner_uuid ON specimens USING btree (owner_uuid);
2178 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2181 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
2185 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
2188 CREATE INDEX index_traits_on_name ON traits USING btree (name);
2192 -- Name: index_traits_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2195 CREATE INDEX index_traits_on_owner_uuid ON traits USING btree (owner_uuid);
2199 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2202 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
2206 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2209 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
2213 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2216 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
2220 -- Name: index_users_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2223 CREATE INDEX index_users_on_owner_uuid ON users USING btree (owner_uuid);
2227 -- Name: index_users_on_username; Type: INDEX; Schema: public; Owner: -; Tablespace:
2230 CREATE UNIQUE INDEX index_users_on_username ON users USING btree (username);
2234 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2237 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
2241 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
2244 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
2248 -- Name: index_virtual_machines_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2251 CREATE INDEX index_virtual_machines_on_owner_uuid ON virtual_machines USING btree (owner_uuid);
2255 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2258 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
2262 -- Name: index_workflows_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2265 CREATE INDEX index_workflows_on_owner_uuid ON workflows USING btree (owner_uuid);
2269 -- Name: index_workflows_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2272 CREATE UNIQUE INDEX index_workflows_on_uuid ON workflows USING btree (uuid);
2276 -- Name: job_tasks_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2279 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);
2283 -- Name: jobs_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2286 CREATE INDEX jobs_full_text_search_idx ON jobs USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((((((((((((((((((((((' '::text || (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)));
2290 -- Name: jobs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2293 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);
2297 -- Name: keep_disks_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2300 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);
2304 -- Name: keep_services_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2307 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);
2311 -- Name: links_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2314 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);
2318 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
2321 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
2325 -- Name: logs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2328 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);
2332 -- Name: nodes_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2335 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);
2339 -- Name: pipeline_instances_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2342 CREATE INDEX pipeline_instances_full_text_search_idx ON pipeline_instances USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((' '::text || (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)));
2346 -- Name: pipeline_instances_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2349 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);
2353 -- Name: pipeline_template_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
2356 CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON pipeline_templates USING btree (owner_uuid, name);
2360 -- Name: pipeline_templates_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2363 CREATE INDEX pipeline_templates_full_text_search_idx ON pipeline_templates USING gin (to_tsvector('english'::regconfig, (((((((((((((' '::text || (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)));
2367 -- Name: pipeline_templates_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2370 CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2374 -- Name: repositories_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2377 CREATE INDEX repositories_search_index ON repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2381 -- Name: specimens_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2384 CREATE INDEX specimens_search_index ON specimens USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, material);
2388 -- Name: traits_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2391 CREATE INDEX traits_search_index ON traits USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2395 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
2398 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
2402 -- Name: users_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2405 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);
2409 -- Name: virtual_machines_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2412 CREATE INDEX virtual_machines_search_index ON virtual_machines USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname);
2416 -- Name: workflows_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2419 CREATE INDEX workflows_full_text_search_idx ON workflows USING gin (to_tsvector('english'::regconfig, (((((((((((((' '::text || (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(definition, ''::text))));
2423 -- Name: workflows_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2426 CREATE INDEX workflows_search_idx ON workflows USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2430 -- PostgreSQL database dump complete
2433 SET search_path TO "$user",public;
2435 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
2437 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
2439 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
2441 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
2443 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
2445 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
2447 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
2449 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
2451 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
2453 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
2455 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
2457 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
2459 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
2461 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
2463 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
2465 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
2467 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
2469 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
2471 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
2473 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
2475 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
2477 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
2479 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
2481 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
2483 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
2485 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
2487 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
2489 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
2491 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
2493 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
2495 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
2497 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
2499 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
2501 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
2503 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
2505 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
2507 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
2509 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
2511 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
2513 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
2515 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
2517 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
2519 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
2521 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
2523 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
2525 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
2527 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
2529 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
2531 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
2533 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
2535 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
2537 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
2539 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
2541 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
2543 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
2545 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
2547 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
2549 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
2551 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
2553 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
2555 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
2557 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
2559 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
2561 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
2563 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
2565 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
2567 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
2569 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
2571 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
2573 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
2575 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
2577 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
2579 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
2581 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
2583 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
2585 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
2587 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
2589 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
2591 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
2593 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
2595 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
2597 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
2599 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
2601 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
2603 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
2605 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
2607 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
2609 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
2611 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
2613 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
2615 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
2617 INSERT INTO schema_migrations (version) VALUES ('20140817035914');
2619 INSERT INTO schema_migrations (version) VALUES ('20140818125735');
2621 INSERT INTO schema_migrations (version) VALUES ('20140826180337');
2623 INSERT INTO schema_migrations (version) VALUES ('20140828141043');
2625 INSERT INTO schema_migrations (version) VALUES ('20140909183946');
2627 INSERT INTO schema_migrations (version) VALUES ('20140911221252');
2629 INSERT INTO schema_migrations (version) VALUES ('20140918141529');
2631 INSERT INTO schema_migrations (version) VALUES ('20140918153541');
2633 INSERT INTO schema_migrations (version) VALUES ('20140918153705');
2635 INSERT INTO schema_migrations (version) VALUES ('20140924091559');
2637 INSERT INTO schema_migrations (version) VALUES ('20141111133038');
2639 INSERT INTO schema_migrations (version) VALUES ('20141208164553');
2641 INSERT INTO schema_migrations (version) VALUES ('20141208174553');
2643 INSERT INTO schema_migrations (version) VALUES ('20141208174653');
2645 INSERT INTO schema_migrations (version) VALUES ('20141208185217');
2647 INSERT INTO schema_migrations (version) VALUES ('20150122175935');
2649 INSERT INTO schema_migrations (version) VALUES ('20150123142953');
2651 INSERT INTO schema_migrations (version) VALUES ('20150203180223');
2653 INSERT INTO schema_migrations (version) VALUES ('20150206210804');
2655 INSERT INTO schema_migrations (version) VALUES ('20150206230342');
2657 INSERT INTO schema_migrations (version) VALUES ('20150216193428');
2659 INSERT INTO schema_migrations (version) VALUES ('20150303210106');
2661 INSERT INTO schema_migrations (version) VALUES ('20150312151136');
2663 INSERT INTO schema_migrations (version) VALUES ('20150317132720');
2665 INSERT INTO schema_migrations (version) VALUES ('20150324152204');
2667 INSERT INTO schema_migrations (version) VALUES ('20150423145759');
2669 INSERT INTO schema_migrations (version) VALUES ('20150512193020');
2671 INSERT INTO schema_migrations (version) VALUES ('20150526180251');
2673 INSERT INTO schema_migrations (version) VALUES ('20151202151426');
2675 INSERT INTO schema_migrations (version) VALUES ('20151215134304');
2677 INSERT INTO schema_migrations (version) VALUES ('20151229214707');
2679 INSERT INTO schema_migrations (version) VALUES ('20160208210629');
2681 INSERT INTO schema_migrations (version) VALUES ('20160209155729');
2683 INSERT INTO schema_migrations (version) VALUES ('20160324144017');
2685 INSERT INTO schema_migrations (version) VALUES ('20160506175108');
2687 INSERT INTO schema_migrations (version) VALUES ('20160509143250');
2689 INSERT INTO schema_migrations (version) VALUES ('20160808151559');
2691 INSERT INTO schema_migrations (version) VALUES ('20160819195557');
2693 INSERT INTO schema_migrations (version) VALUES ('20160819195725');
2695 INSERT INTO schema_migrations (version) VALUES ('20160901210110');
2697 INSERT INTO schema_migrations (version) VALUES ('20160909181442');
2699 INSERT INTO schema_migrations (version) VALUES ('20160926194129');
2701 INSERT INTO schema_migrations (version) VALUES ('20161019171346');
2703 INSERT INTO schema_migrations (version) VALUES ('20161111143147');
2705 INSERT INTO schema_migrations (version) VALUES ('20161115171221');
2707 INSERT INTO schema_migrations (version) VALUES ('20161115174218');