1 -- Copyright (C) The Arvados Authors. All rights reserved.
3 -- SPDX-License-Identifier: AGPL-3.0
5 SET statement_timeout = 0;
6 SET client_encoding = 'UTF8';
7 SET standard_conforming_strings = on;
8 SELECT pg_catalog.set_config('search_path', '', false);
9 SET check_function_bodies = false;
10 SET client_min_messages = warning;
13 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
16 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
20 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
23 -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
26 SET default_tablespace = '';
28 SET default_with_oids = false;
31 -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: -
34 CREATE TABLE public.api_client_authorizations (
36 api_token character varying(255) NOT NULL,
37 api_client_id integer NOT NULL,
38 user_id integer NOT NULL,
39 created_by_ip_address character varying(255),
40 last_used_by_ip_address character varying(255),
41 last_used_at timestamp without time zone,
42 expires_at timestamp without time zone,
43 created_at timestamp without time zone NOT NULL,
44 updated_at timestamp without time zone NOT NULL,
45 default_owner_uuid character varying(255),
46 scopes text DEFAULT '["all"]'::text,
47 uuid character varying(255) NOT NULL
52 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
55 CREATE SEQUENCE public.api_client_authorizations_id_seq
64 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
67 ALTER SEQUENCE public.api_client_authorizations_id_seq OWNED BY public.api_client_authorizations.id;
71 -- Name: api_clients; Type: TABLE; Schema: public; Owner: -
74 CREATE TABLE public.api_clients (
76 uuid character varying(255),
77 owner_uuid character varying(255),
78 modified_by_client_uuid character varying(255),
79 modified_by_user_uuid character varying(255),
80 modified_at timestamp without time zone,
81 name character varying(255),
82 url_prefix character varying(255),
83 created_at timestamp without time zone NOT NULL,
84 updated_at timestamp without time zone NOT NULL,
85 is_trusted boolean DEFAULT false
90 -- Name: api_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: -
93 CREATE SEQUENCE public.api_clients_id_seq
102 -- Name: api_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
105 ALTER SEQUENCE public.api_clients_id_seq OWNED BY public.api_clients.id;
109 -- Name: authorized_keys; Type: TABLE; Schema: public; Owner: -
112 CREATE TABLE public.authorized_keys (
114 uuid character varying(255) NOT NULL,
115 owner_uuid character varying(255) NOT NULL,
116 modified_by_client_uuid character varying(255),
117 modified_by_user_uuid character varying(255),
118 modified_at timestamp without time zone,
119 name character varying(255),
120 key_type character varying(255),
121 authorized_user_uuid character varying(255),
123 expires_at timestamp without time zone,
124 created_at timestamp without time zone NOT NULL,
125 updated_at timestamp without time zone NOT NULL
130 -- Name: authorized_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
133 CREATE SEQUENCE public.authorized_keys_id_seq
142 -- Name: authorized_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
145 ALTER SEQUENCE public.authorized_keys_id_seq OWNED BY public.authorized_keys.id;
149 -- Name: collections; Type: TABLE; Schema: public; Owner: -
152 CREATE TABLE public.collections (
154 owner_uuid character varying(255),
155 created_at timestamp without time zone NOT NULL,
156 modified_by_client_uuid character varying(255),
157 modified_by_user_uuid character varying(255),
158 modified_at timestamp without time zone,
159 portable_data_hash character varying(255),
160 replication_desired integer,
161 replication_confirmed_at timestamp without time zone,
162 replication_confirmed integer,
163 updated_at timestamp without time zone NOT NULL,
164 uuid character varying(255),
166 name character varying(255),
167 description character varying(524288),
169 delete_at timestamp without time zone,
171 trash_at timestamp without time zone,
172 is_trashed boolean DEFAULT false NOT NULL,
173 storage_classes_desired jsonb DEFAULT '["default"]'::jsonb,
174 storage_classes_confirmed jsonb DEFAULT '[]'::jsonb,
175 storage_classes_confirmed_at timestamp without time zone,
176 current_version_uuid character varying,
177 version integer DEFAULT 1 NOT NULL,
178 preserve_version boolean DEFAULT false,
179 file_count integer DEFAULT 0 NOT NULL,
180 file_size_total integer DEFAULT 0 NOT NULL
185 -- Name: collections_id_seq; Type: SEQUENCE; Schema: public; Owner: -
188 CREATE SEQUENCE public.collections_id_seq
197 -- Name: collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
200 ALTER SEQUENCE public.collections_id_seq OWNED BY public.collections.id;
204 -- Name: commit_ancestors; Type: TABLE; Schema: public; Owner: -
207 CREATE TABLE public.commit_ancestors (
209 repository_name character varying(255),
210 descendant character varying(255) NOT NULL,
211 ancestor character varying(255) NOT NULL,
212 "is" boolean DEFAULT false NOT NULL,
213 created_at timestamp without time zone NOT NULL,
214 updated_at timestamp without time zone NOT NULL
219 -- Name: commit_ancestors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
222 CREATE SEQUENCE public.commit_ancestors_id_seq
231 -- Name: commit_ancestors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
234 ALTER SEQUENCE public.commit_ancestors_id_seq OWNED BY public.commit_ancestors.id;
238 -- Name: commits; Type: TABLE; Schema: public; Owner: -
241 CREATE TABLE public.commits (
243 repository_name character varying(255),
244 sha1 character varying(255),
245 message character varying(255),
246 created_at timestamp without time zone NOT NULL,
247 updated_at timestamp without time zone NOT NULL
252 -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
255 CREATE SEQUENCE public.commits_id_seq
264 -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
267 ALTER SEQUENCE public.commits_id_seq OWNED BY public.commits.id;
271 -- Name: container_requests; Type: TABLE; Schema: public; Owner: -
274 CREATE TABLE public.container_requests (
276 uuid character varying(255),
277 owner_uuid character varying(255),
278 created_at timestamp without time zone NOT NULL,
279 modified_at timestamp without time zone,
280 modified_by_client_uuid character varying(255),
281 modified_by_user_uuid character varying(255),
282 name character varying(255),
285 state character varying(255),
286 requesting_container_uuid character varying(255),
287 container_uuid character varying(255),
288 container_count_max integer,
290 runtime_constraints text,
291 container_image character varying(255),
293 cwd character varying(255),
295 output_path character varying(255),
297 expires_at timestamp without time zone,
299 updated_at timestamp without time zone NOT NULL,
300 container_count integer DEFAULT 0,
301 use_existing boolean DEFAULT true,
302 scheduling_parameters text,
303 output_uuid character varying(255),
304 log_uuid character varying(255),
305 output_name character varying(255) DEFAULT NULL::character varying,
306 output_ttl integer DEFAULT 0 NOT NULL,
307 secret_mounts jsonb DEFAULT '{}'::jsonb,
313 -- Name: container_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
316 CREATE SEQUENCE public.container_requests_id_seq
325 -- Name: container_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
328 ALTER SEQUENCE public.container_requests_id_seq OWNED BY public.container_requests.id;
332 -- Name: containers; Type: TABLE; Schema: public; Owner: -
335 CREATE TABLE public.containers (
337 uuid character varying(255),
338 owner_uuid character varying(255),
339 created_at timestamp without time zone NOT NULL,
340 modified_at timestamp without time zone,
341 modified_by_client_uuid character varying(255),
342 modified_by_user_uuid character varying(255),
343 state character varying(255),
344 started_at timestamp without time zone,
345 finished_at timestamp without time zone,
346 log character varying(255),
348 cwd character varying(255),
350 output_path character varying(255),
352 runtime_constraints text,
353 output character varying(255),
354 container_image character varying(255),
355 progress double precision,
357 updated_at timestamp without time zone NOT NULL,
359 auth_uuid character varying(255),
360 locked_by_uuid character varying(255),
361 scheduling_parameters text,
362 secret_mounts jsonb DEFAULT '{}'::jsonb,
363 secret_mounts_md5 character varying DEFAULT '99914b932bd37a50b983c5e7c90ae93b'::character varying,
364 runtime_status jsonb DEFAULT '{}'::jsonb,
365 runtime_user_uuid text,
366 runtime_auth_scopes jsonb,
368 lock_count integer DEFAULT 0 NOT NULL
373 -- Name: containers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
376 CREATE SEQUENCE public.containers_id_seq
385 -- Name: containers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
388 ALTER SEQUENCE public.containers_id_seq OWNED BY public.containers.id;
392 -- Name: groups; Type: TABLE; Schema: public; Owner: -
395 CREATE TABLE public.groups (
397 uuid character varying(255),
398 owner_uuid character varying(255),
399 created_at timestamp without time zone NOT NULL,
400 modified_by_client_uuid character varying(255),
401 modified_by_user_uuid character varying(255),
402 modified_at timestamp without time zone,
403 name character varying(255) NOT NULL,
404 description character varying(524288),
405 updated_at timestamp without time zone NOT NULL,
406 group_class character varying(255),
407 trash_at timestamp without time zone,
408 is_trashed boolean DEFAULT false NOT NULL,
409 delete_at timestamp without time zone,
410 properties jsonb DEFAULT '{}'::jsonb
415 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
418 CREATE SEQUENCE public.groups_id_seq
427 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
430 ALTER SEQUENCE public.groups_id_seq OWNED BY public.groups.id;
434 -- Name: humans; Type: TABLE; Schema: public; Owner: -
437 CREATE TABLE public.humans (
439 uuid character varying(255) NOT NULL,
440 owner_uuid character varying(255) NOT NULL,
441 modified_by_client_uuid character varying(255),
442 modified_by_user_uuid character varying(255),
443 modified_at timestamp without time zone,
445 created_at timestamp without time zone NOT NULL,
446 updated_at timestamp without time zone NOT NULL
451 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
454 CREATE SEQUENCE public.humans_id_seq
463 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
466 ALTER SEQUENCE public.humans_id_seq OWNED BY public.humans.id;
470 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -
473 CREATE TABLE public.job_tasks (
475 uuid character varying(255),
476 owner_uuid character varying(255),
477 modified_by_client_uuid character varying(255),
478 modified_by_user_uuid character varying(255),
479 modified_at timestamp without time zone,
480 job_uuid character varying(255),
484 progress double precision,
486 created_at timestamp without time zone NOT NULL,
487 updated_at timestamp without time zone NOT NULL,
488 created_by_job_task_uuid character varying(255),
490 started_at timestamp without time zone,
491 finished_at timestamp without time zone
496 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
499 CREATE SEQUENCE public.job_tasks_id_seq
508 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
511 ALTER SEQUENCE public.job_tasks_id_seq OWNED BY public.job_tasks.id;
515 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
518 CREATE SEQUENCE public.job_tasks_qsequence_seq
527 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
530 ALTER SEQUENCE public.job_tasks_qsequence_seq OWNED BY public.job_tasks.qsequence;
534 -- Name: jobs; Type: TABLE; Schema: public; Owner: -
537 CREATE TABLE public.jobs (
539 uuid character varying(255),
540 owner_uuid character varying(255),
541 modified_by_client_uuid character varying(255),
542 modified_by_user_uuid character varying(255),
543 modified_at timestamp without time zone,
544 submit_id character varying(255),
545 script character varying(255),
546 script_version character varying(255),
547 script_parameters text,
548 cancelled_by_client_uuid character varying(255),
549 cancelled_by_user_uuid character varying(255),
550 cancelled_at timestamp without time zone,
551 started_at timestamp without time zone,
552 finished_at timestamp without time zone,
555 output character varying(255),
556 created_at timestamp without time zone NOT NULL,
557 updated_at timestamp without time zone NOT NULL,
558 is_locked_by_uuid character varying(255),
559 log character varying(255),
561 runtime_constraints text,
562 nondeterministic boolean,
563 repository character varying(255),
564 supplied_script_version character varying(255),
565 docker_image_locator character varying(255),
566 priority integer DEFAULT 0 NOT NULL,
567 description character varying(524288),
568 state character varying(255),
569 arvados_sdk_version character varying(255),
571 script_parameters_digest character varying(255)
576 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
579 CREATE SEQUENCE public.jobs_id_seq
588 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
591 ALTER SEQUENCE public.jobs_id_seq OWNED BY public.jobs.id;
595 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -
598 CREATE TABLE public.keep_disks (
600 uuid character varying(255) NOT NULL,
601 owner_uuid character varying(255) NOT NULL,
602 modified_by_client_uuid character varying(255),
603 modified_by_user_uuid character varying(255),
604 modified_at timestamp without time zone,
605 ping_secret character varying(255) NOT NULL,
606 node_uuid character varying(255),
607 filesystem_uuid character varying(255),
610 is_readable boolean DEFAULT true NOT NULL,
611 is_writable boolean DEFAULT true NOT NULL,
612 last_read_at timestamp without time zone,
613 last_write_at timestamp without time zone,
614 last_ping_at timestamp without time zone,
615 created_at timestamp without time zone NOT NULL,
616 updated_at timestamp without time zone NOT NULL,
617 keep_service_uuid character varying(255)
622 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
625 CREATE SEQUENCE public.keep_disks_id_seq
634 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
637 ALTER SEQUENCE public.keep_disks_id_seq OWNED BY public.keep_disks.id;
641 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -
644 CREATE TABLE public.keep_services (
646 uuid character varying(255) NOT NULL,
647 owner_uuid character varying(255) NOT NULL,
648 modified_by_client_uuid character varying(255),
649 modified_by_user_uuid character varying(255),
650 modified_at timestamp without time zone,
651 service_host character varying(255),
652 service_port integer,
653 service_ssl_flag boolean,
654 service_type character varying(255),
655 created_at timestamp without time zone NOT NULL,
656 updated_at timestamp without time zone NOT NULL,
657 read_only boolean DEFAULT false NOT NULL
662 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
665 CREATE SEQUENCE public.keep_services_id_seq
674 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
677 ALTER SEQUENCE public.keep_services_id_seq OWNED BY public.keep_services.id;
681 -- Name: links; Type: TABLE; Schema: public; Owner: -
684 CREATE TABLE public.links (
686 uuid character varying(255),
687 owner_uuid character varying(255),
688 created_at timestamp without time zone NOT NULL,
689 modified_by_client_uuid character varying(255),
690 modified_by_user_uuid character varying(255),
691 modified_at timestamp without time zone,
692 tail_uuid character varying(255),
693 link_class character varying(255),
694 name character varying(255),
695 head_uuid character varying(255),
697 updated_at timestamp without time zone NOT NULL
702 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
705 CREATE SEQUENCE public.links_id_seq
714 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
717 ALTER SEQUENCE public.links_id_seq OWNED BY public.links.id;
721 -- Name: logs; Type: TABLE; Schema: public; Owner: -
724 CREATE TABLE public.logs (
726 uuid character varying(255),
727 owner_uuid character varying(255),
728 modified_by_client_uuid character varying(255),
729 modified_by_user_uuid character varying(255),
730 object_uuid character varying(255),
731 event_at timestamp without time zone,
732 event_type character varying(255),
735 created_at timestamp without time zone NOT NULL,
736 updated_at timestamp without time zone NOT NULL,
737 modified_at timestamp without time zone,
738 object_owner_uuid character varying(255)
743 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
746 CREATE SEQUENCE public.logs_id_seq
755 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
758 ALTER SEQUENCE public.logs_id_seq OWNED BY public.logs.id;
762 -- Name: users; Type: TABLE; Schema: public; Owner: -
765 CREATE TABLE public.users (
767 uuid character varying(255),
768 owner_uuid character varying(255) NOT NULL,
769 created_at timestamp without time zone NOT NULL,
770 modified_by_client_uuid character varying(255),
771 modified_by_user_uuid character varying(255),
772 modified_at timestamp without time zone,
773 email character varying(255),
774 first_name character varying(255),
775 last_name character varying(255),
776 identity_url character varying(255),
779 updated_at timestamp without time zone NOT NULL,
780 default_owner_uuid character varying(255),
781 is_active boolean DEFAULT false,
782 username character varying(255),
783 redirect_to_user_uuid character varying
788 -- Name: materialized_permission_view; Type: MATERIALIZED VIEW; Schema: public; Owner: -
791 CREATE MATERIALIZED VIEW public.materialized_permission_view AS
792 WITH RECURSIVE perm_value(name, val) AS (
793 VALUES ('can_read'::text,(1)::smallint), ('can_login'::text,1), ('can_write'::text,2), ('can_manage'::text,3)
794 ), perm_edges(tail_uuid, head_uuid, val, follow, trashed) AS (
795 SELECT links.tail_uuid,
798 ((pv.val = 3) OR (groups.uuid IS NOT NULL)) AS follow,
799 (0)::smallint AS trashed,
800 (0)::smallint AS followtrash
802 LEFT JOIN perm_value pv ON ((pv.name = (links.name)::text)))
803 LEFT JOIN public.groups ON (((pv.val < 3) AND ((groups.uuid)::text = (links.head_uuid)::text))))
804 WHERE ((links.link_class)::text = 'permission'::text)
806 SELECT groups.owner_uuid,
811 WHEN ((groups.trash_at IS NOT NULL) AND (groups.trash_at < clock_timestamp())) THEN 1
816 ), perm(val, follow, user_uuid, target_uuid, trashed) AS (
817 SELECT (3)::smallint AS val,
819 (users.uuid)::character varying(32) AS user_uuid,
820 (users.uuid)::character varying(32) AS target_uuid,
821 (0)::smallint AS trashed
824 SELECT (LEAST((perm_1.val)::integer, edges.val))::smallint AS val,
827 (edges.head_uuid)::character varying(32) AS target_uuid,
828 ((GREATEST((perm_1.trashed)::integer, edges.trashed) * edges.followtrash))::smallint AS trashed
830 JOIN perm_edges edges ON ((perm_1.follow AND ((edges.tail_uuid)::text = (perm_1.target_uuid)::text))))
832 SELECT perm.user_uuid,
834 max(perm.val) AS perm_level,
836 WHEN true THEN perm.target_uuid
837 ELSE NULL::character varying
838 END AS target_owner_uuid,
839 max(perm.trashed) AS trashed
841 GROUP BY perm.user_uuid, perm.target_uuid,
843 WHEN true THEN perm.target_uuid
844 ELSE NULL::character varying
850 -- Name: nodes; Type: TABLE; Schema: public; Owner: -
853 CREATE TABLE public.nodes (
855 uuid character varying(255),
856 owner_uuid character varying(255),
857 created_at timestamp without time zone NOT NULL,
858 modified_by_client_uuid character varying(255),
859 modified_by_user_uuid character varying(255),
860 modified_at timestamp without time zone,
862 hostname character varying(255),
863 domain character varying(255),
864 ip_address character varying(255),
865 first_ping_at timestamp without time zone,
866 last_ping_at timestamp without time zone,
868 updated_at timestamp without time zone NOT NULL,
870 job_uuid character varying(255)
875 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
878 CREATE SEQUENCE public.nodes_id_seq
887 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
890 ALTER SEQUENCE public.nodes_id_seq OWNED BY public.nodes.id;
894 -- Name: permission_refresh_lock; Type: TABLE; Schema: public; Owner: -
897 CREATE TABLE public.permission_refresh_lock (
903 -- Name: permission_refresh_lock_id_seq; Type: SEQUENCE; Schema: public; Owner: -
906 CREATE SEQUENCE public.permission_refresh_lock_id_seq
915 -- Name: permission_refresh_lock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
918 ALTER SEQUENCE public.permission_refresh_lock_id_seq OWNED BY public.permission_refresh_lock.id;
922 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -
925 CREATE TABLE public.pipeline_instances (
927 uuid character varying(255),
928 owner_uuid character varying(255),
929 created_at timestamp without time zone NOT NULL,
930 modified_by_client_uuid character varying(255),
931 modified_by_user_uuid character varying(255),
932 modified_at timestamp without time zone,
933 pipeline_template_uuid character varying(255),
934 name character varying(255),
936 updated_at timestamp without time zone NOT NULL,
938 state character varying(255),
939 components_summary text,
940 started_at timestamp without time zone,
941 finished_at timestamp without time zone,
942 description character varying(524288)
947 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
950 CREATE SEQUENCE public.pipeline_instances_id_seq
959 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
962 ALTER SEQUENCE public.pipeline_instances_id_seq OWNED BY public.pipeline_instances.id;
966 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -
969 CREATE TABLE public.pipeline_templates (
971 uuid character varying(255),
972 owner_uuid character varying(255),
973 created_at timestamp without time zone NOT NULL,
974 modified_by_client_uuid character varying(255),
975 modified_by_user_uuid character varying(255),
976 modified_at timestamp without time zone,
977 name character varying(255),
979 updated_at timestamp without time zone NOT NULL,
980 description character varying(524288)
985 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
988 CREATE SEQUENCE public.pipeline_templates_id_seq
997 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1000 ALTER SEQUENCE public.pipeline_templates_id_seq OWNED BY public.pipeline_templates.id;
1004 -- Name: repositories; Type: TABLE; Schema: public; Owner: -
1007 CREATE TABLE public.repositories (
1008 id integer NOT NULL,
1009 uuid character varying(255) NOT NULL,
1010 owner_uuid character varying(255) NOT NULL,
1011 modified_by_client_uuid character varying(255),
1012 modified_by_user_uuid character varying(255),
1013 modified_at timestamp without time zone,
1014 name character varying(255),
1015 created_at timestamp without time zone NOT NULL,
1016 updated_at timestamp without time zone NOT NULL
1021 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1024 CREATE SEQUENCE public.repositories_id_seq
1033 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1036 ALTER SEQUENCE public.repositories_id_seq OWNED BY public.repositories.id;
1040 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
1043 CREATE TABLE public.schema_migrations (
1044 version character varying(255) NOT NULL
1049 -- Name: specimens; Type: TABLE; Schema: public; Owner: -
1052 CREATE TABLE public.specimens (
1053 id integer NOT NULL,
1054 uuid character varying(255),
1055 owner_uuid character varying(255),
1056 created_at timestamp without time zone NOT NULL,
1057 modified_by_client_uuid character varying(255),
1058 modified_by_user_uuid character varying(255),
1059 modified_at timestamp without time zone,
1060 material character varying(255),
1061 updated_at timestamp without time zone NOT NULL,
1067 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1070 CREATE SEQUENCE public.specimens_id_seq
1079 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1082 ALTER SEQUENCE public.specimens_id_seq OWNED BY public.specimens.id;
1086 -- Name: traits; Type: TABLE; Schema: public; Owner: -
1089 CREATE TABLE public.traits (
1090 id integer NOT NULL,
1091 uuid character varying(255) NOT NULL,
1092 owner_uuid character varying(255) NOT NULL,
1093 modified_by_client_uuid character varying(255),
1094 modified_by_user_uuid character varying(255),
1095 modified_at timestamp without time zone,
1096 name character varying(255),
1098 created_at timestamp without time zone NOT NULL,
1099 updated_at timestamp without time zone NOT NULL
1104 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1107 CREATE SEQUENCE public.traits_id_seq
1116 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1119 ALTER SEQUENCE public.traits_id_seq OWNED BY public.traits.id;
1123 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1126 CREATE SEQUENCE public.users_id_seq
1135 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1138 ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
1142 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -
1145 CREATE TABLE public.virtual_machines (
1146 id integer NOT NULL,
1147 uuid character varying(255) NOT NULL,
1148 owner_uuid character varying(255) NOT NULL,
1149 modified_by_client_uuid character varying(255),
1150 modified_by_user_uuid character varying(255),
1151 modified_at timestamp without time zone,
1152 hostname character varying(255),
1153 created_at timestamp without time zone NOT NULL,
1154 updated_at timestamp without time zone NOT NULL
1159 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1162 CREATE SEQUENCE public.virtual_machines_id_seq
1171 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1174 ALTER SEQUENCE public.virtual_machines_id_seq OWNED BY public.virtual_machines.id;
1178 -- Name: workflows; Type: TABLE; Schema: public; Owner: -
1181 CREATE TABLE public.workflows (
1182 id integer NOT NULL,
1183 uuid character varying(255),
1184 owner_uuid character varying(255),
1185 created_at timestamp without time zone NOT NULL,
1186 modified_at timestamp without time zone,
1187 modified_by_client_uuid character varying(255),
1188 modified_by_user_uuid character varying(255),
1189 name character varying(255),
1192 updated_at timestamp without time zone NOT NULL
1197 -- Name: workflows_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1200 CREATE SEQUENCE public.workflows_id_seq
1209 -- Name: workflows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1212 ALTER SEQUENCE public.workflows_id_seq OWNED BY public.workflows.id;
1216 -- Name: api_client_authorizations id; Type: DEFAULT; Schema: public; Owner: -
1219 ALTER TABLE ONLY public.api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('public.api_client_authorizations_id_seq'::regclass);
1223 -- Name: api_clients id; Type: DEFAULT; Schema: public; Owner: -
1226 ALTER TABLE ONLY public.api_clients ALTER COLUMN id SET DEFAULT nextval('public.api_clients_id_seq'::regclass);
1230 -- Name: authorized_keys id; Type: DEFAULT; Schema: public; Owner: -
1233 ALTER TABLE ONLY public.authorized_keys ALTER COLUMN id SET DEFAULT nextval('public.authorized_keys_id_seq'::regclass);
1237 -- Name: collections id; Type: DEFAULT; Schema: public; Owner: -
1240 ALTER TABLE ONLY public.collections ALTER COLUMN id SET DEFAULT nextval('public.collections_id_seq'::regclass);
1244 -- Name: commit_ancestors id; Type: DEFAULT; Schema: public; Owner: -
1247 ALTER TABLE ONLY public.commit_ancestors ALTER COLUMN id SET DEFAULT nextval('public.commit_ancestors_id_seq'::regclass);
1251 -- Name: commits id; Type: DEFAULT; Schema: public; Owner: -
1254 ALTER TABLE ONLY public.commits ALTER COLUMN id SET DEFAULT nextval('public.commits_id_seq'::regclass);
1258 -- Name: container_requests id; Type: DEFAULT; Schema: public; Owner: -
1261 ALTER TABLE ONLY public.container_requests ALTER COLUMN id SET DEFAULT nextval('public.container_requests_id_seq'::regclass);
1265 -- Name: containers id; Type: DEFAULT; Schema: public; Owner: -
1268 ALTER TABLE ONLY public.containers ALTER COLUMN id SET DEFAULT nextval('public.containers_id_seq'::regclass);
1272 -- Name: groups id; Type: DEFAULT; Schema: public; Owner: -
1275 ALTER TABLE ONLY public.groups ALTER COLUMN id SET DEFAULT nextval('public.groups_id_seq'::regclass);
1279 -- Name: humans id; Type: DEFAULT; Schema: public; Owner: -
1282 ALTER TABLE ONLY public.humans ALTER COLUMN id SET DEFAULT nextval('public.humans_id_seq'::regclass);
1286 -- Name: job_tasks id; Type: DEFAULT; Schema: public; Owner: -
1289 ALTER TABLE ONLY public.job_tasks ALTER COLUMN id SET DEFAULT nextval('public.job_tasks_id_seq'::regclass);
1293 -- Name: jobs id; Type: DEFAULT; Schema: public; Owner: -
1296 ALTER TABLE ONLY public.jobs ALTER COLUMN id SET DEFAULT nextval('public.jobs_id_seq'::regclass);
1300 -- Name: keep_disks id; Type: DEFAULT; Schema: public; Owner: -
1303 ALTER TABLE ONLY public.keep_disks ALTER COLUMN id SET DEFAULT nextval('public.keep_disks_id_seq'::regclass);
1307 -- Name: keep_services id; Type: DEFAULT; Schema: public; Owner: -
1310 ALTER TABLE ONLY public.keep_services ALTER COLUMN id SET DEFAULT nextval('public.keep_services_id_seq'::regclass);
1314 -- Name: links id; Type: DEFAULT; Schema: public; Owner: -
1317 ALTER TABLE ONLY public.links ALTER COLUMN id SET DEFAULT nextval('public.links_id_seq'::regclass);
1321 -- Name: logs id; Type: DEFAULT; Schema: public; Owner: -
1324 ALTER TABLE ONLY public.logs ALTER COLUMN id SET DEFAULT nextval('public.logs_id_seq'::regclass);
1328 -- Name: nodes id; Type: DEFAULT; Schema: public; Owner: -
1331 ALTER TABLE ONLY public.nodes ALTER COLUMN id SET DEFAULT nextval('public.nodes_id_seq'::regclass);
1335 -- Name: permission_refresh_lock id; Type: DEFAULT; Schema: public; Owner: -
1338 ALTER TABLE ONLY public.permission_refresh_lock ALTER COLUMN id SET DEFAULT nextval('public.permission_refresh_lock_id_seq'::regclass);
1342 -- Name: pipeline_instances id; Type: DEFAULT; Schema: public; Owner: -
1345 ALTER TABLE ONLY public.pipeline_instances ALTER COLUMN id SET DEFAULT nextval('public.pipeline_instances_id_seq'::regclass);
1349 -- Name: pipeline_templates id; Type: DEFAULT; Schema: public; Owner: -
1352 ALTER TABLE ONLY public.pipeline_templates ALTER COLUMN id SET DEFAULT nextval('public.pipeline_templates_id_seq'::regclass);
1356 -- Name: repositories id; Type: DEFAULT; Schema: public; Owner: -
1359 ALTER TABLE ONLY public.repositories ALTER COLUMN id SET DEFAULT nextval('public.repositories_id_seq'::regclass);
1363 -- Name: specimens id; Type: DEFAULT; Schema: public; Owner: -
1366 ALTER TABLE ONLY public.specimens ALTER COLUMN id SET DEFAULT nextval('public.specimens_id_seq'::regclass);
1370 -- Name: traits id; Type: DEFAULT; Schema: public; Owner: -
1373 ALTER TABLE ONLY public.traits ALTER COLUMN id SET DEFAULT nextval('public.traits_id_seq'::regclass);
1377 -- Name: users id; Type: DEFAULT; Schema: public; Owner: -
1380 ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
1384 -- Name: virtual_machines id; Type: DEFAULT; Schema: public; Owner: -
1387 ALTER TABLE ONLY public.virtual_machines ALTER COLUMN id SET DEFAULT nextval('public.virtual_machines_id_seq'::regclass);
1391 -- Name: workflows id; Type: DEFAULT; Schema: public; Owner: -
1394 ALTER TABLE ONLY public.workflows ALTER COLUMN id SET DEFAULT nextval('public.workflows_id_seq'::regclass);
1398 -- Name: api_client_authorizations api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1401 ALTER TABLE ONLY public.api_client_authorizations
1402 ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1406 -- Name: api_clients api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1409 ALTER TABLE ONLY public.api_clients
1410 ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1414 -- Name: authorized_keys authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1417 ALTER TABLE ONLY public.authorized_keys
1418 ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1422 -- Name: collections collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1425 ALTER TABLE ONLY public.collections
1426 ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1430 -- Name: commit_ancestors commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1433 ALTER TABLE ONLY public.commit_ancestors
1434 ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1438 -- Name: commits commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1441 ALTER TABLE ONLY public.commits
1442 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1446 -- Name: container_requests container_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1449 ALTER TABLE ONLY public.container_requests
1450 ADD CONSTRAINT container_requests_pkey PRIMARY KEY (id);
1454 -- Name: containers containers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1457 ALTER TABLE ONLY public.containers
1458 ADD CONSTRAINT containers_pkey PRIMARY KEY (id);
1462 -- Name: groups groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1465 ALTER TABLE ONLY public.groups
1466 ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1470 -- Name: humans humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1473 ALTER TABLE ONLY public.humans
1474 ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1478 -- Name: job_tasks job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1481 ALTER TABLE ONLY public.job_tasks
1482 ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1486 -- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1489 ALTER TABLE ONLY public.jobs
1490 ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1494 -- Name: keep_disks keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1497 ALTER TABLE ONLY public.keep_disks
1498 ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1502 -- Name: keep_services keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1505 ALTER TABLE ONLY public.keep_services
1506 ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1510 -- Name: links links_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1513 ALTER TABLE ONLY public.links
1514 ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1518 -- Name: logs logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1521 ALTER TABLE ONLY public.logs
1522 ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1526 -- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1529 ALTER TABLE ONLY public.nodes
1530 ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1534 -- Name: permission_refresh_lock permission_refresh_lock_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1537 ALTER TABLE ONLY public.permission_refresh_lock
1538 ADD CONSTRAINT permission_refresh_lock_pkey PRIMARY KEY (id);
1542 -- Name: pipeline_instances pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1545 ALTER TABLE ONLY public.pipeline_instances
1546 ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1550 -- Name: pipeline_templates pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1553 ALTER TABLE ONLY public.pipeline_templates
1554 ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1558 -- Name: repositories repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1561 ALTER TABLE ONLY public.repositories
1562 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1566 -- Name: specimens specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1569 ALTER TABLE ONLY public.specimens
1570 ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1574 -- Name: traits traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1577 ALTER TABLE ONLY public.traits
1578 ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1582 -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1585 ALTER TABLE ONLY public.users
1586 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1590 -- Name: virtual_machines virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1593 ALTER TABLE ONLY public.virtual_machines
1594 ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1598 -- Name: workflows workflows_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1601 ALTER TABLE ONLY public.workflows
1602 ADD CONSTRAINT workflows_pkey PRIMARY KEY (id);
1606 -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -
1609 CREATE INDEX api_client_authorizations_search_index ON public.api_client_authorizations USING btree (api_token, created_by_ip_address, last_used_by_ip_address, default_owner_uuid, uuid);
1613 -- Name: api_clients_search_index; Type: INDEX; Schema: public; Owner: -
1616 CREATE INDEX api_clients_search_index ON public.api_clients USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, url_prefix);
1620 -- Name: authorized_keys_search_index; Type: INDEX; Schema: public; Owner: -
1623 CREATE INDEX authorized_keys_search_index ON public.authorized_keys USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, key_type, authorized_user_uuid);
1627 -- Name: collection_index_on_properties; Type: INDEX; Schema: public; Owner: -
1630 CREATE INDEX collection_index_on_properties ON public.collections USING gin (properties);
1634 -- Name: collections_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
1637 CREATE INDEX collections_full_text_search_idx ON public.collections USING gin (to_tsvector('english'::regconfig, substr((((((((((((((((((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)) || ' '::text) || COALESCE(file_names, ''::text)), 0, 1000000)));
1641 -- Name: collections_search_index; Type: INDEX; Schema: public; Owner: -
1644 CREATE INDEX collections_search_index ON public.collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, uuid, name, current_version_uuid);
1648 -- Name: container_requests_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
1651 CREATE INDEX container_requests_full_text_search_idx ON public.container_requests USING gin (to_tsvector('english'::regconfig, substr((((((((((((((((((((((((((((((((((((((((((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)) || ' '::text) || (COALESCE(state, ''::character varying))::text) || ' '::text) || (COALESCE(requesting_container_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(container_uuid, ''::character varying))::text) || ' '::text) || COALESCE(runtime_constraints, ''::text)) || ' '::text) || (COALESCE(container_image, ''::character varying))::text) || ' '::text) || COALESCE(environment, ''::text)) || ' '::text) || (COALESCE(cwd, ''::character varying))::text) || ' '::text) || COALESCE(command, ''::text)) || ' '::text) || (COALESCE(output_path, ''::character varying))::text) || ' '::text) || COALESCE(filters, ''::text)) || ' '::text) || COALESCE(scheduling_parameters, ''::text)) || ' '::text) || (COALESCE(output_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(log_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(output_name, ''::character varying))::text), 0, 1000000)));
1655 -- Name: container_requests_index_on_properties; Type: INDEX; Schema: public; Owner: -
1658 CREATE INDEX container_requests_index_on_properties ON public.container_requests USING gin (properties);
1662 -- Name: container_requests_search_index; Type: INDEX; Schema: public; Owner: -
1665 CREATE INDEX container_requests_search_index ON public.container_requests USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, state, requesting_container_uuid, container_uuid, container_image, cwd, output_path, output_uuid, log_uuid, output_name);
1669 -- Name: containers_search_index; Type: INDEX; Schema: public; Owner: -
1672 CREATE INDEX containers_search_index ON public.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);
1676 -- Name: group_index_on_properties; Type: INDEX; Schema: public; Owner: -
1679 CREATE INDEX group_index_on_properties ON public.groups USING gin (properties);
1683 -- Name: groups_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
1686 CREATE INDEX groups_full_text_search_idx ON public.groups USING gin (to_tsvector('english'::regconfig, substr((((((((((((((((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) || ' '::text) || COALESCE((properties)::text, ''::text)), 0, 1000000)));
1690 -- Name: groups_search_index; Type: INDEX; Schema: public; Owner: -
1693 CREATE INDEX groups_search_index ON public.groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, group_class);
1697 -- Name: humans_search_index; Type: INDEX; Schema: public; Owner: -
1700 CREATE INDEX humans_search_index ON public.humans USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid);
1704 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -
1707 CREATE INDEX index_api_client_authorizations_on_api_client_id ON public.api_client_authorizations USING btree (api_client_id);
1711 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -
1714 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON public.api_client_authorizations USING btree (api_token);
1718 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -
1721 CREATE INDEX index_api_client_authorizations_on_expires_at ON public.api_client_authorizations USING btree (expires_at);
1725 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -
1728 CREATE INDEX index_api_client_authorizations_on_user_id ON public.api_client_authorizations USING btree (user_id);
1732 -- Name: index_api_client_authorizations_on_uuid; Type: INDEX; Schema: public; Owner: -
1735 CREATE UNIQUE INDEX index_api_client_authorizations_on_uuid ON public.api_client_authorizations USING btree (uuid);
1739 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -
1742 CREATE INDEX index_api_clients_on_created_at ON public.api_clients USING btree (created_at);
1746 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -
1749 CREATE INDEX index_api_clients_on_modified_at ON public.api_clients USING btree (modified_at);
1753 -- Name: index_api_clients_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1756 CREATE INDEX index_api_clients_on_owner_uuid ON public.api_clients USING btree (owner_uuid);
1760 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -
1763 CREATE UNIQUE INDEX index_api_clients_on_uuid ON public.api_clients USING btree (uuid);
1767 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -
1770 CREATE INDEX index_authkeys_on_user_and_expires_at ON public.authorized_keys USING btree (authorized_user_uuid, expires_at);
1774 -- Name: index_authorized_keys_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1777 CREATE INDEX index_authorized_keys_on_owner_uuid ON public.authorized_keys USING btree (owner_uuid);
1781 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -
1784 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON public.authorized_keys USING btree (uuid);
1788 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -
1791 CREATE INDEX index_collections_on_created_at ON public.collections USING btree (created_at);
1795 -- Name: index_collections_on_current_version_uuid_and_version; Type: INDEX; Schema: public; Owner: -
1798 CREATE UNIQUE INDEX index_collections_on_current_version_uuid_and_version ON public.collections USING btree (current_version_uuid, version);
1802 -- Name: index_collections_on_delete_at; Type: INDEX; Schema: public; Owner: -
1805 CREATE INDEX index_collections_on_delete_at ON public.collections USING btree (delete_at);
1809 -- Name: index_collections_on_is_trashed; Type: INDEX; Schema: public; Owner: -
1812 CREATE INDEX index_collections_on_is_trashed ON public.collections USING btree (is_trashed);
1816 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -
1819 CREATE INDEX index_collections_on_modified_at ON public.collections USING btree (modified_at);
1823 -- Name: index_collections_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
1826 CREATE INDEX index_collections_on_modified_at_uuid ON public.collections USING btree (modified_at DESC, uuid);
1830 -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1833 CREATE INDEX index_collections_on_owner_uuid ON public.collections USING btree (owner_uuid);
1837 -- Name: index_collections_on_owner_uuid_and_name; Type: INDEX; Schema: public; Owner: -
1840 CREATE UNIQUE INDEX index_collections_on_owner_uuid_and_name ON public.collections USING btree (owner_uuid, name) WHERE ((is_trashed = false) AND ((current_version_uuid)::text = (uuid)::text));
1844 -- Name: index_collections_on_portable_data_hash_and_trash_at; Type: INDEX; Schema: public; Owner: -
1847 CREATE INDEX index_collections_on_portable_data_hash_and_trash_at ON public.collections USING btree (portable_data_hash, trash_at);
1851 -- Name: index_collections_on_trash_at; Type: INDEX; Schema: public; Owner: -
1854 CREATE INDEX index_collections_on_trash_at ON public.collections USING btree (trash_at);
1858 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -
1861 CREATE UNIQUE INDEX index_collections_on_uuid ON public.collections USING btree (uuid);
1865 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -
1868 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON public.commit_ancestors USING btree (descendant, ancestor);
1872 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -
1875 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON public.commits USING btree (repository_name, sha1);
1879 -- Name: index_container_requests_on_container_uuid; Type: INDEX; Schema: public; Owner: -
1882 CREATE INDEX index_container_requests_on_container_uuid ON public.container_requests USING btree (container_uuid);
1886 -- Name: index_container_requests_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
1889 CREATE INDEX index_container_requests_on_modified_at_uuid ON public.container_requests USING btree (modified_at DESC, uuid);
1893 -- Name: index_container_requests_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1896 CREATE INDEX index_container_requests_on_owner_uuid ON public.container_requests USING btree (owner_uuid);
1900 -- Name: index_container_requests_on_requesting_container_uuid; Type: INDEX; Schema: public; Owner: -
1903 CREATE INDEX index_container_requests_on_requesting_container_uuid ON public.container_requests USING btree (requesting_container_uuid);
1907 -- Name: index_container_requests_on_uuid; Type: INDEX; Schema: public; Owner: -
1910 CREATE UNIQUE INDEX index_container_requests_on_uuid ON public.container_requests USING btree (uuid);
1914 -- Name: index_containers_on_auth_uuid; Type: INDEX; Schema: public; Owner: -
1917 CREATE INDEX index_containers_on_auth_uuid ON public.containers USING btree (auth_uuid);
1921 -- Name: index_containers_on_locked_by_uuid_and_priority; Type: INDEX; Schema: public; Owner: -
1924 CREATE INDEX index_containers_on_locked_by_uuid_and_priority ON public.containers USING btree (locked_by_uuid, priority);
1928 -- Name: index_containers_on_locked_by_uuid_and_uuid; Type: INDEX; Schema: public; Owner: -
1931 CREATE INDEX index_containers_on_locked_by_uuid_and_uuid ON public.containers USING btree (locked_by_uuid, uuid);
1935 -- Name: index_containers_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
1938 CREATE INDEX index_containers_on_modified_at_uuid ON public.containers USING btree (modified_at DESC, uuid);
1942 -- Name: index_containers_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
1945 CREATE INDEX index_containers_on_owner_uuid ON public.containers USING btree (owner_uuid);
1949 -- Name: index_containers_on_queued_state; Type: INDEX; Schema: public; Owner: -
1952 CREATE INDEX index_containers_on_queued_state ON public.containers USING btree (state, ((priority > 0)));
1956 -- Name: index_containers_on_reuse_columns; Type: INDEX; Schema: public; Owner: -
1959 CREATE INDEX index_containers_on_reuse_columns ON public.containers USING btree (md5(command), cwd, md5(environment), output_path, container_image, md5(mounts), secret_mounts_md5, md5(runtime_constraints));
1963 -- Name: index_containers_on_runtime_status; Type: INDEX; Schema: public; Owner: -
1966 CREATE INDEX index_containers_on_runtime_status ON public.containers USING gin (runtime_status);
1970 -- Name: index_containers_on_secret_mounts_md5; Type: INDEX; Schema: public; Owner: -
1973 CREATE INDEX index_containers_on_secret_mounts_md5 ON public.containers USING btree (secret_mounts_md5);
1977 -- Name: index_containers_on_uuid; Type: INDEX; Schema: public; Owner: -
1980 CREATE UNIQUE INDEX index_containers_on_uuid ON public.containers USING btree (uuid);
1984 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -
1987 CREATE INDEX index_groups_on_created_at ON public.groups USING btree (created_at);
1991 -- Name: index_groups_on_delete_at; Type: INDEX; Schema: public; Owner: -
1994 CREATE INDEX index_groups_on_delete_at ON public.groups USING btree (delete_at);
1998 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -
2001 CREATE INDEX index_groups_on_group_class ON public.groups USING btree (group_class);
2005 -- Name: index_groups_on_is_trashed; Type: INDEX; Schema: public; Owner: -
2008 CREATE INDEX index_groups_on_is_trashed ON public.groups USING btree (is_trashed);
2012 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -
2015 CREATE INDEX index_groups_on_modified_at ON public.groups USING btree (modified_at);
2019 -- Name: index_groups_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2022 CREATE INDEX index_groups_on_modified_at_uuid ON public.groups USING btree (modified_at DESC, uuid);
2026 -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2029 CREATE INDEX index_groups_on_owner_uuid ON public.groups USING btree (owner_uuid);
2033 -- Name: index_groups_on_owner_uuid_and_name; Type: INDEX; Schema: public; Owner: -
2036 CREATE UNIQUE INDEX index_groups_on_owner_uuid_and_name ON public.groups USING btree (owner_uuid, name) WHERE (is_trashed = false);
2040 -- Name: index_groups_on_trash_at; Type: INDEX; Schema: public; Owner: -
2043 CREATE INDEX index_groups_on_trash_at ON public.groups USING btree (trash_at);
2047 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -
2050 CREATE UNIQUE INDEX index_groups_on_uuid ON public.groups USING btree (uuid);
2054 -- Name: index_humans_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2057 CREATE INDEX index_humans_on_owner_uuid ON public.humans USING btree (owner_uuid);
2061 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -
2064 CREATE UNIQUE INDEX index_humans_on_uuid ON public.humans USING btree (uuid);
2068 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -
2071 CREATE INDEX index_job_tasks_on_created_at ON public.job_tasks USING btree (created_at);
2075 -- Name: index_job_tasks_on_created_by_job_task_uuid; Type: INDEX; Schema: public; Owner: -
2078 CREATE INDEX index_job_tasks_on_created_by_job_task_uuid ON public.job_tasks USING btree (created_by_job_task_uuid);
2082 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -
2085 CREATE INDEX index_job_tasks_on_job_uuid ON public.job_tasks USING btree (job_uuid);
2089 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -
2092 CREATE INDEX index_job_tasks_on_modified_at ON public.job_tasks USING btree (modified_at);
2096 -- Name: index_job_tasks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2099 CREATE INDEX index_job_tasks_on_owner_uuid ON public.job_tasks USING btree (owner_uuid);
2103 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -
2106 CREATE INDEX index_job_tasks_on_sequence ON public.job_tasks USING btree (sequence);
2110 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -
2113 CREATE INDEX index_job_tasks_on_success ON public.job_tasks USING btree (success);
2117 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -
2120 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON public.job_tasks USING btree (uuid);
2124 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -
2127 CREATE INDEX index_jobs_on_created_at ON public.jobs USING btree (created_at);
2131 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -
2134 CREATE INDEX index_jobs_on_finished_at ON public.jobs USING btree (finished_at);
2138 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -
2141 CREATE INDEX index_jobs_on_modified_at ON public.jobs USING btree (modified_at);
2145 -- Name: index_jobs_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2148 CREATE INDEX index_jobs_on_modified_at_uuid ON public.jobs USING btree (modified_at DESC, uuid);
2152 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -
2155 CREATE INDEX index_jobs_on_output ON public.jobs USING btree (output);
2159 -- Name: index_jobs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2162 CREATE INDEX index_jobs_on_owner_uuid ON public.jobs USING btree (owner_uuid);
2166 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -
2169 CREATE INDEX index_jobs_on_script ON public.jobs USING btree (script);
2173 -- Name: index_jobs_on_script_parameters_digest; Type: INDEX; Schema: public; Owner: -
2176 CREATE INDEX index_jobs_on_script_parameters_digest ON public.jobs USING btree (script_parameters_digest);
2180 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -
2183 CREATE INDEX index_jobs_on_started_at ON public.jobs USING btree (started_at);
2187 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -
2190 CREATE UNIQUE INDEX index_jobs_on_submit_id ON public.jobs USING btree (submit_id);
2194 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -
2197 CREATE UNIQUE INDEX index_jobs_on_uuid ON public.jobs USING btree (uuid);
2201 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -
2204 CREATE INDEX index_keep_disks_on_filesystem_uuid ON public.keep_disks USING btree (filesystem_uuid);
2208 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -
2211 CREATE INDEX index_keep_disks_on_last_ping_at ON public.keep_disks USING btree (last_ping_at);
2215 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -
2218 CREATE INDEX index_keep_disks_on_node_uuid ON public.keep_disks USING btree (node_uuid);
2222 -- Name: index_keep_disks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2225 CREATE INDEX index_keep_disks_on_owner_uuid ON public.keep_disks USING btree (owner_uuid);
2229 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -
2232 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON public.keep_disks USING btree (uuid);
2236 -- Name: index_keep_services_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2239 CREATE INDEX index_keep_services_on_owner_uuid ON public.keep_services USING btree (owner_uuid);
2243 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -
2246 CREATE UNIQUE INDEX index_keep_services_on_uuid ON public.keep_services USING btree (uuid);
2250 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -
2253 CREATE INDEX index_links_on_created_at ON public.links USING btree (created_at);
2257 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -
2260 CREATE INDEX index_links_on_head_uuid ON public.links USING btree (head_uuid);
2264 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -
2267 CREATE INDEX index_links_on_modified_at ON public.links USING btree (modified_at);
2271 -- Name: index_links_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2274 CREATE INDEX index_links_on_modified_at_uuid ON public.links USING btree (modified_at DESC, uuid);
2278 -- Name: index_links_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2281 CREATE INDEX index_links_on_owner_uuid ON public.links USING btree (owner_uuid);
2285 -- Name: index_links_on_substring_head_uuid; Type: INDEX; Schema: public; Owner: -
2288 CREATE INDEX index_links_on_substring_head_uuid ON public.links USING btree ("substring"((head_uuid)::text, 7, 5));
2292 -- Name: index_links_on_substring_tail_uuid; Type: INDEX; Schema: public; Owner: -
2295 CREATE INDEX index_links_on_substring_tail_uuid ON public.links USING btree ("substring"((tail_uuid)::text, 7, 5));
2299 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -
2302 CREATE INDEX index_links_on_tail_uuid ON public.links USING btree (tail_uuid);
2306 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -
2309 CREATE UNIQUE INDEX index_links_on_uuid ON public.links USING btree (uuid);
2313 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -
2316 CREATE INDEX index_logs_on_created_at ON public.logs USING btree (created_at);
2320 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -
2323 CREATE INDEX index_logs_on_event_at ON public.logs USING btree (event_at);
2327 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -
2330 CREATE INDEX index_logs_on_event_type ON public.logs USING btree (event_type);
2334 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -
2337 CREATE INDEX index_logs_on_modified_at ON public.logs USING btree (modified_at);
2341 -- Name: index_logs_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2344 CREATE INDEX index_logs_on_modified_at_uuid ON public.logs USING btree (modified_at DESC, uuid);
2348 -- Name: index_logs_on_object_owner_uuid; Type: INDEX; Schema: public; Owner: -
2351 CREATE INDEX index_logs_on_object_owner_uuid ON public.logs USING btree (object_owner_uuid);
2355 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -
2358 CREATE INDEX index_logs_on_object_uuid ON public.logs USING btree (object_uuid);
2362 -- Name: index_logs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2365 CREATE INDEX index_logs_on_owner_uuid ON public.logs USING btree (owner_uuid);
2369 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -
2372 CREATE INDEX index_logs_on_summary ON public.logs USING btree (summary);
2376 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -
2379 CREATE UNIQUE INDEX index_logs_on_uuid ON public.logs USING btree (uuid);
2383 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -
2386 CREATE INDEX index_nodes_on_created_at ON public.nodes USING btree (created_at);
2390 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -
2393 CREATE INDEX index_nodes_on_hostname ON public.nodes USING btree (hostname);
2397 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -
2400 CREATE INDEX index_nodes_on_modified_at ON public.nodes USING btree (modified_at);
2404 -- Name: index_nodes_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2407 CREATE INDEX index_nodes_on_owner_uuid ON public.nodes USING btree (owner_uuid);
2411 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -
2414 CREATE UNIQUE INDEX index_nodes_on_slot_number ON public.nodes USING btree (slot_number);
2418 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -
2421 CREATE UNIQUE INDEX index_nodes_on_uuid ON public.nodes USING btree (uuid);
2425 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -
2428 CREATE INDEX index_pipeline_instances_on_created_at ON public.pipeline_instances USING btree (created_at);
2432 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -
2435 CREATE INDEX index_pipeline_instances_on_modified_at ON public.pipeline_instances USING btree (modified_at);
2439 -- Name: index_pipeline_instances_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2442 CREATE INDEX index_pipeline_instances_on_modified_at_uuid ON public.pipeline_instances USING btree (modified_at DESC, uuid);
2446 -- Name: index_pipeline_instances_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2449 CREATE INDEX index_pipeline_instances_on_owner_uuid ON public.pipeline_instances USING btree (owner_uuid);
2453 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -
2456 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON public.pipeline_instances USING btree (uuid);
2460 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -
2463 CREATE INDEX index_pipeline_templates_on_created_at ON public.pipeline_templates USING btree (created_at);
2467 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -
2470 CREATE INDEX index_pipeline_templates_on_modified_at ON public.pipeline_templates USING btree (modified_at);
2474 -- Name: index_pipeline_templates_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2477 CREATE INDEX index_pipeline_templates_on_modified_at_uuid ON public.pipeline_templates USING btree (modified_at DESC, uuid);
2481 -- Name: index_pipeline_templates_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2484 CREATE INDEX index_pipeline_templates_on_owner_uuid ON public.pipeline_templates USING btree (owner_uuid);
2488 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -
2491 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON public.pipeline_templates USING btree (uuid);
2495 -- Name: index_repositories_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2498 CREATE INDEX index_repositories_on_modified_at_uuid ON public.repositories USING btree (modified_at DESC, uuid);
2502 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -
2505 CREATE UNIQUE INDEX index_repositories_on_name ON public.repositories USING btree (name);
2509 -- Name: index_repositories_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2512 CREATE INDEX index_repositories_on_owner_uuid ON public.repositories USING btree (owner_uuid);
2516 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -
2519 CREATE UNIQUE INDEX index_repositories_on_uuid ON public.repositories USING btree (uuid);
2523 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -
2526 CREATE INDEX index_specimens_on_created_at ON public.specimens USING btree (created_at);
2530 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -
2533 CREATE INDEX index_specimens_on_modified_at ON public.specimens USING btree (modified_at);
2537 -- Name: index_specimens_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2540 CREATE INDEX index_specimens_on_owner_uuid ON public.specimens USING btree (owner_uuid);
2544 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -
2547 CREATE UNIQUE INDEX index_specimens_on_uuid ON public.specimens USING btree (uuid);
2551 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -
2554 CREATE INDEX index_traits_on_name ON public.traits USING btree (name);
2558 -- Name: index_traits_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2561 CREATE INDEX index_traits_on_owner_uuid ON public.traits USING btree (owner_uuid);
2565 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -
2568 CREATE UNIQUE INDEX index_traits_on_uuid ON public.traits USING btree (uuid);
2572 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -
2575 CREATE INDEX index_users_on_created_at ON public.users USING btree (created_at);
2579 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -
2582 CREATE INDEX index_users_on_modified_at ON public.users USING btree (modified_at);
2586 -- Name: index_users_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2589 CREATE INDEX index_users_on_modified_at_uuid ON public.users USING btree (modified_at DESC, uuid);
2593 -- Name: index_users_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2596 CREATE INDEX index_users_on_owner_uuid ON public.users USING btree (owner_uuid);
2600 -- Name: index_users_on_username; Type: INDEX; Schema: public; Owner: -
2603 CREATE UNIQUE INDEX index_users_on_username ON public.users USING btree (username);
2607 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -
2610 CREATE UNIQUE INDEX index_users_on_uuid ON public.users USING btree (uuid);
2614 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -
2617 CREATE INDEX index_virtual_machines_on_hostname ON public.virtual_machines USING btree (hostname);
2621 -- Name: index_virtual_machines_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2624 CREATE INDEX index_virtual_machines_on_modified_at_uuid ON public.virtual_machines USING btree (modified_at DESC, uuid);
2628 -- Name: index_virtual_machines_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2631 CREATE INDEX index_virtual_machines_on_owner_uuid ON public.virtual_machines USING btree (owner_uuid);
2635 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -
2638 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON public.virtual_machines USING btree (uuid);
2642 -- Name: index_workflows_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: -
2645 CREATE INDEX index_workflows_on_modified_at_uuid ON public.workflows USING btree (modified_at DESC, uuid);
2649 -- Name: index_workflows_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
2652 CREATE INDEX index_workflows_on_owner_uuid ON public.workflows USING btree (owner_uuid);
2656 -- Name: index_workflows_on_uuid; Type: INDEX; Schema: public; Owner: -
2659 CREATE UNIQUE INDEX index_workflows_on_uuid ON public.workflows USING btree (uuid);
2663 -- Name: job_tasks_search_index; Type: INDEX; Schema: public; Owner: -
2666 CREATE INDEX job_tasks_search_index ON public.job_tasks USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, job_uuid, created_by_job_task_uuid);
2670 -- Name: jobs_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2673 CREATE INDEX jobs_full_text_search_idx ON public.jobs USING gin (to_tsvector('english'::regconfig, substr((((((((((((((((((((((((((((((((((((((((((((COALESCE(uuid, ''::character varying))::text || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(submit_id, ''::character varying))::text) || ' '::text) || (COALESCE(script, ''::character varying))::text) || ' '::text) || (COALESCE(script_version, ''::character varying))::text) || ' '::text) || COALESCE(script_parameters, ''::text)) || ' '::text) || (COALESCE(cancelled_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(cancelled_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(output, ''::character varying))::text) || ' '::text) || (COALESCE(is_locked_by_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(log, ''::character varying))::text) || ' '::text) || COALESCE(tasks_summary, ''::text)) || ' '::text) || COALESCE(runtime_constraints, ''::text)) || ' '::text) || (COALESCE(repository, ''::character varying))::text) || ' '::text) || (COALESCE(supplied_script_version, ''::character varying))::text) || ' '::text) || (COALESCE(docker_image_locator, ''::character varying))::text) || ' '::text) || (COALESCE(description, ''::character varying))::text) || ' '::text) || (COALESCE(state, ''::character varying))::text) || ' '::text) || (COALESCE(arvados_sdk_version, ''::character varying))::text) || ' '::text) || COALESCE(components, ''::text)), 0, 1000000)));
2677 -- Name: jobs_search_index; Type: INDEX; Schema: public; Owner: -
2680 CREATE INDEX jobs_search_index ON public.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);
2684 -- Name: keep_disks_search_index; Type: INDEX; Schema: public; Owner: -
2687 CREATE INDEX keep_disks_search_index ON public.keep_disks USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, ping_secret, node_uuid, filesystem_uuid, keep_service_uuid);
2691 -- Name: keep_services_search_index; Type: INDEX; Schema: public; Owner: -
2694 CREATE INDEX keep_services_search_index ON public.keep_services USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, service_host, service_type);
2698 -- Name: links_index_on_properties; Type: INDEX; Schema: public; Owner: -
2701 CREATE INDEX links_index_on_properties ON public.links USING gin (properties);
2705 -- Name: links_search_index; Type: INDEX; Schema: public; Owner: -
2708 CREATE INDEX links_search_index ON public.links USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, tail_uuid, link_class, name, head_uuid);
2712 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -
2715 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON public.links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
2719 -- Name: logs_search_index; Type: INDEX; Schema: public; Owner: -
2722 CREATE INDEX logs_search_index ON public.logs USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, object_uuid, event_type, object_owner_uuid);
2726 -- Name: nodes_index_on_info; Type: INDEX; Schema: public; Owner: -
2729 CREATE INDEX nodes_index_on_info ON public.nodes USING gin (info);
2733 -- Name: nodes_index_on_properties; Type: INDEX; Schema: public; Owner: -
2736 CREATE INDEX nodes_index_on_properties ON public.nodes USING gin (properties);
2740 -- Name: nodes_search_index; Type: INDEX; Schema: public; Owner: -
2743 CREATE INDEX nodes_search_index ON public.nodes USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname, domain, ip_address, job_uuid);
2747 -- Name: permission_target_trashed; Type: INDEX; Schema: public; Owner: -
2750 CREATE INDEX permission_target_trashed ON public.materialized_permission_view USING btree (trashed, target_uuid);
2754 -- Name: permission_target_user_trashed_level; Type: INDEX; Schema: public; Owner: -
2757 CREATE INDEX permission_target_user_trashed_level ON public.materialized_permission_view USING btree (user_uuid, trashed, perm_level);
2761 -- Name: pipeline_instances_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2764 CREATE INDEX pipeline_instances_full_text_search_idx ON public.pipeline_instances USING gin (to_tsvector('english'::regconfig, substr((((((((((((((((((((((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), 0, 1000000)));
2768 -- Name: pipeline_instances_search_index; Type: INDEX; Schema: public; Owner: -
2771 CREATE INDEX pipeline_instances_search_index ON public.pipeline_instances USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, pipeline_template_uuid, name, state);
2775 -- Name: pipeline_template_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -
2778 CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON public.pipeline_templates USING btree (owner_uuid, name);
2782 -- Name: pipeline_templates_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2785 CREATE INDEX pipeline_templates_full_text_search_idx ON public.pipeline_templates USING gin (to_tsvector('english'::regconfig, substr((((((((((((((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), 0, 1000000)));
2789 -- Name: pipeline_templates_search_index; Type: INDEX; Schema: public; Owner: -
2792 CREATE INDEX pipeline_templates_search_index ON public.pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2796 -- Name: repositories_search_index; Type: INDEX; Schema: public; Owner: -
2799 CREATE INDEX repositories_search_index ON public.repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2803 -- Name: specimens_search_index; Type: INDEX; Schema: public; Owner: -
2806 CREATE INDEX specimens_search_index ON public.specimens USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, material);
2810 -- Name: traits_search_index; Type: INDEX; Schema: public; Owner: -
2813 CREATE INDEX traits_search_index ON public.traits USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2817 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -
2820 CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING btree (version);
2824 -- Name: users_search_index; Type: INDEX; Schema: public; Owner: -
2827 CREATE INDEX users_search_index ON public.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, redirect_to_user_uuid);
2831 -- Name: virtual_machines_search_index; Type: INDEX; Schema: public; Owner: -
2834 CREATE INDEX virtual_machines_search_index ON public.virtual_machines USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname);
2838 -- Name: workflows_full_text_search_idx; Type: INDEX; Schema: public; Owner: -
2841 CREATE INDEX workflows_full_text_search_idx ON public.workflows USING gin (to_tsvector('english'::regconfig, substr((((((((((((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)), 0, 1000000)));
2845 -- Name: workflows_search_idx; Type: INDEX; Schema: public; Owner: -
2848 CREATE INDEX workflows_search_idx ON public.workflows USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2852 -- PostgreSQL database dump complete
2855 SET search_path TO "$user", public;
2857 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
2859 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
2861 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
2863 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
2865 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
2867 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
2869 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
2871 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
2873 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
2875 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
2877 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
2879 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
2881 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
2883 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
2885 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
2887 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
2889 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
2891 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
2893 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
2895 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
2897 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
2899 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
2901 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
2903 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
2905 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
2907 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
2909 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
2911 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
2913 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
2915 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
2917 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
2919 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
2921 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
2923 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
2925 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
2927 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
2929 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
2931 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
2933 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
2935 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
2937 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
2939 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
2941 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
2943 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
2945 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
2947 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
2949 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
2951 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
2953 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
2955 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
2957 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
2959 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
2961 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
2963 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
2965 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
2967 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
2969 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
2971 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
2973 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
2975 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
2977 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
2979 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
2981 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
2983 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
2985 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
2987 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
2989 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
2991 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
2993 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
2995 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
2997 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
2999 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
3001 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
3003 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
3005 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
3007 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
3009 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
3011 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
3013 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
3015 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
3017 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
3019 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
3021 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
3023 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
3025 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
3027 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
3029 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
3031 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
3033 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
3035 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
3037 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
3039 INSERT INTO schema_migrations (version) VALUES ('20140817035914');
3041 INSERT INTO schema_migrations (version) VALUES ('20140818125735');
3043 INSERT INTO schema_migrations (version) VALUES ('20140826180337');
3045 INSERT INTO schema_migrations (version) VALUES ('20140828141043');
3047 INSERT INTO schema_migrations (version) VALUES ('20140909183946');
3049 INSERT INTO schema_migrations (version) VALUES ('20140911221252');
3051 INSERT INTO schema_migrations (version) VALUES ('20140918141529');
3053 INSERT INTO schema_migrations (version) VALUES ('20140918153541');
3055 INSERT INTO schema_migrations (version) VALUES ('20140918153705');
3057 INSERT INTO schema_migrations (version) VALUES ('20140924091559');
3059 INSERT INTO schema_migrations (version) VALUES ('20141111133038');
3061 INSERT INTO schema_migrations (version) VALUES ('20141208164553');
3063 INSERT INTO schema_migrations (version) VALUES ('20141208174553');
3065 INSERT INTO schema_migrations (version) VALUES ('20141208174653');
3067 INSERT INTO schema_migrations (version) VALUES ('20141208185217');
3069 INSERT INTO schema_migrations (version) VALUES ('20150122175935');
3071 INSERT INTO schema_migrations (version) VALUES ('20150123142953');
3073 INSERT INTO schema_migrations (version) VALUES ('20150203180223');
3075 INSERT INTO schema_migrations (version) VALUES ('20150206210804');
3077 INSERT INTO schema_migrations (version) VALUES ('20150206230342');
3079 INSERT INTO schema_migrations (version) VALUES ('20150216193428');
3081 INSERT INTO schema_migrations (version) VALUES ('20150303210106');
3083 INSERT INTO schema_migrations (version) VALUES ('20150312151136');
3085 INSERT INTO schema_migrations (version) VALUES ('20150317132720');
3087 INSERT INTO schema_migrations (version) VALUES ('20150324152204');
3089 INSERT INTO schema_migrations (version) VALUES ('20150423145759');
3091 INSERT INTO schema_migrations (version) VALUES ('20150512193020');
3093 INSERT INTO schema_migrations (version) VALUES ('20150526180251');
3095 INSERT INTO schema_migrations (version) VALUES ('20151202151426');
3097 INSERT INTO schema_migrations (version) VALUES ('20151215134304');
3099 INSERT INTO schema_migrations (version) VALUES ('20151229214707');
3101 INSERT INTO schema_migrations (version) VALUES ('20160208210629');
3103 INSERT INTO schema_migrations (version) VALUES ('20160209155729');
3105 INSERT INTO schema_migrations (version) VALUES ('20160324144017');
3107 INSERT INTO schema_migrations (version) VALUES ('20160506175108');
3109 INSERT INTO schema_migrations (version) VALUES ('20160509143250');
3111 INSERT INTO schema_migrations (version) VALUES ('20160808151559');
3113 INSERT INTO schema_migrations (version) VALUES ('20160819195557');
3115 INSERT INTO schema_migrations (version) VALUES ('20160819195725');
3117 INSERT INTO schema_migrations (version) VALUES ('20160901210110');
3119 INSERT INTO schema_migrations (version) VALUES ('20160909181442');
3121 INSERT INTO schema_migrations (version) VALUES ('20160926194129');
3123 INSERT INTO schema_migrations (version) VALUES ('20161019171346');
3125 INSERT INTO schema_migrations (version) VALUES ('20161111143147');
3127 INSERT INTO schema_migrations (version) VALUES ('20161115171221');
3129 INSERT INTO schema_migrations (version) VALUES ('20161115174218');
3131 INSERT INTO schema_migrations (version) VALUES ('20161213172944');
3133 INSERT INTO schema_migrations (version) VALUES ('20161222153434');
3135 INSERT INTO schema_migrations (version) VALUES ('20161223090712');
3137 INSERT INTO schema_migrations (version) VALUES ('20170102153111');
3139 INSERT INTO schema_migrations (version) VALUES ('20170105160301');
3141 INSERT INTO schema_migrations (version) VALUES ('20170105160302');
3143 INSERT INTO schema_migrations (version) VALUES ('20170216170823');
3145 INSERT INTO schema_migrations (version) VALUES ('20170301225558');
3147 INSERT INTO schema_migrations (version) VALUES ('20170319063406');
3149 INSERT INTO schema_migrations (version) VALUES ('20170328215436');
3151 INSERT INTO schema_migrations (version) VALUES ('20170330012505');
3153 INSERT INTO schema_migrations (version) VALUES ('20170419173031');
3155 INSERT INTO schema_migrations (version) VALUES ('20170419173712');
3157 INSERT INTO schema_migrations (version) VALUES ('20170419175801');
3159 INSERT INTO schema_migrations (version) VALUES ('20170628185847');
3161 INSERT INTO schema_migrations (version) VALUES ('20170704160233');
3163 INSERT INTO schema_migrations (version) VALUES ('20170706141334');
3165 INSERT INTO schema_migrations (version) VALUES ('20170824202826');
3167 INSERT INTO schema_migrations (version) VALUES ('20170906224040');
3169 INSERT INTO schema_migrations (version) VALUES ('20171027183824');
3171 INSERT INTO schema_migrations (version) VALUES ('20171208203841');
3173 INSERT INTO schema_migrations (version) VALUES ('20171212153352');
3175 INSERT INTO schema_migrations (version) VALUES ('20180216203422');
3177 INSERT INTO schema_migrations (version) VALUES ('20180228220311');
3179 INSERT INTO schema_migrations (version) VALUES ('20180313180114');
3181 INSERT INTO schema_migrations (version) VALUES ('20180501182859');
3183 INSERT INTO schema_migrations (version) VALUES ('20180514135529');
3185 INSERT INTO schema_migrations (version) VALUES ('20180607175050');
3187 INSERT INTO schema_migrations (version) VALUES ('20180608123145');
3189 INSERT INTO schema_migrations (version) VALUES ('20180806133039');
3191 INSERT INTO schema_migrations (version) VALUES ('20180820130357');
3193 INSERT INTO schema_migrations (version) VALUES ('20180820132617');
3195 INSERT INTO schema_migrations (version) VALUES ('20180820135808');
3197 INSERT INTO schema_migrations (version) VALUES ('20180824152014');
3199 INSERT INTO schema_migrations (version) VALUES ('20180824155207');
3201 INSERT INTO schema_migrations (version) VALUES ('20180904110712');
3203 INSERT INTO schema_migrations (version) VALUES ('20180913175443');
3205 INSERT INTO schema_migrations (version) VALUES ('20180915155335');
3207 INSERT INTO schema_migrations (version) VALUES ('20180917200000');
3209 INSERT INTO schema_migrations (version) VALUES ('20180917205609');
3211 INSERT INTO schema_migrations (version) VALUES ('20180919001158');
3213 INSERT INTO schema_migrations (version) VALUES ('20181001175023');
3215 INSERT INTO schema_migrations (version) VALUES ('20181004131141');
3217 INSERT INTO schema_migrations (version) VALUES ('20181005192222');
3219 INSERT INTO schema_migrations (version) VALUES ('20181011184200');
3221 INSERT INTO schema_migrations (version) VALUES ('20181213183234');
3223 INSERT INTO schema_migrations (version) VALUES ('20190214214814');
3225 INSERT INTO schema_migrations (version) VALUES ('20190322174136');