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 '---
54 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
57 CREATE SEQUENCE api_client_authorizations_id_seq
66 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
69 ALTER SEQUENCE api_client_authorizations_id_seq OWNED BY api_client_authorizations.id;
73 -- Name: api_clients; Type: TABLE; Schema: public; Owner: -; Tablespace:
76 CREATE TABLE api_clients (
78 uuid character varying(255),
79 owner_uuid character varying(255),
80 modified_by_client_uuid character varying(255),
81 modified_by_user_uuid character varying(255),
82 modified_at timestamp without time zone,
83 name character varying(255),
84 url_prefix character varying(255),
85 created_at timestamp without time zone NOT NULL,
86 updated_at timestamp without time zone NOT NULL,
87 is_trusted boolean DEFAULT false
92 -- Name: api_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: -
95 CREATE SEQUENCE api_clients_id_seq
104 -- Name: api_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
107 ALTER SEQUENCE api_clients_id_seq OWNED BY api_clients.id;
111 -- Name: authorized_keys; Type: TABLE; Schema: public; Owner: -; Tablespace:
114 CREATE TABLE authorized_keys (
116 uuid character varying(255) NOT NULL,
117 owner_uuid character varying(255) NOT NULL,
118 modified_by_client_uuid character varying(255),
119 modified_by_user_uuid character varying(255),
120 modified_at timestamp without time zone,
121 name character varying(255),
122 key_type character varying(255),
123 authorized_user_uuid character varying(255),
125 expires_at timestamp without time zone,
126 created_at timestamp without time zone NOT NULL,
127 updated_at timestamp without time zone NOT NULL
132 -- Name: authorized_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
135 CREATE SEQUENCE authorized_keys_id_seq
144 -- Name: authorized_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
147 ALTER SEQUENCE authorized_keys_id_seq OWNED BY authorized_keys.id;
151 -- Name: collections; Type: TABLE; Schema: public; Owner: -; Tablespace:
154 CREATE TABLE collections (
156 owner_uuid character varying(255),
157 created_at timestamp without time zone NOT NULL,
158 modified_by_client_uuid character varying(255),
159 modified_by_user_uuid character varying(255),
160 modified_at timestamp without time zone,
161 portable_data_hash character varying(255),
162 replication_desired integer,
163 replication_confirmed_at timestamp without time zone,
164 replication_confirmed integer,
165 updated_at timestamp without time zone NOT NULL,
166 uuid character varying(255),
168 name character varying(255),
169 description character varying(524288),
171 expires_at timestamp without time zone,
172 file_names character varying(8192)
177 -- Name: collections_id_seq; Type: SEQUENCE; Schema: public; Owner: -
180 CREATE SEQUENCE collections_id_seq
189 -- Name: collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
192 ALTER SEQUENCE collections_id_seq OWNED BY collections.id;
196 -- Name: commit_ancestors; Type: TABLE; Schema: public; Owner: -; Tablespace:
199 CREATE TABLE commit_ancestors (
201 repository_name character varying(255),
202 descendant character varying(255) NOT NULL,
203 ancestor character varying(255) NOT NULL,
204 "is" boolean DEFAULT false NOT NULL,
205 created_at timestamp without time zone NOT NULL,
206 updated_at timestamp without time zone NOT NULL
211 -- Name: commit_ancestors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
214 CREATE SEQUENCE commit_ancestors_id_seq
223 -- Name: commit_ancestors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
226 ALTER SEQUENCE commit_ancestors_id_seq OWNED BY commit_ancestors.id;
230 -- Name: commits; Type: TABLE; Schema: public; Owner: -; Tablespace:
233 CREATE TABLE commits (
235 repository_name character varying(255),
236 sha1 character varying(255),
237 message character varying(255),
238 created_at timestamp without time zone NOT NULL,
239 updated_at timestamp without time zone NOT NULL
244 -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
247 CREATE SEQUENCE commits_id_seq
256 -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
259 ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
263 -- Name: container_requests; Type: TABLE; Schema: public; Owner: -; Tablespace:
266 CREATE TABLE container_requests (
268 uuid character varying(255),
269 owner_uuid character varying(255),
270 created_at timestamp without time zone NOT NULL,
271 modified_at timestamp without time zone,
272 modified_by_client_uuid character varying(255),
273 modified_by_user_uuid character varying(255),
274 name character varying(255),
277 state character varying(255),
278 requesting_container_uuid character varying(255),
279 container_uuid character varying(255),
280 container_count_max integer,
282 runtime_constraints text,
283 container_image character varying(255),
285 cwd character varying(255),
287 output_path character varying(255),
289 expires_at timestamp without time zone,
291 updated_at timestamp without time zone NOT NULL
296 -- Name: container_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
299 CREATE SEQUENCE container_requests_id_seq
308 -- Name: container_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
311 ALTER SEQUENCE container_requests_id_seq OWNED BY container_requests.id;
315 -- Name: containers; Type: TABLE; Schema: public; Owner: -; Tablespace:
318 CREATE TABLE containers (
320 uuid character varying(255),
321 owner_uuid character varying(255),
322 created_at timestamp without time zone NOT NULL,
323 modified_at timestamp without time zone,
324 modified_by_client_uuid character varying(255),
325 modified_by_user_uuid character varying(255),
326 state character varying(255),
327 started_at timestamp without time zone,
328 finished_at timestamp without time zone,
329 log character varying(255),
331 cwd character varying(255),
333 output_path character varying(255),
335 runtime_constraints text,
336 output character varying(255),
337 container_image character varying(255),
338 progress double precision,
340 updated_at timestamp without time zone NOT NULL,
346 -- Name: containers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
349 CREATE SEQUENCE containers_id_seq
358 -- Name: containers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
361 ALTER SEQUENCE containers_id_seq OWNED BY containers.id;
365 -- Name: groups; Type: TABLE; Schema: public; Owner: -; Tablespace:
368 CREATE TABLE groups (
370 uuid character varying(255),
371 owner_uuid character varying(255),
372 created_at timestamp without time zone NOT NULL,
373 modified_by_client_uuid character varying(255),
374 modified_by_user_uuid character varying(255),
375 modified_at timestamp without time zone,
376 name character varying(255) NOT NULL,
377 description character varying(524288),
378 updated_at timestamp without time zone NOT NULL,
379 group_class character varying(255)
384 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
387 CREATE SEQUENCE groups_id_seq
396 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
399 ALTER SEQUENCE groups_id_seq OWNED BY groups.id;
403 -- Name: humans; Type: TABLE; Schema: public; Owner: -; Tablespace:
406 CREATE TABLE humans (
408 uuid character varying(255) NOT NULL,
409 owner_uuid character varying(255) NOT NULL,
410 modified_by_client_uuid character varying(255),
411 modified_by_user_uuid character varying(255),
412 modified_at timestamp without time zone,
414 created_at timestamp without time zone NOT NULL,
415 updated_at timestamp without time zone NOT NULL
420 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
423 CREATE SEQUENCE humans_id_seq
432 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
435 ALTER SEQUENCE humans_id_seq OWNED BY humans.id;
439 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
442 CREATE TABLE job_tasks (
444 uuid character varying(255),
445 owner_uuid character varying(255),
446 modified_by_client_uuid character varying(255),
447 modified_by_user_uuid character varying(255),
448 modified_at timestamp without time zone,
449 job_uuid character varying(255),
453 progress double precision,
455 created_at timestamp without time zone NOT NULL,
456 updated_at timestamp without time zone NOT NULL,
457 created_by_job_task_uuid character varying(255),
459 started_at timestamp without time zone,
460 finished_at timestamp without time zone
465 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
468 CREATE SEQUENCE job_tasks_id_seq
477 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
480 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
484 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
487 CREATE SEQUENCE job_tasks_qsequence_seq
496 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
499 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
503 -- Name: jobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
508 uuid character varying(255),
509 owner_uuid character varying(255),
510 modified_by_client_uuid character varying(255),
511 modified_by_user_uuid character varying(255),
512 modified_at timestamp without time zone,
513 submit_id character varying(255),
514 script character varying(255),
515 script_version character varying(255),
516 script_parameters text,
517 cancelled_by_client_uuid character varying(255),
518 cancelled_by_user_uuid character varying(255),
519 cancelled_at timestamp without time zone,
520 started_at timestamp without time zone,
521 finished_at timestamp without time zone,
524 output character varying(255),
525 created_at timestamp without time zone NOT NULL,
526 updated_at timestamp without time zone NOT NULL,
527 is_locked_by_uuid character varying(255),
528 log character varying(255),
530 runtime_constraints text,
531 nondeterministic boolean,
532 repository character varying(255),
533 supplied_script_version character varying(255),
534 docker_image_locator character varying(255),
535 priority integer DEFAULT 0 NOT NULL,
536 description character varying(524288),
537 state character varying(255),
538 arvados_sdk_version character varying(255)
543 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
546 CREATE SEQUENCE jobs_id_seq
555 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
558 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
562 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -; Tablespace:
565 CREATE TABLE keep_disks (
567 uuid character varying(255) NOT NULL,
568 owner_uuid character varying(255) NOT NULL,
569 modified_by_client_uuid character varying(255),
570 modified_by_user_uuid character varying(255),
571 modified_at timestamp without time zone,
572 ping_secret character varying(255) NOT NULL,
573 node_uuid character varying(255),
574 filesystem_uuid character varying(255),
577 is_readable boolean DEFAULT true NOT NULL,
578 is_writable boolean DEFAULT true NOT NULL,
579 last_read_at timestamp without time zone,
580 last_write_at timestamp without time zone,
581 last_ping_at timestamp without time zone,
582 created_at timestamp without time zone NOT NULL,
583 updated_at timestamp without time zone NOT NULL,
584 keep_service_uuid character varying(255)
589 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
592 CREATE SEQUENCE keep_disks_id_seq
601 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
604 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
608 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
611 CREATE TABLE keep_services (
613 uuid character varying(255) NOT NULL,
614 owner_uuid character varying(255) NOT NULL,
615 modified_by_client_uuid character varying(255),
616 modified_by_user_uuid character varying(255),
617 modified_at timestamp without time zone,
618 service_host character varying(255),
619 service_port integer,
620 service_ssl_flag boolean,
621 service_type character varying(255),
622 created_at timestamp without time zone NOT NULL,
623 updated_at timestamp without time zone NOT NULL,
624 read_only boolean DEFAULT false NOT NULL
629 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
632 CREATE SEQUENCE keep_services_id_seq
641 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
644 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
648 -- Name: links; Type: TABLE; Schema: public; Owner: -; Tablespace:
653 uuid character varying(255),
654 owner_uuid character varying(255),
655 created_at timestamp without time zone NOT NULL,
656 modified_by_client_uuid character varying(255),
657 modified_by_user_uuid character varying(255),
658 modified_at timestamp without time zone,
659 tail_uuid character varying(255),
660 link_class character varying(255),
661 name character varying(255),
662 head_uuid character varying(255),
664 updated_at timestamp without time zone NOT NULL
669 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
672 CREATE SEQUENCE links_id_seq
681 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
684 ALTER SEQUENCE links_id_seq OWNED BY links.id;
688 -- Name: logs; Type: TABLE; Schema: public; Owner: -; Tablespace:
693 uuid character varying(255),
694 owner_uuid character varying(255),
695 modified_by_client_uuid character varying(255),
696 modified_by_user_uuid character varying(255),
697 object_uuid character varying(255),
698 event_at timestamp without time zone,
699 event_type character varying(255),
702 created_at timestamp without time zone NOT NULL,
703 updated_at timestamp without time zone NOT NULL,
704 modified_at timestamp without time zone,
705 object_owner_uuid character varying(255)
710 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
713 CREATE SEQUENCE logs_id_seq
722 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
725 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
729 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
734 uuid character varying(255),
735 owner_uuid character varying(255),
736 created_at timestamp without time zone NOT NULL,
737 modified_by_client_uuid character varying(255),
738 modified_by_user_uuid character varying(255),
739 modified_at timestamp without time zone,
741 hostname character varying(255),
742 domain character varying(255),
743 ip_address character varying(255),
744 first_ping_at timestamp without time zone,
745 last_ping_at timestamp without time zone,
747 updated_at timestamp without time zone NOT NULL,
749 job_uuid character varying(255)
754 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
757 CREATE SEQUENCE nodes_id_seq
766 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
769 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
773 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -; Tablespace:
776 CREATE TABLE pipeline_instances (
778 uuid character varying(255),
779 owner_uuid character varying(255),
780 created_at timestamp without time zone NOT NULL,
781 modified_by_client_uuid character varying(255),
782 modified_by_user_uuid character varying(255),
783 modified_at timestamp without time zone,
784 pipeline_template_uuid character varying(255),
785 name character varying(255),
787 updated_at timestamp without time zone NOT NULL,
789 state character varying(255),
790 components_summary text,
791 started_at timestamp without time zone,
792 finished_at timestamp without time zone,
793 description character varying(524288)
798 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
801 CREATE SEQUENCE pipeline_instances_id_seq
810 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
813 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
817 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
820 CREATE TABLE pipeline_templates (
822 uuid character varying(255),
823 owner_uuid character varying(255),
824 created_at timestamp without time zone NOT NULL,
825 modified_by_client_uuid character varying(255),
826 modified_by_user_uuid character varying(255),
827 modified_at timestamp without time zone,
828 name character varying(255),
830 updated_at timestamp without time zone NOT NULL,
831 description character varying(524288)
836 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
839 CREATE SEQUENCE pipeline_templates_id_seq
848 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
851 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
855 -- Name: repositories; Type: TABLE; Schema: public; Owner: -; Tablespace:
858 CREATE TABLE repositories (
860 uuid character varying(255) NOT NULL,
861 owner_uuid character varying(255) NOT NULL,
862 modified_by_client_uuid character varying(255),
863 modified_by_user_uuid character varying(255),
864 modified_at timestamp without time zone,
865 name character varying(255),
866 created_at timestamp without time zone NOT NULL,
867 updated_at timestamp without time zone NOT NULL
872 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
875 CREATE SEQUENCE repositories_id_seq
884 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
887 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
891 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
894 CREATE TABLE schema_migrations (
895 version character varying(255) NOT NULL
900 -- Name: specimens; Type: TABLE; Schema: public; Owner: -; Tablespace:
903 CREATE TABLE specimens (
905 uuid character varying(255),
906 owner_uuid character varying(255),
907 created_at timestamp without time zone NOT NULL,
908 modified_by_client_uuid character varying(255),
909 modified_by_user_uuid character varying(255),
910 modified_at timestamp without time zone,
911 material character varying(255),
912 updated_at timestamp without time zone NOT NULL,
918 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
921 CREATE SEQUENCE specimens_id_seq
930 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
933 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
937 -- Name: traits; Type: TABLE; Schema: public; Owner: -; Tablespace:
940 CREATE TABLE traits (
942 uuid character varying(255) NOT NULL,
943 owner_uuid character varying(255) NOT NULL,
944 modified_by_client_uuid character varying(255),
945 modified_by_user_uuid character varying(255),
946 modified_at timestamp without time zone,
947 name character varying(255),
949 created_at timestamp without time zone NOT NULL,
950 updated_at timestamp without time zone NOT NULL
955 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
958 CREATE SEQUENCE traits_id_seq
967 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
970 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
974 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
979 uuid character varying(255),
980 owner_uuid character varying(255) NOT NULL,
981 created_at timestamp without time zone NOT NULL,
982 modified_by_client_uuid character varying(255),
983 modified_by_user_uuid character varying(255),
984 modified_at timestamp without time zone,
985 email character varying(255),
986 first_name character varying(255),
987 last_name character varying(255),
988 identity_url character varying(255),
991 updated_at timestamp without time zone NOT NULL,
992 default_owner_uuid character varying(255),
993 is_active boolean DEFAULT false,
994 username character varying(255)
999 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1002 CREATE SEQUENCE users_id_seq
1011 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1014 ALTER SEQUENCE users_id_seq OWNED BY users.id;
1018 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -; Tablespace:
1021 CREATE TABLE virtual_machines (
1022 id integer NOT NULL,
1023 uuid character varying(255) NOT NULL,
1024 owner_uuid character varying(255) NOT NULL,
1025 modified_by_client_uuid character varying(255),
1026 modified_by_user_uuid character varying(255),
1027 modified_at timestamp without time zone,
1028 hostname character varying(255),
1029 created_at timestamp without time zone NOT NULL,
1030 updated_at timestamp without time zone NOT NULL
1035 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1038 CREATE SEQUENCE virtual_machines_id_seq
1047 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1050 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
1054 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1057 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
1061 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1064 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
1068 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1071 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
1075 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1078 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
1082 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1085 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
1089 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1092 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
1096 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1099 ALTER TABLE ONLY container_requests ALTER COLUMN id SET DEFAULT nextval('container_requests_id_seq'::regclass);
1103 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1106 ALTER TABLE ONLY containers ALTER COLUMN id SET DEFAULT nextval('containers_id_seq'::regclass);
1110 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1113 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
1117 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1120 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
1124 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1127 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1131 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1134 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1138 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1141 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1145 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1148 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1152 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1155 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1159 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1162 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1166 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1169 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1173 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1176 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1180 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1183 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1187 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1190 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1194 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1197 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1201 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1204 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1208 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1211 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1215 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1218 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1222 -- Name: api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1225 ALTER TABLE ONLY api_client_authorizations
1226 ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1230 -- Name: api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1233 ALTER TABLE ONLY api_clients
1234 ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1238 -- Name: authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1241 ALTER TABLE ONLY authorized_keys
1242 ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1246 -- Name: collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1249 ALTER TABLE ONLY collections
1250 ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1254 -- Name: commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1257 ALTER TABLE ONLY commit_ancestors
1258 ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1262 -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1265 ALTER TABLE ONLY commits
1266 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1270 -- Name: container_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1273 ALTER TABLE ONLY container_requests
1274 ADD CONSTRAINT container_requests_pkey PRIMARY KEY (id);
1278 -- Name: containers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1281 ALTER TABLE ONLY containers
1282 ADD CONSTRAINT containers_pkey PRIMARY KEY (id);
1286 -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1289 ALTER TABLE ONLY groups
1290 ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1294 -- Name: humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1297 ALTER TABLE ONLY humans
1298 ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1302 -- Name: job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1305 ALTER TABLE ONLY job_tasks
1306 ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1310 -- Name: jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1313 ALTER TABLE ONLY jobs
1314 ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1318 -- Name: keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1321 ALTER TABLE ONLY keep_disks
1322 ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1326 -- Name: keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1329 ALTER TABLE ONLY keep_services
1330 ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1334 -- Name: links_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1337 ALTER TABLE ONLY links
1338 ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1342 -- Name: logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1345 ALTER TABLE ONLY logs
1346 ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1350 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1353 ALTER TABLE ONLY nodes
1354 ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1358 -- Name: pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1361 ALTER TABLE ONLY pipeline_instances
1362 ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1366 -- Name: pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1369 ALTER TABLE ONLY pipeline_templates
1370 ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1374 -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1377 ALTER TABLE ONLY repositories
1378 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1382 -- Name: specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1385 ALTER TABLE ONLY specimens
1386 ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1390 -- Name: traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1393 ALTER TABLE ONLY traits
1394 ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1398 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1401 ALTER TABLE ONLY users
1402 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1406 -- Name: virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1409 ALTER TABLE ONLY virtual_machines
1410 ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1414 -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1417 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);
1421 -- Name: api_clients_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1424 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);
1428 -- Name: authorized_keys_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1431 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);
1435 -- Name: collection_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1438 CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree (owner_uuid, name) WHERE (expires_at IS NULL);
1442 -- Name: collections_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
1445 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)));
1449 -- Name: collections_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1452 CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, uuid, name);
1456 -- Name: container_requests_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
1459 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))));
1463 -- Name: container_requests_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1466 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);
1470 -- Name: containers_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1473 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);
1477 -- Name: groups_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
1480 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)));
1484 -- Name: groups_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1487 CREATE UNIQUE INDEX groups_owner_uuid_name_unique ON groups USING btree (owner_uuid, name);
1491 -- Name: groups_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1494 CREATE INDEX groups_search_index ON groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, group_class);
1498 -- Name: humans_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
1501 CREATE INDEX humans_search_index ON humans USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid);
1505 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1508 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1512 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
1515 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1519 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1522 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1526 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1529 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1533 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1536 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1540 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1543 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1547 -- Name: index_api_clients_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1550 CREATE INDEX index_api_clients_on_owner_uuid ON api_clients USING btree (owner_uuid);
1554 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1557 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1561 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1564 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1568 -- Name: index_authorized_keys_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1571 CREATE INDEX index_authorized_keys_on_owner_uuid ON authorized_keys USING btree (owner_uuid);
1575 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1578 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1582 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1585 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1589 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1592 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1596 -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1599 CREATE INDEX index_collections_on_owner_uuid ON collections USING btree (owner_uuid);
1603 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1606 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1610 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -; Tablespace:
1613 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1617 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -; Tablespace:
1620 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1624 -- Name: index_container_requests_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1627 CREATE INDEX index_container_requests_on_owner_uuid ON container_requests USING btree (owner_uuid);
1631 -- Name: index_container_requests_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1634 CREATE UNIQUE INDEX index_container_requests_on_uuid ON container_requests USING btree (uuid);
1638 -- Name: index_containers_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1641 CREATE INDEX index_containers_on_owner_uuid ON containers USING btree (owner_uuid);
1645 -- Name: index_containers_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1648 CREATE UNIQUE INDEX index_containers_on_uuid ON containers USING btree (uuid);
1652 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1655 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1659 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -; Tablespace:
1662 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1666 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1669 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1673 -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1676 CREATE INDEX index_groups_on_owner_uuid ON groups USING btree (owner_uuid);
1680 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1683 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1687 -- Name: index_humans_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1690 CREATE INDEX index_humans_on_owner_uuid ON humans USING btree (owner_uuid);
1694 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1697 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1701 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1704 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1708 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1711 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1715 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1718 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1722 -- Name: index_job_tasks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1725 CREATE INDEX index_job_tasks_on_owner_uuid ON job_tasks USING btree (owner_uuid);
1729 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -; Tablespace:
1732 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
1736 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -; Tablespace:
1739 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
1743 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1746 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
1750 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1753 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
1757 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1760 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
1764 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1767 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
1771 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -; Tablespace:
1774 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
1778 -- Name: index_jobs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1781 CREATE INDEX index_jobs_on_owner_uuid ON jobs USING btree (owner_uuid);
1785 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -; Tablespace:
1788 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
1792 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1795 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
1799 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1802 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
1806 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1809 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
1813 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1816 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
1820 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1823 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
1827 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1830 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
1834 -- Name: index_keep_disks_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1837 CREATE INDEX index_keep_disks_on_owner_uuid ON keep_disks USING btree (owner_uuid);
1841 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1844 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
1848 -- Name: index_keep_services_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1851 CREATE INDEX index_keep_services_on_owner_uuid ON keep_services USING btree (owner_uuid);
1855 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1858 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
1862 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1865 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
1869 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1872 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
1876 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1879 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
1883 -- Name: index_links_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1886 CREATE INDEX index_links_on_owner_uuid ON links USING btree (owner_uuid);
1890 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1893 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
1897 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1900 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
1904 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1907 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
1911 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1914 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
1918 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
1921 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
1925 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1928 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
1932 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1935 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
1939 -- Name: index_logs_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1942 CREATE INDEX index_logs_on_owner_uuid ON logs USING btree (owner_uuid);
1946 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -; Tablespace:
1949 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
1953 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1956 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
1960 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1963 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
1967 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1970 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
1974 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1977 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
1981 -- Name: index_nodes_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1984 CREATE INDEX index_nodes_on_owner_uuid ON nodes USING btree (owner_uuid);
1988 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -; Tablespace:
1991 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
1995 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1998 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
2002 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2005 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
2009 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2012 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
2016 -- Name: index_pipeline_instances_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2019 CREATE INDEX index_pipeline_instances_on_owner_uuid ON pipeline_instances USING btree (owner_uuid);
2023 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2026 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
2030 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2033 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
2037 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2040 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
2044 -- Name: index_pipeline_templates_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2047 CREATE INDEX index_pipeline_templates_on_owner_uuid ON pipeline_templates USING btree (owner_uuid);
2051 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2054 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
2058 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
2061 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
2065 -- Name: index_repositories_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2068 CREATE INDEX index_repositories_on_owner_uuid ON repositories USING btree (owner_uuid);
2072 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2075 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
2079 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2082 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
2086 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2089 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
2093 -- Name: index_specimens_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2096 CREATE INDEX index_specimens_on_owner_uuid ON specimens USING btree (owner_uuid);
2100 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2103 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
2107 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
2110 CREATE INDEX index_traits_on_name ON traits USING btree (name);
2114 -- Name: index_traits_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2117 CREATE INDEX index_traits_on_owner_uuid ON traits USING btree (owner_uuid);
2121 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2124 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
2128 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2131 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
2135 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
2138 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
2142 -- Name: index_users_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2145 CREATE INDEX index_users_on_owner_uuid ON users USING btree (owner_uuid);
2149 -- Name: index_users_on_username; Type: INDEX; Schema: public; Owner: -; Tablespace:
2152 CREATE UNIQUE INDEX index_users_on_username ON users USING btree (username);
2156 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2159 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
2163 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
2166 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
2170 -- Name: index_virtual_machines_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2173 CREATE INDEX index_virtual_machines_on_owner_uuid ON virtual_machines USING btree (owner_uuid);
2177 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
2180 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
2184 -- Name: job_tasks_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2187 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);
2191 -- Name: jobs_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2194 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)));
2198 -- Name: jobs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2201 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);
2205 -- Name: keep_disks_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2208 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);
2212 -- Name: keep_services_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2215 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);
2219 -- Name: links_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2222 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);
2226 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
2229 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
2233 -- Name: logs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2236 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);
2240 -- Name: nodes_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2243 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);
2247 -- Name: pipeline_instances_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2250 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)));
2254 -- Name: pipeline_instances_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2257 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);
2261 -- Name: pipeline_template_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
2264 CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON pipeline_templates USING btree (owner_uuid, name);
2268 -- Name: pipeline_templates_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
2271 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)));
2275 -- Name: pipeline_templates_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2278 CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2282 -- Name: repositories_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2285 CREATE INDEX repositories_search_index ON repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2289 -- Name: specimens_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2292 CREATE INDEX specimens_search_index ON specimens USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, material);
2296 -- Name: traits_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2299 CREATE INDEX traits_search_index ON traits USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name);
2303 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
2306 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
2310 -- Name: users_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2313 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);
2317 -- Name: virtual_machines_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
2320 CREATE INDEX virtual_machines_search_index ON virtual_machines USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, hostname);
2324 -- PostgreSQL database dump complete
2327 SET search_path TO "$user",public;
2329 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
2331 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
2333 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
2335 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
2337 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
2339 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
2341 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
2343 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
2345 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
2347 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
2349 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
2351 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
2353 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
2355 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
2357 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
2359 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
2361 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
2363 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
2365 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
2367 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
2369 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
2371 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
2373 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
2375 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
2377 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
2379 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
2381 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
2383 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
2385 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
2387 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
2389 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
2391 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
2393 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
2395 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
2397 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
2399 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
2401 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
2403 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
2405 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
2407 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
2409 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
2411 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
2413 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
2415 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
2417 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
2419 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
2421 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
2423 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
2425 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
2427 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
2429 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
2431 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
2433 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
2435 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
2437 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
2439 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
2441 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
2443 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
2445 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
2447 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
2449 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
2451 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
2453 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
2455 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
2457 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
2459 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
2461 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
2463 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
2465 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
2467 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
2469 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
2471 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
2473 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
2475 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
2477 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
2479 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
2481 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
2483 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
2485 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
2487 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
2489 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
2491 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
2493 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
2495 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
2497 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
2499 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
2501 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
2503 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
2505 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
2507 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
2509 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
2511 INSERT INTO schema_migrations (version) VALUES ('20140817035914');
2513 INSERT INTO schema_migrations (version) VALUES ('20140818125735');
2515 INSERT INTO schema_migrations (version) VALUES ('20140826180337');
2517 INSERT INTO schema_migrations (version) VALUES ('20140828141043');
2519 INSERT INTO schema_migrations (version) VALUES ('20140909183946');
2521 INSERT INTO schema_migrations (version) VALUES ('20140911221252');
2523 INSERT INTO schema_migrations (version) VALUES ('20140918141529');
2525 INSERT INTO schema_migrations (version) VALUES ('20140918153541');
2527 INSERT INTO schema_migrations (version) VALUES ('20140918153705');
2529 INSERT INTO schema_migrations (version) VALUES ('20140924091559');
2531 INSERT INTO schema_migrations (version) VALUES ('20141111133038');
2533 INSERT INTO schema_migrations (version) VALUES ('20141208164553');
2535 INSERT INTO schema_migrations (version) VALUES ('20141208174553');
2537 INSERT INTO schema_migrations (version) VALUES ('20141208174653');
2539 INSERT INTO schema_migrations (version) VALUES ('20141208185217');
2541 INSERT INTO schema_migrations (version) VALUES ('20150122175935');
2543 INSERT INTO schema_migrations (version) VALUES ('20150123142953');
2545 INSERT INTO schema_migrations (version) VALUES ('20150203180223');
2547 INSERT INTO schema_migrations (version) VALUES ('20150206210804');
2549 INSERT INTO schema_migrations (version) VALUES ('20150206230342');
2551 INSERT INTO schema_migrations (version) VALUES ('20150216193428');
2553 INSERT INTO schema_migrations (version) VALUES ('20150303210106');
2555 INSERT INTO schema_migrations (version) VALUES ('20150312151136');
2557 INSERT INTO schema_migrations (version) VALUES ('20150317132720');
2559 INSERT INTO schema_migrations (version) VALUES ('20150324152204');
2561 INSERT INTO schema_migrations (version) VALUES ('20150423145759');
2563 INSERT INTO schema_migrations (version) VALUES ('20150512193020');
2565 INSERT INTO schema_migrations (version) VALUES ('20150526180251');
2567 INSERT INTO schema_migrations (version) VALUES ('20151202151426');
2569 INSERT INTO schema_migrations (version) VALUES ('20151215134304');
2571 INSERT INTO schema_migrations (version) VALUES ('20151229214707');