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),
163 redundancy_confirmed_by_client_uuid character varying(255),
164 redundancy_confirmed_at timestamp without time zone,
165 redundancy_confirmed_as integer,
166 updated_at timestamp without time zone NOT NULL,
167 uuid character varying(255),
169 name character varying(255),
170 description character varying(255),
171 properties character varying(255),
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: groups; Type: TABLE; Schema: public; Owner: -; Tablespace:
266 CREATE TABLE groups (
268 uuid character varying(255),
269 owner_uuid character varying(255),
270 created_at timestamp without time zone NOT NULL,
271 modified_by_client_uuid character varying(255),
272 modified_by_user_uuid character varying(255),
273 modified_at timestamp without time zone,
274 name character varying(255),
276 updated_at timestamp without time zone NOT NULL,
277 group_class character varying(255)
282 -- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
285 CREATE SEQUENCE groups_id_seq
294 -- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
297 ALTER SEQUENCE groups_id_seq OWNED BY groups.id;
301 -- Name: humans; Type: TABLE; Schema: public; Owner: -; Tablespace:
304 CREATE TABLE humans (
306 uuid character varying(255) NOT NULL,
307 owner_uuid character varying(255) NOT NULL,
308 modified_by_client_uuid character varying(255),
309 modified_by_user_uuid character varying(255),
310 modified_at timestamp without time zone,
312 created_at timestamp without time zone NOT NULL,
313 updated_at timestamp without time zone NOT NULL
318 -- Name: humans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
321 CREATE SEQUENCE humans_id_seq
330 -- Name: humans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
333 ALTER SEQUENCE humans_id_seq OWNED BY humans.id;
337 -- Name: job_tasks; Type: TABLE; Schema: public; Owner: -; Tablespace:
340 CREATE TABLE job_tasks (
342 uuid character varying(255),
343 owner_uuid character varying(255),
344 modified_by_client_uuid character varying(255),
345 modified_by_user_uuid character varying(255),
346 modified_at timestamp without time zone,
347 job_uuid character varying(255),
351 progress double precision,
353 created_at timestamp without time zone NOT NULL,
354 updated_at timestamp without time zone NOT NULL,
355 created_by_job_task_uuid character varying(255),
361 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
364 CREATE SEQUENCE job_tasks_id_seq
373 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
376 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
380 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
383 CREATE SEQUENCE job_tasks_qsequence_seq
392 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
395 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
399 -- Name: jobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
404 uuid character varying(255),
405 owner_uuid character varying(255),
406 modified_by_client_uuid character varying(255),
407 modified_by_user_uuid character varying(255),
408 modified_at timestamp without time zone,
409 submit_id character varying(255),
410 script character varying(255),
411 script_version character varying(255),
412 script_parameters text,
413 cancelled_by_client_uuid character varying(255),
414 cancelled_by_user_uuid character varying(255),
415 cancelled_at timestamp without time zone,
416 started_at timestamp without time zone,
417 finished_at timestamp without time zone,
420 output character varying(255),
421 created_at timestamp without time zone NOT NULL,
422 updated_at timestamp without time zone NOT NULL,
423 priority character varying(255),
424 is_locked_by_uuid character varying(255),
425 log character varying(255),
427 runtime_constraints text,
428 nondeterministic boolean,
429 repository character varying(255),
430 output_is_persistent boolean DEFAULT false NOT NULL,
431 supplied_script_version character varying(255),
432 docker_image_locator character varying(255),
433 name character varying(255),
439 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
442 CREATE SEQUENCE jobs_id_seq
451 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
454 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
458 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -; Tablespace:
461 CREATE TABLE keep_disks (
463 uuid character varying(255) NOT NULL,
464 owner_uuid character varying(255) NOT NULL,
465 modified_by_client_uuid character varying(255),
466 modified_by_user_uuid character varying(255),
467 modified_at timestamp without time zone,
468 ping_secret character varying(255) NOT NULL,
469 node_uuid character varying(255),
470 filesystem_uuid character varying(255),
473 is_readable boolean DEFAULT true NOT NULL,
474 is_writable boolean DEFAULT true NOT NULL,
475 last_read_at timestamp without time zone,
476 last_write_at timestamp without time zone,
477 last_ping_at timestamp without time zone,
478 created_at timestamp without time zone NOT NULL,
479 updated_at timestamp without time zone NOT NULL,
480 keep_service_uuid character varying(255)
485 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
488 CREATE SEQUENCE keep_disks_id_seq
497 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
500 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
504 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
507 CREATE TABLE keep_services (
509 uuid character varying(255) NOT NULL,
510 owner_uuid character varying(255) NOT NULL,
511 modified_by_client_uuid character varying(255),
512 modified_by_user_uuid character varying(255),
513 modified_at timestamp without time zone,
514 service_host character varying(255),
515 service_port integer,
516 service_ssl_flag boolean,
517 service_type character varying(255),
518 created_at timestamp without time zone NOT NULL,
519 updated_at timestamp without time zone NOT NULL
524 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
527 CREATE SEQUENCE keep_services_id_seq
536 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
539 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
543 -- Name: links; Type: TABLE; Schema: public; Owner: -; Tablespace:
548 uuid character varying(255),
549 owner_uuid character varying(255),
550 created_at timestamp without time zone NOT NULL,
551 modified_by_client_uuid character varying(255),
552 modified_by_user_uuid character varying(255),
553 modified_at timestamp without time zone,
554 tail_uuid character varying(255),
555 link_class character varying(255),
556 name character varying(255),
557 head_uuid character varying(255),
559 updated_at timestamp without time zone NOT NULL
564 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
567 CREATE SEQUENCE links_id_seq
576 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
579 ALTER SEQUENCE links_id_seq OWNED BY links.id;
583 -- Name: logs; Type: TABLE; Schema: public; Owner: -; Tablespace:
588 uuid character varying(255),
589 owner_uuid character varying(255),
590 modified_by_client_uuid character varying(255),
591 modified_by_user_uuid character varying(255),
592 object_uuid character varying(255),
593 event_at timestamp without time zone,
594 event_type character varying(255),
597 created_at timestamp without time zone NOT NULL,
598 updated_at timestamp without time zone NOT NULL,
599 modified_at timestamp without time zone,
600 object_owner_uuid character varying(255)
605 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
608 CREATE SEQUENCE logs_id_seq
617 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
620 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
624 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
629 uuid character varying(255),
630 owner_uuid character varying(255),
631 created_at timestamp without time zone NOT NULL,
632 modified_by_client_uuid character varying(255),
633 modified_by_user_uuid character varying(255),
634 modified_at timestamp without time zone,
636 hostname character varying(255),
637 domain character varying(255),
638 ip_address character varying(255),
639 first_ping_at timestamp without time zone,
640 last_ping_at timestamp without time zone,
642 updated_at timestamp without time zone NOT NULL
647 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
650 CREATE SEQUENCE nodes_id_seq
659 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
662 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
666 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -; Tablespace:
669 CREATE TABLE pipeline_instances (
671 uuid character varying(255),
672 owner_uuid character varying(255),
673 created_at timestamp without time zone NOT NULL,
674 modified_by_client_uuid character varying(255),
675 modified_by_user_uuid character varying(255),
676 modified_at timestamp without time zone,
677 pipeline_template_uuid character varying(255),
678 name character varying(255),
680 updated_at timestamp without time zone NOT NULL,
682 state character varying(255),
683 components_summary text,
689 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
692 CREATE SEQUENCE pipeline_instances_id_seq
701 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
704 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
708 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
711 CREATE TABLE pipeline_templates (
713 uuid character varying(255),
714 owner_uuid character varying(255),
715 created_at timestamp without time zone NOT NULL,
716 modified_by_client_uuid character varying(255),
717 modified_by_user_uuid character varying(255),
718 modified_at timestamp without time zone,
719 name character varying(255),
721 updated_at timestamp without time zone NOT NULL,
727 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
730 CREATE SEQUENCE pipeline_templates_id_seq
739 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
742 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
746 -- Name: repositories; Type: TABLE; Schema: public; Owner: -; Tablespace:
749 CREATE TABLE repositories (
751 uuid character varying(255) NOT NULL,
752 owner_uuid character varying(255) NOT NULL,
753 modified_by_client_uuid character varying(255),
754 modified_by_user_uuid character varying(255),
755 modified_at timestamp without time zone,
756 name character varying(255),
757 fetch_url character varying(255),
758 push_url character varying(255),
759 created_at timestamp without time zone NOT NULL,
760 updated_at timestamp without time zone NOT NULL
765 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
768 CREATE SEQUENCE repositories_id_seq
777 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
780 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
784 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
787 CREATE TABLE schema_migrations (
788 version character varying(255) NOT NULL
793 -- Name: specimens; Type: TABLE; Schema: public; Owner: -; Tablespace:
796 CREATE TABLE specimens (
798 uuid character varying(255),
799 owner_uuid character varying(255),
800 created_at timestamp without time zone NOT NULL,
801 modified_by_client_uuid character varying(255),
802 modified_by_user_uuid character varying(255),
803 modified_at timestamp without time zone,
804 material character varying(255),
805 updated_at timestamp without time zone NOT NULL,
811 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
814 CREATE SEQUENCE specimens_id_seq
823 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
826 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
830 -- Name: traits; Type: TABLE; Schema: public; Owner: -; Tablespace:
833 CREATE TABLE traits (
835 uuid character varying(255) NOT NULL,
836 owner_uuid character varying(255) NOT NULL,
837 modified_by_client_uuid character varying(255),
838 modified_by_user_uuid character varying(255),
839 modified_at timestamp without time zone,
840 name character varying(255),
842 created_at timestamp without time zone NOT NULL,
843 updated_at timestamp without time zone NOT NULL
848 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
851 CREATE SEQUENCE traits_id_seq
860 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
863 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
867 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
872 uuid character varying(255),
873 owner_uuid character varying(255),
874 created_at timestamp without time zone NOT NULL,
875 modified_by_client_uuid character varying(255),
876 modified_by_user_uuid character varying(255),
877 modified_at timestamp without time zone,
878 email character varying(255),
879 first_name character varying(255),
880 last_name character varying(255),
881 identity_url character varying(255),
884 updated_at timestamp without time zone NOT NULL,
885 default_owner_uuid character varying(255),
886 is_active boolean DEFAULT false
891 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
894 CREATE SEQUENCE users_id_seq
903 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
906 ALTER SEQUENCE users_id_seq OWNED BY users.id;
910 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -; Tablespace:
913 CREATE TABLE virtual_machines (
915 uuid character varying(255) NOT NULL,
916 owner_uuid character varying(255) NOT NULL,
917 modified_by_client_uuid character varying(255),
918 modified_by_user_uuid character varying(255),
919 modified_at timestamp without time zone,
920 hostname character varying(255),
921 created_at timestamp without time zone NOT NULL,
922 updated_at timestamp without time zone NOT NULL
927 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
930 CREATE SEQUENCE virtual_machines_id_seq
939 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
942 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
946 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
949 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
953 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
956 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
960 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
963 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
967 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
970 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
974 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
977 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
981 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
984 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
988 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
991 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
995 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
998 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
1002 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1005 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1009 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1012 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1016 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1019 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1023 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1026 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1030 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1033 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1037 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1040 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1044 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1047 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1051 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1054 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1058 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1061 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1065 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1068 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1072 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1075 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1079 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1082 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1086 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1089 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1093 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1096 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1100 -- Name: api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1103 ALTER TABLE ONLY api_client_authorizations
1104 ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1108 -- Name: api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1111 ALTER TABLE ONLY api_clients
1112 ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1116 -- Name: authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1119 ALTER TABLE ONLY authorized_keys
1120 ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1124 -- Name: collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1127 ALTER TABLE ONLY collections
1128 ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1132 -- Name: commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1135 ALTER TABLE ONLY commit_ancestors
1136 ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1140 -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1143 ALTER TABLE ONLY commits
1144 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1148 -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1151 ALTER TABLE ONLY groups
1152 ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1156 -- Name: humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1159 ALTER TABLE ONLY humans
1160 ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1164 -- Name: job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1167 ALTER TABLE ONLY job_tasks
1168 ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1172 -- Name: jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1175 ALTER TABLE ONLY jobs
1176 ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1180 -- Name: keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1183 ALTER TABLE ONLY keep_disks
1184 ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1188 -- Name: keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1191 ALTER TABLE ONLY keep_services
1192 ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1196 -- Name: links_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1199 ALTER TABLE ONLY links
1200 ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1204 -- Name: logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1207 ALTER TABLE ONLY logs
1208 ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1212 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1215 ALTER TABLE ONLY nodes
1216 ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1220 -- Name: pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1223 ALTER TABLE ONLY pipeline_instances
1224 ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1228 -- Name: pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1231 ALTER TABLE ONLY pipeline_templates
1232 ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1236 -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1239 ALTER TABLE ONLY repositories
1240 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1244 -- Name: specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1247 ALTER TABLE ONLY specimens
1248 ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1252 -- Name: traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1255 ALTER TABLE ONLY traits
1256 ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1260 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1263 ALTER TABLE ONLY users
1264 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1268 -- Name: virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1271 ALTER TABLE ONLY virtual_machines
1272 ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1276 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1279 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1283 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
1286 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1290 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1293 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1297 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1300 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1304 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1307 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1311 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1314 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1318 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1321 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1325 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1328 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1332 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1335 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1339 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1342 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1346 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1349 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1353 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1356 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1360 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -; Tablespace:
1363 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1367 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -; Tablespace:
1370 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1374 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1377 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1381 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -; Tablespace:
1384 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1388 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1391 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1395 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1398 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1402 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1405 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1409 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1412 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1416 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1419 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1423 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1426 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1430 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -; Tablespace:
1433 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
1437 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -; Tablespace:
1440 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
1444 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1447 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
1451 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1454 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
1458 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1461 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
1465 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1468 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
1472 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -; Tablespace:
1475 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
1479 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -; Tablespace:
1482 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
1486 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1489 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
1493 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1496 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
1500 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1503 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
1507 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1510 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
1514 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1517 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
1521 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1524 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
1528 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1531 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
1535 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1538 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
1542 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1545 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
1549 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1552 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
1556 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1559 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
1563 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1566 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
1570 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1573 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
1577 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1580 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
1584 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1587 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
1591 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
1594 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
1598 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1601 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
1605 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1608 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
1612 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -; Tablespace:
1615 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
1619 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1622 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
1626 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1629 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
1633 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1636 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
1640 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1643 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
1647 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -; Tablespace:
1650 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
1654 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1657 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
1661 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1664 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
1668 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1671 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
1675 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1678 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
1682 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1685 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
1689 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1692 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
1696 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1699 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
1703 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1706 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
1710 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1713 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
1717 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1720 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
1724 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1727 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
1731 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1734 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
1738 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1741 CREATE INDEX index_traits_on_name ON traits USING btree (name);
1745 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1748 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
1752 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1755 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
1759 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1762 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
1766 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1769 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
1773 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1776 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
1780 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1783 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
1787 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1790 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
1794 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
1797 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
1801 -- PostgreSQL database dump complete
1804 SET search_path TO "$user",public;
1806 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
1808 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
1810 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
1812 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
1814 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
1816 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
1818 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
1820 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
1822 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
1824 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
1826 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
1828 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
1830 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
1832 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
1834 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
1836 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
1838 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
1840 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
1842 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
1844 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
1846 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
1848 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
1850 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
1852 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
1854 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
1856 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
1858 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
1860 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
1862 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
1864 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
1866 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
1868 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
1870 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
1872 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
1874 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
1876 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
1878 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
1880 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
1882 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
1884 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
1886 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
1888 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
1890 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
1892 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
1894 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
1896 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
1898 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
1900 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
1902 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
1904 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
1906 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
1908 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
1910 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
1912 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
1914 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
1916 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
1918 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
1920 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
1922 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
1924 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
1926 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
1928 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
1930 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
1932 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
1934 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
1936 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
1938 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
1940 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
1942 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
1944 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
1946 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
1948 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
1950 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
1952 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
1954 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
1956 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
1958 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
1960 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
1962 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
1964 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
1966 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
1968 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
1970 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
1972 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
1974 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
1976 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
1978 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
1980 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
1982 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
1984 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
1986 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
1988 INSERT INTO schema_migrations (version) VALUES ('20140815171049');