2 -- PostgreSQL database dump
5 SET statement_timeout = 0;
7 SET client_encoding = 'UTF8';
8 SET standard_conforming_strings = on;
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 search_path = public, pg_catalog;
28 SET default_tablespace = '';
30 SET default_with_oids = false;
33 -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: -; Tablespace:
36 CREATE TABLE api_client_authorizations (
38 api_token character varying(255) NOT NULL,
39 api_client_id integer NOT NULL,
40 user_id integer NOT NULL,
41 created_by_ip_address character varying(255),
42 last_used_by_ip_address character varying(255),
43 last_used_at timestamp without time zone,
44 expires_at timestamp without time zone,
45 created_at timestamp without time zone NOT NULL,
46 updated_at timestamp without time zone NOT NULL,
47 default_owner_uuid character varying(255),
48 scopes text DEFAULT '---
55 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
58 CREATE SEQUENCE api_client_authorizations_id_seq
67 -- Name: api_client_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
70 ALTER SEQUENCE api_client_authorizations_id_seq OWNED BY api_client_authorizations.id;
74 -- Name: api_clients; Type: TABLE; Schema: public; Owner: -; Tablespace:
77 CREATE TABLE api_clients (
79 uuid character varying(255),
80 owner_uuid character varying(255),
81 modified_by_client_uuid character varying(255),
82 modified_by_user_uuid character varying(255),
83 modified_at timestamp without time zone,
84 name character varying(255),
85 url_prefix character varying(255),
86 created_at timestamp without time zone NOT NULL,
87 updated_at timestamp without time zone NOT NULL,
88 is_trusted boolean DEFAULT false
93 -- Name: api_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: -
96 CREATE SEQUENCE api_clients_id_seq
105 -- Name: api_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
108 ALTER SEQUENCE api_clients_id_seq OWNED BY api_clients.id;
112 -- Name: authorized_keys; Type: TABLE; Schema: public; Owner: -; Tablespace:
115 CREATE TABLE authorized_keys (
117 uuid character varying(255) NOT NULL,
118 owner_uuid character varying(255) NOT NULL,
119 modified_by_client_uuid character varying(255),
120 modified_by_user_uuid character varying(255),
121 modified_at timestamp without time zone,
122 name character varying(255),
123 key_type character varying(255),
124 authorized_user_uuid character varying(255),
126 expires_at timestamp without time zone,
127 created_at timestamp without time zone NOT NULL,
128 updated_at timestamp without time zone NOT NULL
133 -- Name: authorized_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
136 CREATE SEQUENCE authorized_keys_id_seq
145 -- Name: authorized_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
148 ALTER SEQUENCE authorized_keys_id_seq OWNED BY authorized_keys.id;
152 -- Name: collections; Type: TABLE; Schema: public; Owner: -; Tablespace:
155 CREATE TABLE collections (
157 locator character varying(255),
158 owner_uuid character varying(255),
159 created_at timestamp without time zone NOT NULL,
160 modified_by_client_uuid character varying(255),
161 modified_by_user_uuid character varying(255),
162 modified_at timestamp without time zone,
163 portable_data_hash character varying(255),
165 redundancy_confirmed_by_client_uuid character varying(255),
166 redundancy_confirmed_at timestamp without time zone,
167 redundancy_confirmed_as integer,
168 updated_at timestamp without time zone NOT NULL,
169 uuid character varying(255),
175 -- Name: collections_id_seq; Type: SEQUENCE; Schema: public; Owner: -
178 CREATE SEQUENCE collections_id_seq
187 -- Name: collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
190 ALTER SEQUENCE collections_id_seq OWNED BY collections.id;
194 -- Name: commit_ancestors; Type: TABLE; Schema: public; Owner: -; Tablespace:
197 CREATE TABLE commit_ancestors (
199 repository_name character varying(255),
200 descendant character varying(255) NOT NULL,
201 ancestor character varying(255) NOT NULL,
202 "is" boolean DEFAULT false NOT NULL,
203 created_at timestamp without time zone NOT NULL,
204 updated_at timestamp without time zone NOT NULL
209 -- Name: commit_ancestors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
212 CREATE SEQUENCE commit_ancestors_id_seq
221 -- Name: commit_ancestors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
224 ALTER SEQUENCE commit_ancestors_id_seq OWNED BY commit_ancestors.id;
228 -- Name: commits; Type: TABLE; Schema: public; Owner: -; Tablespace:
231 CREATE TABLE commits (
233 repository_name character varying(255),
234 sha1 character varying(255),
235 message character varying(255),
236 created_at timestamp without time zone NOT NULL,
237 updated_at timestamp without time zone NOT NULL
242 -- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
245 CREATE SEQUENCE commits_id_seq
254 -- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
257 ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
261 -- Name: groups; Type: TABLE; Schema: public; Owner: -; Tablespace:
264 CREATE TABLE groups (
266 uuid character varying(255),
267 owner_uuid character varying(255),
268 created_at timestamp without time zone NOT NULL,
269 modified_by_client_uuid character varying(255),
270 modified_by_user_uuid character varying(255),
271 modified_at timestamp without time zone,
272 name character varying(255),
274 updated_at timestamp without time zone NOT NULL,
275 group_class character varying(255)
280 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
283 CREATE SEQUENCE groups_id_seq
292 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
295 ALTER SEQUENCE groups_id_seq OWNED BY groups.id;
299 -- Name: humans; Type: TABLE; Schema: public; Owner: -; Tablespace:
302 CREATE TABLE humans (
304 uuid character varying(255) NOT NULL,
305 owner_uuid character varying(255) NOT NULL,
306 modified_by_client_uuid character varying(255),
307 modified_by_user_uuid character varying(255),
308 modified_at timestamp without time zone,
310 created_at timestamp without time zone NOT NULL,
311 updated_at timestamp without time zone NOT NULL
316 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
319 CREATE SEQUENCE humans_id_seq
328 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
331 ALTER SEQUENCE humans_id_seq OWNED BY humans.id;
335 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
338 CREATE TABLE job_tasks (
340 uuid character varying(255),
341 owner_uuid character varying(255),
342 modified_by_client_uuid character varying(255),
343 modified_by_user_uuid character varying(255),
344 modified_at timestamp without time zone,
345 job_uuid character varying(255),
349 progress double precision,
351 created_at timestamp without time zone NOT NULL,
352 updated_at timestamp without time zone NOT NULL,
353 created_by_job_task_uuid character varying(255),
359 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
362 CREATE SEQUENCE job_tasks_id_seq
371 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
374 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
378 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
381 CREATE SEQUENCE job_tasks_qsequence_seq
390 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
393 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
397 -- Name: jobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
402 uuid character varying(255),
403 owner_uuid character varying(255),
404 modified_by_client_uuid character varying(255),
405 modified_by_user_uuid character varying(255),
406 modified_at timestamp without time zone,
407 submit_id character varying(255),
408 script character varying(255),
409 script_version character varying(255),
410 script_parameters text,
411 cancelled_by_client_uuid character varying(255),
412 cancelled_by_user_uuid character varying(255),
413 cancelled_at timestamp without time zone,
414 started_at timestamp without time zone,
415 finished_at timestamp without time zone,
418 output character varying(255),
419 created_at timestamp without time zone NOT NULL,
420 updated_at timestamp without time zone NOT NULL,
421 priority character varying(255),
422 is_locked_by_uuid character varying(255),
423 log character varying(255),
425 runtime_constraints text,
426 nondeterministic boolean,
427 repository character varying(255),
428 output_is_persistent boolean DEFAULT false NOT NULL,
429 supplied_script_version character varying(255),
430 docker_image_locator character varying(255)
435 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
438 CREATE SEQUENCE jobs_id_seq
447 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
450 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
454 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -; Tablespace:
457 CREATE TABLE keep_disks (
459 uuid character varying(255) NOT NULL,
460 owner_uuid character varying(255) NOT NULL,
461 modified_by_client_uuid character varying(255),
462 modified_by_user_uuid character varying(255),
463 modified_at timestamp without time zone,
464 ping_secret character varying(255) NOT NULL,
465 node_uuid character varying(255),
466 filesystem_uuid character varying(255),
469 is_readable boolean DEFAULT true NOT NULL,
470 is_writable boolean DEFAULT true NOT NULL,
471 last_read_at timestamp without time zone,
472 last_write_at timestamp without time zone,
473 last_ping_at timestamp without time zone,
474 created_at timestamp without time zone NOT NULL,
475 updated_at timestamp without time zone NOT NULL,
476 keep_service_uuid character varying(255)
481 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
484 CREATE SEQUENCE keep_disks_id_seq
493 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
496 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
500 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
503 CREATE TABLE keep_services (
505 uuid character varying(255) NOT NULL,
506 owner_uuid character varying(255) NOT NULL,
507 modified_by_client_uuid character varying(255),
508 modified_by_user_uuid character varying(255),
509 modified_at timestamp without time zone,
510 service_host character varying(255),
511 service_port integer,
512 service_ssl_flag boolean,
513 service_type character varying(255),
514 created_at timestamp without time zone NOT NULL,
515 updated_at timestamp without time zone NOT NULL
520 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
523 CREATE SEQUENCE keep_services_id_seq
532 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
535 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
539 -- Name: links; Type: TABLE; Schema: public; Owner: -; Tablespace:
544 uuid character varying(255),
545 owner_uuid character varying(255),
546 created_at timestamp without time zone NOT NULL,
547 modified_by_client_uuid character varying(255),
548 modified_by_user_uuid character varying(255),
549 modified_at timestamp without time zone,
550 tail_uuid character varying(255),
551 link_class character varying(255),
552 name character varying(255),
553 head_uuid character varying(255),
555 updated_at timestamp without time zone NOT NULL
560 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
563 CREATE SEQUENCE links_id_seq
572 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
575 ALTER SEQUENCE links_id_seq OWNED BY links.id;
579 -- Name: logs; Type: TABLE; Schema: public; Owner: -; Tablespace:
584 uuid character varying(255),
585 owner_uuid character varying(255),
586 modified_by_client_uuid character varying(255),
587 modified_by_user_uuid character varying(255),
588 object_uuid character varying(255),
589 event_at timestamp without time zone,
590 event_type character varying(255),
593 created_at timestamp without time zone NOT NULL,
594 updated_at timestamp without time zone NOT NULL,
595 modified_at timestamp without time zone,
596 object_owner_uuid character varying(255)
601 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
604 CREATE SEQUENCE logs_id_seq
613 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
616 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
620 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
625 uuid character varying(255),
626 owner_uuid character varying(255),
627 created_at timestamp without time zone NOT NULL,
628 modified_by_client_uuid character varying(255),
629 modified_by_user_uuid character varying(255),
630 modified_at timestamp without time zone,
632 hostname character varying(255),
633 domain character varying(255),
634 ip_address character varying(255),
635 first_ping_at timestamp without time zone,
636 last_ping_at timestamp without time zone,
638 updated_at timestamp without time zone NOT NULL
643 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
646 CREATE SEQUENCE nodes_id_seq
655 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
658 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
662 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -; Tablespace:
665 CREATE TABLE pipeline_instances (
667 uuid character varying(255),
668 owner_uuid character varying(255),
669 created_at timestamp without time zone NOT NULL,
670 modified_by_client_uuid character varying(255),
671 modified_by_user_uuid character varying(255),
672 modified_at timestamp without time zone,
673 pipeline_template_uuid character varying(255),
674 name character varying(255),
676 updated_at timestamp without time zone NOT NULL,
678 state character varying(255),
679 components_summary text
684 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
687 CREATE SEQUENCE pipeline_instances_id_seq
696 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
699 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
703 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
706 CREATE TABLE pipeline_templates (
708 uuid character varying(255),
709 owner_uuid character varying(255),
710 created_at timestamp without time zone NOT NULL,
711 modified_by_client_uuid character varying(255),
712 modified_by_user_uuid character varying(255),
713 modified_at timestamp without time zone,
714 name character varying(255),
716 updated_at timestamp without time zone NOT NULL,
722 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
725 CREATE SEQUENCE pipeline_templates_id_seq
734 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
737 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
741 -- Name: repositories; Type: TABLE; Schema: public; Owner: -; Tablespace:
744 CREATE TABLE repositories (
746 uuid character varying(255) NOT NULL,
747 owner_uuid character varying(255) NOT NULL,
748 modified_by_client_uuid character varying(255),
749 modified_by_user_uuid character varying(255),
750 modified_at timestamp without time zone,
751 name character varying(255),
752 fetch_url character varying(255),
753 push_url character varying(255),
754 created_at timestamp without time zone NOT NULL,
755 updated_at timestamp without time zone NOT NULL
760 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
763 CREATE SEQUENCE repositories_id_seq
772 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
775 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
779 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
782 CREATE TABLE schema_migrations (
783 version character varying(255) NOT NULL
788 -- Name: specimens; Type: TABLE; Schema: public; Owner: -; Tablespace:
791 CREATE TABLE specimens (
793 uuid character varying(255),
794 owner_uuid character varying(255),
795 created_at timestamp without time zone NOT NULL,
796 modified_by_client_uuid character varying(255),
797 modified_by_user_uuid character varying(255),
798 modified_at timestamp without time zone,
799 material character varying(255),
800 updated_at timestamp without time zone NOT NULL,
806 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
809 CREATE SEQUENCE specimens_id_seq
818 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
821 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
825 -- Name: traits; Type: TABLE; Schema: public; Owner: -; Tablespace:
828 CREATE TABLE traits (
830 uuid character varying(255) NOT NULL,
831 owner_uuid character varying(255) NOT NULL,
832 modified_by_client_uuid character varying(255),
833 modified_by_user_uuid character varying(255),
834 modified_at timestamp without time zone,
835 name character varying(255),
837 created_at timestamp without time zone NOT NULL,
838 updated_at timestamp without time zone NOT NULL
843 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
846 CREATE SEQUENCE traits_id_seq
855 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
858 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
862 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
867 uuid character varying(255),
868 owner_uuid character varying(255),
869 created_at timestamp without time zone NOT NULL,
870 modified_by_client_uuid character varying(255),
871 modified_by_user_uuid character varying(255),
872 modified_at timestamp without time zone,
873 email character varying(255),
874 first_name character varying(255),
875 last_name character varying(255),
876 identity_url character varying(255),
879 updated_at timestamp without time zone NOT NULL,
880 default_owner_uuid character varying(255),
881 is_active boolean DEFAULT false
886 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
889 CREATE SEQUENCE users_id_seq
898 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
901 ALTER SEQUENCE users_id_seq OWNED BY users.id;
905 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -; Tablespace:
908 CREATE TABLE virtual_machines (
910 uuid character varying(255) NOT NULL,
911 owner_uuid character varying(255) NOT NULL,
912 modified_by_client_uuid character varying(255),
913 modified_by_user_uuid character varying(255),
914 modified_at timestamp without time zone,
915 hostname character varying(255),
916 created_at timestamp without time zone NOT NULL,
917 updated_at timestamp without time zone NOT NULL
922 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
925 CREATE SEQUENCE virtual_machines_id_seq
934 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
937 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
941 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
944 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
948 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
951 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
955 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
958 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
962 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
965 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
969 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
972 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
976 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
979 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
983 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
986 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
990 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
993 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
997 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1000 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1004 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1007 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1011 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1014 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1018 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1021 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1025 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1028 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1032 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1035 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1039 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1042 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1046 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1049 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1053 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1056 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1060 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1063 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1067 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1070 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1074 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1077 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1081 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1084 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1088 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1091 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1095 -- Name: api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1098 ALTER TABLE ONLY api_client_authorizations
1099 ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1103 -- Name: api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1106 ALTER TABLE ONLY api_clients
1107 ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1111 -- Name: authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1114 ALTER TABLE ONLY authorized_keys
1115 ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1119 -- Name: collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1122 ALTER TABLE ONLY collections
1123 ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1127 -- Name: commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1130 ALTER TABLE ONLY commit_ancestors
1131 ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1135 -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1138 ALTER TABLE ONLY commits
1139 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1143 -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1146 ALTER TABLE ONLY groups
1147 ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1151 -- Name: humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1154 ALTER TABLE ONLY humans
1155 ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1159 -- Name: job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1162 ALTER TABLE ONLY job_tasks
1163 ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1167 -- Name: jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1170 ALTER TABLE ONLY jobs
1171 ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1175 -- Name: keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1178 ALTER TABLE ONLY keep_disks
1179 ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1183 -- Name: keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1186 ALTER TABLE ONLY keep_services
1187 ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1191 -- Name: links_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1194 ALTER TABLE ONLY links
1195 ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1199 -- Name: logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1202 ALTER TABLE ONLY logs
1203 ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1207 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1210 ALTER TABLE ONLY nodes
1211 ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1215 -- Name: pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1218 ALTER TABLE ONLY pipeline_instances
1219 ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1223 -- Name: pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1226 ALTER TABLE ONLY pipeline_templates
1227 ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1231 -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1234 ALTER TABLE ONLY repositories
1235 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1239 -- Name: specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1242 ALTER TABLE ONLY specimens
1243 ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1247 -- Name: traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1250 ALTER TABLE ONLY traits
1251 ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1255 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1258 ALTER TABLE ONLY users
1259 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1263 -- Name: virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1266 ALTER TABLE ONLY virtual_machines
1267 ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1271 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1274 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1278 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
1281 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1285 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1288 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1292 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1295 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1299 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1302 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1306 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1309 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1313 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1316 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1320 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1323 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1327 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1330 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1334 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1337 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1341 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1344 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1348 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1351 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1355 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -; Tablespace:
1358 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1362 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -; Tablespace:
1365 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1369 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1372 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1376 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -; Tablespace:
1379 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1383 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1386 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1390 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1393 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1397 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1400 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1404 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1407 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1411 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1414 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1418 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1421 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1425 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -; Tablespace:
1428 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
1432 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -; Tablespace:
1435 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
1439 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1442 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
1446 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1449 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
1453 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1456 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
1460 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1463 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
1467 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -; Tablespace:
1470 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
1474 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -; Tablespace:
1477 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
1481 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1484 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
1488 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1491 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
1495 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1498 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
1502 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1505 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
1509 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1512 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
1516 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1519 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
1523 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1526 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
1530 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1533 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
1537 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1540 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
1544 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1547 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
1551 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1554 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
1558 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1561 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
1565 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1568 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
1572 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1575 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
1579 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1582 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
1586 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
1589 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
1593 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1596 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
1600 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1603 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
1607 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -; Tablespace:
1610 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
1614 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1617 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
1621 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1624 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
1628 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1631 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
1635 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1638 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
1642 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -; Tablespace:
1645 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
1649 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1652 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
1656 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1659 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
1663 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1666 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
1670 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1673 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
1677 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1680 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
1684 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1687 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
1691 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1694 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
1698 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1701 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
1705 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1708 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
1712 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1715 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
1719 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1722 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
1726 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1729 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
1733 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1736 CREATE INDEX index_traits_on_name ON traits USING btree (name);
1740 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1743 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
1747 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1750 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
1754 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1757 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
1761 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1764 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
1768 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1771 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
1775 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1778 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
1782 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1785 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
1789 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
1792 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
1796 -- PostgreSQL database dump complete
1799 SET search_path TO "$user",public;
1801 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
1803 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
1805 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
1807 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
1809 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
1811 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
1813 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
1815 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
1817 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
1819 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
1821 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
1823 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
1825 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
1827 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
1829 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
1831 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
1833 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
1835 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
1837 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
1839 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
1841 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
1843 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
1845 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
1847 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
1849 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
1851 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
1853 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
1855 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
1857 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
1859 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
1861 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
1863 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
1865 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
1867 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
1869 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
1871 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
1873 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
1875 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
1877 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
1879 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
1881 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
1883 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
1885 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
1887 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
1889 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
1891 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
1893 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
1895 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
1897 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
1899 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
1901 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
1903 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
1905 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
1907 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
1909 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
1911 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
1913 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
1915 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
1917 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
1919 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
1921 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
1923 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
1925 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
1927 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
1929 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
1931 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
1933 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
1935 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
1937 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
1939 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
1941 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
1943 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
1945 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
1947 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
1949 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
1951 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
1953 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
1955 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
1957 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
1959 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
1961 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
1963 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
1965 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
1967 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
1969 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
1971 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
1973 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
1975 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
1977 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
1979 INSERT INTO schema_migrations (version) VALUES ('20140714184006');