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),
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) NOT NULL,
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),
357 started_at timestamp without time zone,
358 finished_at timestamp without time zone
363 -- Name: job_tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
366 CREATE SEQUENCE job_tasks_id_seq
375 -- Name: job_tasks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
378 ALTER SEQUENCE job_tasks_id_seq OWNED BY job_tasks.id;
382 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE; Schema: public; Owner: -
385 CREATE SEQUENCE job_tasks_qsequence_seq
394 -- Name: job_tasks_qsequence_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
397 ALTER SEQUENCE job_tasks_qsequence_seq OWNED BY job_tasks.qsequence;
401 -- Name: jobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
406 uuid character varying(255),
407 owner_uuid character varying(255),
408 modified_by_client_uuid character varying(255),
409 modified_by_user_uuid character varying(255),
410 modified_at timestamp without time zone,
411 submit_id character varying(255),
412 script character varying(255),
413 script_version character varying(255),
414 script_parameters text,
415 cancelled_by_client_uuid character varying(255),
416 cancelled_by_user_uuid character varying(255),
417 cancelled_at timestamp without time zone,
418 started_at timestamp without time zone,
419 finished_at timestamp without time zone,
422 output character varying(255),
423 created_at timestamp without time zone NOT NULL,
424 updated_at timestamp without time zone NOT NULL,
425 is_locked_by_uuid character varying(255),
426 log character varying(255),
428 runtime_constraints text,
429 nondeterministic boolean,
430 repository character varying(255),
431 supplied_script_version character varying(255),
432 docker_image_locator character varying(255),
433 priority integer DEFAULT 0 NOT NULL,
435 state character varying(255)
440 -- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
443 CREATE SEQUENCE jobs_id_seq
452 -- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
455 ALTER SEQUENCE jobs_id_seq OWNED BY jobs.id;
459 -- Name: keep_disks; Type: TABLE; Schema: public; Owner: -; Tablespace:
462 CREATE TABLE keep_disks (
464 uuid character varying(255) NOT NULL,
465 owner_uuid character varying(255) NOT NULL,
466 modified_by_client_uuid character varying(255),
467 modified_by_user_uuid character varying(255),
468 modified_at timestamp without time zone,
469 ping_secret character varying(255) NOT NULL,
470 node_uuid character varying(255),
471 filesystem_uuid character varying(255),
474 is_readable boolean DEFAULT true NOT NULL,
475 is_writable boolean DEFAULT true NOT NULL,
476 last_read_at timestamp without time zone,
477 last_write_at timestamp without time zone,
478 last_ping_at timestamp without time zone,
479 created_at timestamp without time zone NOT NULL,
480 updated_at timestamp without time zone NOT NULL,
481 keep_service_uuid character varying(255)
486 -- Name: keep_disks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
489 CREATE SEQUENCE keep_disks_id_seq
498 -- Name: keep_disks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
501 ALTER SEQUENCE keep_disks_id_seq OWNED BY keep_disks.id;
505 -- Name: keep_services; Type: TABLE; Schema: public; Owner: -; Tablespace:
508 CREATE TABLE keep_services (
510 uuid character varying(255) NOT NULL,
511 owner_uuid character varying(255) NOT NULL,
512 modified_by_client_uuid character varying(255),
513 modified_by_user_uuid character varying(255),
514 modified_at timestamp without time zone,
515 service_host character varying(255),
516 service_port integer,
517 service_ssl_flag boolean,
518 service_type character varying(255),
519 created_at timestamp without time zone NOT NULL,
520 updated_at timestamp without time zone NOT NULL
525 -- Name: keep_services_id_seq; Type: SEQUENCE; Schema: public; Owner: -
528 CREATE SEQUENCE keep_services_id_seq
537 -- Name: keep_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
540 ALTER SEQUENCE keep_services_id_seq OWNED BY keep_services.id;
544 -- Name: links; Type: TABLE; Schema: public; Owner: -; Tablespace:
549 uuid character varying(255),
550 owner_uuid character varying(255),
551 created_at timestamp without time zone NOT NULL,
552 modified_by_client_uuid character varying(255),
553 modified_by_user_uuid character varying(255),
554 modified_at timestamp without time zone,
555 tail_uuid character varying(255),
556 link_class character varying(255),
557 name character varying(255),
558 head_uuid character varying(255),
560 updated_at timestamp without time zone NOT NULL
565 -- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
568 CREATE SEQUENCE links_id_seq
577 -- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
580 ALTER SEQUENCE links_id_seq OWNED BY links.id;
584 -- Name: logs; Type: TABLE; Schema: public; Owner: -; Tablespace:
589 uuid character varying(255),
590 owner_uuid character varying(255),
591 modified_by_client_uuid character varying(255),
592 modified_by_user_uuid character varying(255),
593 object_uuid character varying(255),
594 event_at timestamp without time zone,
595 event_type character varying(255),
598 created_at timestamp without time zone NOT NULL,
599 updated_at timestamp without time zone NOT NULL,
600 modified_at timestamp without time zone,
601 object_owner_uuid character varying(255)
606 -- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
609 CREATE SEQUENCE logs_id_seq
618 -- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
621 ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
625 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
630 uuid character varying(255),
631 owner_uuid character varying(255),
632 created_at timestamp without time zone NOT NULL,
633 modified_by_client_uuid character varying(255),
634 modified_by_user_uuid character varying(255),
635 modified_at timestamp without time zone,
637 hostname character varying(255),
638 domain character varying(255),
639 ip_address character varying(255),
640 first_ping_at timestamp without time zone,
641 last_ping_at timestamp without time zone,
643 updated_at timestamp without time zone NOT NULL,
649 -- Name: nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
652 CREATE SEQUENCE nodes_id_seq
661 -- Name: nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
664 ALTER SEQUENCE nodes_id_seq OWNED BY nodes.id;
668 -- Name: pipeline_instances; Type: TABLE; Schema: public; Owner: -; Tablespace:
671 CREATE TABLE pipeline_instances (
673 uuid character varying(255),
674 owner_uuid character varying(255),
675 created_at timestamp without time zone NOT NULL,
676 modified_by_client_uuid character varying(255),
677 modified_by_user_uuid character varying(255),
678 modified_at timestamp without time zone,
679 pipeline_template_uuid character varying(255),
680 name character varying(255),
682 updated_at timestamp without time zone NOT NULL,
684 state character varying(255),
685 components_summary text,
687 started_at timestamp without time zone,
688 finished_at timestamp without time zone
693 -- Name: pipeline_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
696 CREATE SEQUENCE pipeline_instances_id_seq
705 -- Name: pipeline_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
708 ALTER SEQUENCE pipeline_instances_id_seq OWNED BY pipeline_instances.id;
712 -- Name: pipeline_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
715 CREATE TABLE pipeline_templates (
717 uuid character varying(255),
718 owner_uuid character varying(255),
719 created_at timestamp without time zone NOT NULL,
720 modified_by_client_uuid character varying(255),
721 modified_by_user_uuid character varying(255),
722 modified_at timestamp without time zone,
723 name character varying(255),
725 updated_at timestamp without time zone NOT NULL,
731 -- Name: pipeline_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
734 CREATE SEQUENCE pipeline_templates_id_seq
743 -- Name: pipeline_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
746 ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
750 -- Name: repositories; Type: TABLE; Schema: public; Owner: -; Tablespace:
753 CREATE TABLE repositories (
755 uuid character varying(255) NOT NULL,
756 owner_uuid character varying(255) NOT NULL,
757 modified_by_client_uuid character varying(255),
758 modified_by_user_uuid character varying(255),
759 modified_at timestamp without time zone,
760 name character varying(255),
761 fetch_url character varying(255),
762 push_url character varying(255),
763 created_at timestamp without time zone NOT NULL,
764 updated_at timestamp without time zone NOT NULL
769 -- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
772 CREATE SEQUENCE repositories_id_seq
781 -- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
784 ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
788 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
791 CREATE TABLE schema_migrations (
792 version character varying(255) NOT NULL
797 -- Name: specimens; Type: TABLE; Schema: public; Owner: -; Tablespace:
800 CREATE TABLE specimens (
802 uuid character varying(255),
803 owner_uuid character varying(255),
804 created_at timestamp without time zone NOT NULL,
805 modified_by_client_uuid character varying(255),
806 modified_by_user_uuid character varying(255),
807 modified_at timestamp without time zone,
808 material character varying(255),
809 updated_at timestamp without time zone NOT NULL,
815 -- Name: specimens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
818 CREATE SEQUENCE specimens_id_seq
827 -- Name: specimens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
830 ALTER SEQUENCE specimens_id_seq OWNED BY specimens.id;
834 -- Name: traits; Type: TABLE; Schema: public; Owner: -; Tablespace:
837 CREATE TABLE traits (
839 uuid character varying(255) NOT NULL,
840 owner_uuid character varying(255) NOT NULL,
841 modified_by_client_uuid character varying(255),
842 modified_by_user_uuid character varying(255),
843 modified_at timestamp without time zone,
844 name character varying(255),
846 created_at timestamp without time zone NOT NULL,
847 updated_at timestamp without time zone NOT NULL
852 -- Name: traits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
855 CREATE SEQUENCE traits_id_seq
864 -- Name: traits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
867 ALTER SEQUENCE traits_id_seq OWNED BY traits.id;
871 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
876 uuid character varying(255),
877 owner_uuid character varying(255) NOT NULL,
878 created_at timestamp without time zone NOT NULL,
879 modified_by_client_uuid character varying(255),
880 modified_by_user_uuid character varying(255),
881 modified_at timestamp without time zone,
882 email character varying(255),
883 first_name character varying(255),
884 last_name character varying(255),
885 identity_url character varying(255),
888 updated_at timestamp without time zone NOT NULL,
889 default_owner_uuid character varying(255),
890 is_active boolean DEFAULT false
895 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
898 CREATE SEQUENCE users_id_seq
907 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
910 ALTER SEQUENCE users_id_seq OWNED BY users.id;
914 -- Name: virtual_machines; Type: TABLE; Schema: public; Owner: -; Tablespace:
917 CREATE TABLE virtual_machines (
919 uuid character varying(255) NOT NULL,
920 owner_uuid character varying(255) NOT NULL,
921 modified_by_client_uuid character varying(255),
922 modified_by_user_uuid character varying(255),
923 modified_at timestamp without time zone,
924 hostname character varying(255),
925 created_at timestamp without time zone NOT NULL,
926 updated_at timestamp without time zone NOT NULL
931 -- Name: virtual_machines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
934 CREATE SEQUENCE virtual_machines_id_seq
943 -- Name: virtual_machines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
946 ALTER SEQUENCE virtual_machines_id_seq OWNED BY virtual_machines.id;
950 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
953 ALTER TABLE ONLY api_client_authorizations ALTER COLUMN id SET DEFAULT nextval('api_client_authorizations_id_seq'::regclass);
957 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
960 ALTER TABLE ONLY api_clients ALTER COLUMN id SET DEFAULT nextval('api_clients_id_seq'::regclass);
964 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
967 ALTER TABLE ONLY authorized_keys ALTER COLUMN id SET DEFAULT nextval('authorized_keys_id_seq'::regclass);
971 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
974 ALTER TABLE ONLY collections ALTER COLUMN id SET DEFAULT nextval('collections_id_seq'::regclass);
978 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
981 ALTER TABLE ONLY commit_ancestors ALTER COLUMN id SET DEFAULT nextval('commit_ancestors_id_seq'::regclass);
985 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
988 ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
992 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
995 ALTER TABLE ONLY groups ALTER COLUMN id SET DEFAULT nextval('groups_id_seq'::regclass);
999 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1002 ALTER TABLE ONLY humans ALTER COLUMN id SET DEFAULT nextval('humans_id_seq'::regclass);
1006 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1009 ALTER TABLE ONLY job_tasks ALTER COLUMN id SET DEFAULT nextval('job_tasks_id_seq'::regclass);
1013 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1016 ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('jobs_id_seq'::regclass);
1020 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1023 ALTER TABLE ONLY keep_disks ALTER COLUMN id SET DEFAULT nextval('keep_disks_id_seq'::regclass);
1027 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1030 ALTER TABLE ONLY keep_services ALTER COLUMN id SET DEFAULT nextval('keep_services_id_seq'::regclass);
1034 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1037 ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regclass);
1041 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1044 ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
1048 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1051 ALTER TABLE ONLY nodes ALTER COLUMN id SET DEFAULT nextval('nodes_id_seq'::regclass);
1055 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1058 ALTER TABLE ONLY pipeline_instances ALTER COLUMN id SET DEFAULT nextval('pipeline_instances_id_seq'::regclass);
1062 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1065 ALTER TABLE ONLY pipeline_templates ALTER COLUMN id SET DEFAULT nextval('pipeline_templates_id_seq'::regclass);
1069 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1072 ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
1076 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1079 ALTER TABLE ONLY specimens ALTER COLUMN id SET DEFAULT nextval('specimens_id_seq'::regclass);
1083 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1086 ALTER TABLE ONLY traits ALTER COLUMN id SET DEFAULT nextval('traits_id_seq'::regclass);
1090 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1093 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1097 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1100 ALTER TABLE ONLY virtual_machines ALTER COLUMN id SET DEFAULT nextval('virtual_machines_id_seq'::regclass);
1104 -- Name: api_client_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1107 ALTER TABLE ONLY api_client_authorizations
1108 ADD CONSTRAINT api_client_authorizations_pkey PRIMARY KEY (id);
1112 -- Name: api_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1115 ALTER TABLE ONLY api_clients
1116 ADD CONSTRAINT api_clients_pkey PRIMARY KEY (id);
1120 -- Name: authorized_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1123 ALTER TABLE ONLY authorized_keys
1124 ADD CONSTRAINT authorized_keys_pkey PRIMARY KEY (id);
1128 -- Name: collections_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1131 ALTER TABLE ONLY collections
1132 ADD CONSTRAINT collections_pkey PRIMARY KEY (id);
1136 -- Name: commit_ancestors_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1139 ALTER TABLE ONLY commit_ancestors
1140 ADD CONSTRAINT commit_ancestors_pkey PRIMARY KEY (id);
1144 -- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1147 ALTER TABLE ONLY commits
1148 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
1152 -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1155 ALTER TABLE ONLY groups
1156 ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
1160 -- Name: humans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1163 ALTER TABLE ONLY humans
1164 ADD CONSTRAINT humans_pkey PRIMARY KEY (id);
1168 -- Name: job_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1171 ALTER TABLE ONLY job_tasks
1172 ADD CONSTRAINT job_tasks_pkey PRIMARY KEY (id);
1176 -- Name: jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1179 ALTER TABLE ONLY jobs
1180 ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);
1184 -- Name: keep_disks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1187 ALTER TABLE ONLY keep_disks
1188 ADD CONSTRAINT keep_disks_pkey PRIMARY KEY (id);
1192 -- Name: keep_services_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1195 ALTER TABLE ONLY keep_services
1196 ADD CONSTRAINT keep_services_pkey PRIMARY KEY (id);
1200 -- Name: links_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1203 ALTER TABLE ONLY links
1204 ADD CONSTRAINT links_pkey PRIMARY KEY (id);
1208 -- Name: logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1211 ALTER TABLE ONLY logs
1212 ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
1216 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1219 ALTER TABLE ONLY nodes
1220 ADD CONSTRAINT nodes_pkey PRIMARY KEY (id);
1224 -- Name: pipeline_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1227 ALTER TABLE ONLY pipeline_instances
1228 ADD CONSTRAINT pipeline_instances_pkey PRIMARY KEY (id);
1232 -- Name: pipeline_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1235 ALTER TABLE ONLY pipeline_templates
1236 ADD CONSTRAINT pipeline_templates_pkey PRIMARY KEY (id);
1240 -- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1243 ALTER TABLE ONLY repositories
1244 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
1248 -- Name: specimens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1251 ALTER TABLE ONLY specimens
1252 ADD CONSTRAINT specimens_pkey PRIMARY KEY (id);
1256 -- Name: traits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1259 ALTER TABLE ONLY traits
1260 ADD CONSTRAINT traits_pkey PRIMARY KEY (id);
1264 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1267 ALTER TABLE ONLY users
1268 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1272 -- Name: virtual_machines_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
1275 ALTER TABLE ONLY virtual_machines
1276 ADD CONSTRAINT virtual_machines_pkey PRIMARY KEY (id);
1280 -- Name: collection_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1283 CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree (owner_uuid, name);
1287 -- Name: groups_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1290 CREATE UNIQUE INDEX groups_owner_uuid_name_unique ON groups USING btree (owner_uuid, name);
1294 -- Name: index_api_client_authorizations_on_api_client_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1297 CREATE INDEX index_api_client_authorizations_on_api_client_id ON api_client_authorizations USING btree (api_client_id);
1301 -- Name: index_api_client_authorizations_on_api_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
1304 CREATE UNIQUE INDEX index_api_client_authorizations_on_api_token ON api_client_authorizations USING btree (api_token);
1308 -- Name: index_api_client_authorizations_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1311 CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authorizations USING btree (expires_at);
1315 -- Name: index_api_client_authorizations_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1318 CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id);
1322 -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1325 CREATE INDEX index_api_clients_on_created_at ON api_clients USING btree (created_at);
1329 -- Name: index_api_clients_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1332 CREATE INDEX index_api_clients_on_modified_at ON api_clients USING btree (modified_at);
1336 -- Name: index_api_clients_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1339 CREATE UNIQUE INDEX index_api_clients_on_uuid ON api_clients USING btree (uuid);
1343 -- Name: index_authkeys_on_user_and_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1346 CREATE INDEX index_authkeys_on_user_and_expires_at ON authorized_keys USING btree (authorized_user_uuid, expires_at);
1350 -- Name: index_authorized_keys_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1353 CREATE UNIQUE INDEX index_authorized_keys_on_uuid ON authorized_keys USING btree (uuid);
1357 -- Name: index_collections_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1360 CREATE INDEX index_collections_on_created_at ON collections USING btree (created_at);
1364 -- Name: index_collections_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1367 CREATE INDEX index_collections_on_modified_at ON collections USING btree (modified_at);
1371 -- Name: index_collections_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1374 CREATE UNIQUE INDEX index_collections_on_uuid ON collections USING btree (uuid);
1378 -- Name: index_commit_ancestors_on_descendant_and_ancestor; Type: INDEX; Schema: public; Owner: -; Tablespace:
1381 CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ancestors USING btree (descendant, ancestor);
1385 -- Name: index_commits_on_repository_name_and_sha1; Type: INDEX; Schema: public; Owner: -; Tablespace:
1388 CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1);
1392 -- Name: index_groups_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1395 CREATE INDEX index_groups_on_created_at ON groups USING btree (created_at);
1399 -- Name: index_groups_on_group_class; Type: INDEX; Schema: public; Owner: -; Tablespace:
1402 CREATE INDEX index_groups_on_group_class ON groups USING btree (group_class);
1406 -- Name: index_groups_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1409 CREATE INDEX index_groups_on_modified_at ON groups USING btree (modified_at);
1413 -- Name: index_groups_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1416 CREATE UNIQUE INDEX index_groups_on_uuid ON groups USING btree (uuid);
1420 -- Name: index_humans_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1423 CREATE UNIQUE INDEX index_humans_on_uuid ON humans USING btree (uuid);
1427 -- Name: index_job_tasks_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1430 CREATE INDEX index_job_tasks_on_created_at ON job_tasks USING btree (created_at);
1434 -- Name: index_job_tasks_on_job_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1437 CREATE INDEX index_job_tasks_on_job_uuid ON job_tasks USING btree (job_uuid);
1441 -- Name: index_job_tasks_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1444 CREATE INDEX index_job_tasks_on_modified_at ON job_tasks USING btree (modified_at);
1448 -- Name: index_job_tasks_on_sequence; Type: INDEX; Schema: public; Owner: -; Tablespace:
1451 CREATE INDEX index_job_tasks_on_sequence ON job_tasks USING btree (sequence);
1455 -- Name: index_job_tasks_on_success; Type: INDEX; Schema: public; Owner: -; Tablespace:
1458 CREATE INDEX index_job_tasks_on_success ON job_tasks USING btree (success);
1462 -- Name: index_job_tasks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1465 CREATE UNIQUE INDEX index_job_tasks_on_uuid ON job_tasks USING btree (uuid);
1469 -- Name: index_jobs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1472 CREATE INDEX index_jobs_on_created_at ON jobs USING btree (created_at);
1476 -- Name: index_jobs_on_finished_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1479 CREATE INDEX index_jobs_on_finished_at ON jobs USING btree (finished_at);
1483 -- Name: index_jobs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1486 CREATE INDEX index_jobs_on_modified_at ON jobs USING btree (modified_at);
1490 -- Name: index_jobs_on_output; Type: INDEX; Schema: public; Owner: -; Tablespace:
1493 CREATE INDEX index_jobs_on_output ON jobs USING btree (output);
1497 -- Name: index_jobs_on_script; Type: INDEX; Schema: public; Owner: -; Tablespace:
1500 CREATE INDEX index_jobs_on_script ON jobs USING btree (script);
1504 -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1507 CREATE INDEX index_jobs_on_started_at ON jobs USING btree (started_at);
1511 -- Name: index_jobs_on_submit_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
1514 CREATE UNIQUE INDEX index_jobs_on_submit_id ON jobs USING btree (submit_id);
1518 -- Name: index_jobs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1521 CREATE UNIQUE INDEX index_jobs_on_uuid ON jobs USING btree (uuid);
1525 -- Name: index_keep_disks_on_filesystem_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1528 CREATE INDEX index_keep_disks_on_filesystem_uuid ON keep_disks USING btree (filesystem_uuid);
1532 -- Name: index_keep_disks_on_last_ping_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1535 CREATE INDEX index_keep_disks_on_last_ping_at ON keep_disks USING btree (last_ping_at);
1539 -- Name: index_keep_disks_on_node_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1542 CREATE INDEX index_keep_disks_on_node_uuid ON keep_disks USING btree (node_uuid);
1546 -- Name: index_keep_disks_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1549 CREATE UNIQUE INDEX index_keep_disks_on_uuid ON keep_disks USING btree (uuid);
1553 -- Name: index_keep_services_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1556 CREATE UNIQUE INDEX index_keep_services_on_uuid ON keep_services USING btree (uuid);
1560 -- Name: index_links_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1563 CREATE INDEX index_links_on_created_at ON links USING btree (created_at);
1567 -- Name: index_links_on_head_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1570 CREATE INDEX index_links_on_head_uuid ON links USING btree (head_uuid);
1574 -- Name: index_links_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1577 CREATE INDEX index_links_on_modified_at ON links USING btree (modified_at);
1581 -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1584 CREATE INDEX index_links_on_tail_uuid ON links USING btree (tail_uuid);
1588 -- Name: index_links_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1591 CREATE UNIQUE INDEX index_links_on_uuid ON links USING btree (uuid);
1595 -- Name: index_logs_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1598 CREATE INDEX index_logs_on_created_at ON logs USING btree (created_at);
1602 -- Name: index_logs_on_event_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1605 CREATE INDEX index_logs_on_event_at ON logs USING btree (event_at);
1609 -- Name: index_logs_on_event_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
1612 CREATE INDEX index_logs_on_event_type ON logs USING btree (event_type);
1616 -- Name: index_logs_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1619 CREATE INDEX index_logs_on_modified_at ON logs USING btree (modified_at);
1623 -- Name: index_logs_on_object_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1626 CREATE INDEX index_logs_on_object_uuid ON logs USING btree (object_uuid);
1630 -- Name: index_logs_on_summary; Type: INDEX; Schema: public; Owner: -; Tablespace:
1633 CREATE INDEX index_logs_on_summary ON logs USING btree (summary);
1637 -- Name: index_logs_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1640 CREATE UNIQUE INDEX index_logs_on_uuid ON logs USING btree (uuid);
1644 -- Name: index_nodes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1647 CREATE INDEX index_nodes_on_created_at ON nodes USING btree (created_at);
1651 -- Name: index_nodes_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1654 CREATE INDEX index_nodes_on_hostname ON nodes USING btree (hostname);
1658 -- Name: index_nodes_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1661 CREATE INDEX index_nodes_on_modified_at ON nodes USING btree (modified_at);
1665 -- Name: index_nodes_on_slot_number; Type: INDEX; Schema: public; Owner: -; Tablespace:
1668 CREATE UNIQUE INDEX index_nodes_on_slot_number ON nodes USING btree (slot_number);
1672 -- Name: index_nodes_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1675 CREATE UNIQUE INDEX index_nodes_on_uuid ON nodes USING btree (uuid);
1679 -- Name: index_pipeline_instances_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1682 CREATE INDEX index_pipeline_instances_on_created_at ON pipeline_instances USING btree (created_at);
1686 -- Name: index_pipeline_instances_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1689 CREATE INDEX index_pipeline_instances_on_modified_at ON pipeline_instances USING btree (modified_at);
1693 -- Name: index_pipeline_instances_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1696 CREATE UNIQUE INDEX index_pipeline_instances_on_uuid ON pipeline_instances USING btree (uuid);
1700 -- Name: index_pipeline_templates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1703 CREATE INDEX index_pipeline_templates_on_created_at ON pipeline_templates USING btree (created_at);
1707 -- Name: index_pipeline_templates_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1710 CREATE INDEX index_pipeline_templates_on_modified_at ON pipeline_templates USING btree (modified_at);
1714 -- Name: index_pipeline_templates_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1717 CREATE UNIQUE INDEX index_pipeline_templates_on_uuid ON pipeline_templates USING btree (uuid);
1721 -- Name: index_repositories_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1724 CREATE UNIQUE INDEX index_repositories_on_name ON repositories USING btree (name);
1728 -- Name: index_repositories_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1731 CREATE UNIQUE INDEX index_repositories_on_uuid ON repositories USING btree (uuid);
1735 -- Name: index_specimens_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1738 CREATE INDEX index_specimens_on_created_at ON specimens USING btree (created_at);
1742 -- Name: index_specimens_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1745 CREATE INDEX index_specimens_on_modified_at ON specimens USING btree (modified_at);
1749 -- Name: index_specimens_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1752 CREATE UNIQUE INDEX index_specimens_on_uuid ON specimens USING btree (uuid);
1756 -- Name: index_traits_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1759 CREATE INDEX index_traits_on_name ON traits USING btree (name);
1763 -- Name: index_traits_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1766 CREATE UNIQUE INDEX index_traits_on_uuid ON traits USING btree (uuid);
1770 -- Name: index_users_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1773 CREATE INDEX index_users_on_created_at ON users USING btree (created_at);
1777 -- Name: index_users_on_modified_at; Type: INDEX; Schema: public; Owner: -; Tablespace:
1780 CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at);
1784 -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1787 CREATE UNIQUE INDEX index_users_on_uuid ON users USING btree (uuid);
1791 -- Name: index_virtual_machines_on_hostname; Type: INDEX; Schema: public; Owner: -; Tablespace:
1794 CREATE INDEX index_virtual_machines_on_hostname ON virtual_machines USING btree (hostname);
1798 -- Name: index_virtual_machines_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace:
1801 CREATE UNIQUE INDEX index_virtual_machines_on_uuid ON virtual_machines USING btree (uuid);
1805 -- Name: links_tail_name_unique_if_link_class_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
1808 CREATE UNIQUE INDEX links_tail_name_unique_if_link_class_name ON links USING btree (tail_uuid, name) WHERE ((link_class)::text = 'name'::text);
1812 -- Name: pipeline_template_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
1815 CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON pipeline_templates USING btree (owner_uuid, name);
1819 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
1822 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
1826 -- PostgreSQL database dump complete
1829 SET search_path TO "$user",public;
1831 INSERT INTO schema_migrations (version) VALUES ('20121016005009');
1833 INSERT INTO schema_migrations (version) VALUES ('20130105203021');
1835 INSERT INTO schema_migrations (version) VALUES ('20130105224358');
1837 INSERT INTO schema_migrations (version) VALUES ('20130105224618');
1839 INSERT INTO schema_migrations (version) VALUES ('20130107181109');
1841 INSERT INTO schema_migrations (version) VALUES ('20130107212832');
1843 INSERT INTO schema_migrations (version) VALUES ('20130109175700');
1845 INSERT INTO schema_migrations (version) VALUES ('20130109220548');
1847 INSERT INTO schema_migrations (version) VALUES ('20130113214204');
1849 INSERT INTO schema_migrations (version) VALUES ('20130116024233');
1851 INSERT INTO schema_migrations (version) VALUES ('20130116215213');
1853 INSERT INTO schema_migrations (version) VALUES ('20130118002239');
1855 INSERT INTO schema_migrations (version) VALUES ('20130122020042');
1857 INSERT INTO schema_migrations (version) VALUES ('20130122201442');
1859 INSERT INTO schema_migrations (version) VALUES ('20130122221616');
1861 INSERT INTO schema_migrations (version) VALUES ('20130123174514');
1863 INSERT INTO schema_migrations (version) VALUES ('20130123180224');
1865 INSERT INTO schema_migrations (version) VALUES ('20130123180228');
1867 INSERT INTO schema_migrations (version) VALUES ('20130125220425');
1869 INSERT INTO schema_migrations (version) VALUES ('20130128202518');
1871 INSERT INTO schema_migrations (version) VALUES ('20130128231343');
1873 INSERT INTO schema_migrations (version) VALUES ('20130130205749');
1875 INSERT INTO schema_migrations (version) VALUES ('20130203104818');
1877 INSERT INTO schema_migrations (version) VALUES ('20130203104824');
1879 INSERT INTO schema_migrations (version) VALUES ('20130203115329');
1881 INSERT INTO schema_migrations (version) VALUES ('20130207195855');
1883 INSERT INTO schema_migrations (version) VALUES ('20130218181504');
1885 INSERT INTO schema_migrations (version) VALUES ('20130226170000');
1887 INSERT INTO schema_migrations (version) VALUES ('20130313175417');
1889 INSERT INTO schema_migrations (version) VALUES ('20130315155820');
1891 INSERT INTO schema_migrations (version) VALUES ('20130315183626');
1893 INSERT INTO schema_migrations (version) VALUES ('20130315213205');
1895 INSERT INTO schema_migrations (version) VALUES ('20130318002138');
1897 INSERT INTO schema_migrations (version) VALUES ('20130319165853');
1899 INSERT INTO schema_migrations (version) VALUES ('20130319180730');
1901 INSERT INTO schema_migrations (version) VALUES ('20130319194637');
1903 INSERT INTO schema_migrations (version) VALUES ('20130319201431');
1905 INSERT INTO schema_migrations (version) VALUES ('20130319235957');
1907 INSERT INTO schema_migrations (version) VALUES ('20130320000107');
1909 INSERT INTO schema_migrations (version) VALUES ('20130326173804');
1911 INSERT INTO schema_migrations (version) VALUES ('20130326182917');
1913 INSERT INTO schema_migrations (version) VALUES ('20130415020241');
1915 INSERT INTO schema_migrations (version) VALUES ('20130425024459');
1917 INSERT INTO schema_migrations (version) VALUES ('20130425214427');
1919 INSERT INTO schema_migrations (version) VALUES ('20130523060112');
1921 INSERT INTO schema_migrations (version) VALUES ('20130523060213');
1923 INSERT INTO schema_migrations (version) VALUES ('20130524042319');
1925 INSERT INTO schema_migrations (version) VALUES ('20130528134100');
1927 INSERT INTO schema_migrations (version) VALUES ('20130606183519');
1929 INSERT INTO schema_migrations (version) VALUES ('20130608053730');
1931 INSERT INTO schema_migrations (version) VALUES ('20130610202538');
1933 INSERT INTO schema_migrations (version) VALUES ('20130611163736');
1935 INSERT INTO schema_migrations (version) VALUES ('20130612042554');
1937 INSERT INTO schema_migrations (version) VALUES ('20130617150007');
1939 INSERT INTO schema_migrations (version) VALUES ('20130626002829');
1941 INSERT INTO schema_migrations (version) VALUES ('20130626022810');
1943 INSERT INTO schema_migrations (version) VALUES ('20130627154537');
1945 INSERT INTO schema_migrations (version) VALUES ('20130627184333');
1947 INSERT INTO schema_migrations (version) VALUES ('20130708163414');
1949 INSERT INTO schema_migrations (version) VALUES ('20130708182912');
1951 INSERT INTO schema_migrations (version) VALUES ('20130708185153');
1953 INSERT INTO schema_migrations (version) VALUES ('20130724153034');
1955 INSERT INTO schema_migrations (version) VALUES ('20131007180607');
1957 INSERT INTO schema_migrations (version) VALUES ('20140117231056');
1959 INSERT INTO schema_migrations (version) VALUES ('20140124222114');
1961 INSERT INTO schema_migrations (version) VALUES ('20140129184311');
1963 INSERT INTO schema_migrations (version) VALUES ('20140317135600');
1965 INSERT INTO schema_migrations (version) VALUES ('20140319160547');
1967 INSERT INTO schema_migrations (version) VALUES ('20140321191343');
1969 INSERT INTO schema_migrations (version) VALUES ('20140324024606');
1971 INSERT INTO schema_migrations (version) VALUES ('20140325175653');
1973 INSERT INTO schema_migrations (version) VALUES ('20140402001908');
1975 INSERT INTO schema_migrations (version) VALUES ('20140407184311');
1977 INSERT INTO schema_migrations (version) VALUES ('20140421140924');
1979 INSERT INTO schema_migrations (version) VALUES ('20140421151939');
1981 INSERT INTO schema_migrations (version) VALUES ('20140421151940');
1983 INSERT INTO schema_migrations (version) VALUES ('20140422011506');
1985 INSERT INTO schema_migrations (version) VALUES ('20140423132913');
1987 INSERT INTO schema_migrations (version) VALUES ('20140423133559');
1989 INSERT INTO schema_migrations (version) VALUES ('20140501165548');
1991 INSERT INTO schema_migrations (version) VALUES ('20140519205916');
1993 INSERT INTO schema_migrations (version) VALUES ('20140527152921');
1995 INSERT INTO schema_migrations (version) VALUES ('20140530200539');
1997 INSERT INTO schema_migrations (version) VALUES ('20140601022548');
1999 INSERT INTO schema_migrations (version) VALUES ('20140602143352');
2001 INSERT INTO schema_migrations (version) VALUES ('20140607150616');
2003 INSERT INTO schema_migrations (version) VALUES ('20140611173003');
2005 INSERT INTO schema_migrations (version) VALUES ('20140627210837');
2007 INSERT INTO schema_migrations (version) VALUES ('20140709172343');
2009 INSERT INTO schema_migrations (version) VALUES ('20140714184006');
2011 INSERT INTO schema_migrations (version) VALUES ('20140811184643');
2013 INSERT INTO schema_migrations (version) VALUES ('20140817035914');
2015 INSERT INTO schema_migrations (version) VALUES ('20140818125735');
2017 INSERT INTO schema_migrations (version) VALUES ('20140826180337');
2019 INSERT INTO schema_migrations (version) VALUES ('20140828141043');
2021 INSERT INTO schema_migrations (version) VALUES ('20140909183946');
2023 INSERT INTO schema_migrations (version) VALUES ('20140911221252');
2025 INSERT INTO schema_migrations (version) VALUES ('20140918141529');
2027 INSERT INTO schema_migrations (version) VALUES ('20140918153541');
2029 INSERT INTO schema_migrations (version) VALUES ('20140918153705');