2 # This file is auto-generated from the current state of the database. Instead
3 # of editing this file, please use the migrations feature of Active Record to
4 # incrementally modify your database, and then regenerate this schema definition.
6 # Note that this schema.rb definition is the authoritative source for your
7 # database schema. If you need to create the application database on another
8 # system, you should be using db:schema:load, not running all the migrations
9 # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10 # you'll amass, the slower it'll run and the greater likelihood for issues).
12 # It's strongly recommended to check this file into your version control system.
14 ActiveRecord::Schema.define(:version => 20140422011506) do
16 create_table "api_client_authorizations", :force => true do |t|
17 t.string "api_token", :null => false
18 t.integer "api_client_id", :null => false
19 t.integer "user_id", :null => false
20 t.string "created_by_ip_address"
21 t.string "last_used_by_ip_address"
22 t.datetime "last_used_at"
23 t.datetime "expires_at"
24 t.datetime "created_at", :null => false
25 t.datetime "updated_at", :null => false
26 t.string "default_owner_uuid"
27 t.text "scopes", :default => "---\n- all\n", :null => false
30 add_index "api_client_authorizations", ["api_client_id"], :name => "index_api_client_authorizations_on_api_client_id"
31 add_index "api_client_authorizations", ["api_token"], :name => "index_api_client_authorizations_on_api_token", :unique => true
32 add_index "api_client_authorizations", ["expires_at"], :name => "index_api_client_authorizations_on_expires_at"
33 add_index "api_client_authorizations", ["user_id"], :name => "index_api_client_authorizations_on_user_id"
35 create_table "api_clients", :force => true do |t|
38 t.string "modified_by_client_uuid"
39 t.string "modified_by_user_uuid"
40 t.datetime "modified_at"
43 t.datetime "created_at", :null => false
44 t.datetime "updated_at", :null => false
45 t.boolean "is_trusted", :default => false
48 add_index "api_clients", ["created_at"], :name => "index_api_clients_on_created_at"
49 add_index "api_clients", ["modified_at"], :name => "index_api_clients_on_modified_at"
50 add_index "api_clients", ["uuid"], :name => "index_api_clients_on_uuid", :unique => true
52 create_table "authorized_keys", :force => true do |t|
53 t.string "uuid", :null => false
54 t.string "owner_uuid", :null => false
55 t.string "modified_by_client_uuid"
56 t.string "modified_by_user_uuid"
57 t.datetime "modified_at"
60 t.string "authorized_user_uuid"
62 t.datetime "expires_at"
63 t.datetime "created_at", :null => false
64 t.datetime "updated_at", :null => false
67 add_index "authorized_keys", ["authorized_user_uuid", "expires_at"], :name => "index_authorized_keys_on_authorized_user_uuid_and_expires_at"
68 add_index "authorized_keys", ["uuid"], :name => "index_authorized_keys_on_uuid", :unique => true
70 create_table "collections", :force => true do |t|
73 t.datetime "created_at"
74 t.string "modified_by_client_uuid"
75 t.string "modified_by_user_uuid"
76 t.datetime "modified_at"
77 t.string "portable_data_hash"
79 t.integer "redundancy"
80 t.string "redundancy_confirmed_by_client_uuid"
81 t.datetime "redundancy_confirmed_at"
82 t.integer "redundancy_confirmed_as"
83 t.datetime "updated_at"
85 t.text "manifest_text"
88 add_index "collections", ["created_at"], :name => "index_collections_on_created_at"
89 add_index "collections", ["modified_at"], :name => "index_collections_on_modified_at"
90 add_index "collections", ["uuid"], :name => "index_collections_on_uuid", :unique => true
92 create_table "commit_ancestors", :force => true do |t|
93 t.string "repository_name"
94 t.string "descendant", :null => false
95 t.string "ancestor", :null => false
96 t.boolean "is", :default => false, :null => false
97 t.datetime "created_at", :null => false
98 t.datetime "updated_at", :null => false
101 add_index "commit_ancestors", ["descendant", "ancestor"], :name => "index_commit_ancestors_on_descendant_and_ancestor", :unique => true
103 create_table "commits", :force => true do |t|
104 t.string "repository_name"
107 t.datetime "created_at"
108 t.datetime "updated_at"
111 add_index "commits", ["repository_name", "sha1"], :name => "index_commits_on_repository_name_and_sha1", :unique => true
113 create_table "groups", :force => true do |t|
115 t.string "owner_uuid"
116 t.datetime "created_at", :null => false
117 t.string "modified_by_client_uuid"
118 t.string "modified_by_user_uuid"
119 t.datetime "modified_at"
122 t.datetime "updated_at", :null => false
125 add_index "groups", ["created_at"], :name => "index_groups_on_created_at"
126 add_index "groups", ["modified_at"], :name => "index_groups_on_modified_at"
127 add_index "groups", ["uuid"], :name => "index_groups_on_uuid", :unique => true
129 create_table "humans", :force => true do |t|
130 t.string "uuid", :null => false
131 t.string "owner_uuid", :null => false
132 t.string "modified_by_client_uuid"
133 t.string "modified_by_user_uuid"
134 t.datetime "modified_at"
136 t.datetime "created_at"
137 t.datetime "updated_at"
140 add_index "humans", ["uuid"], :name => "index_humans_on_uuid", :unique => true
142 create_table "job_tasks", :force => true do |t|
144 t.string "owner_uuid"
145 t.string "modified_by_client_uuid"
146 t.string "modified_by_user_uuid"
147 t.datetime "modified_at"
154 t.datetime "created_at", :null => false
155 t.datetime "updated_at", :null => false
156 t.string "created_by_job_task_uuid"
157 t.integer "qsequence", :limit => 8
160 add_index "job_tasks", ["created_at"], :name => "index_job_tasks_on_created_at"
161 add_index "job_tasks", ["job_uuid"], :name => "index_job_tasks_on_job_uuid"
162 add_index "job_tasks", ["modified_at"], :name => "index_job_tasks_on_modified_at"
163 add_index "job_tasks", ["sequence"], :name => "index_job_tasks_on_sequence"
164 add_index "job_tasks", ["success"], :name => "index_job_tasks_on_success"
165 add_index "job_tasks", ["uuid"], :name => "index_job_tasks_on_uuid", :unique => true
167 create_table "jobs", :force => true do |t|
169 t.string "owner_uuid"
170 t.string "modified_by_client_uuid"
171 t.string "modified_by_user_uuid"
172 t.datetime "modified_at"
175 t.string "script_version"
176 t.text "script_parameters"
177 t.string "cancelled_by_client_uuid"
178 t.string "cancelled_by_user_uuid"
179 t.datetime "cancelled_at"
180 t.datetime "started_at"
181 t.datetime "finished_at"
185 t.datetime "created_at"
186 t.datetime "updated_at"
188 t.string "is_locked_by_uuid"
190 t.text "tasks_summary"
191 t.text "runtime_constraints"
192 t.boolean "nondeterministic"
193 t.string "repository"
194 t.boolean "output_is_persistent", :default => false, :null => false
197 add_index "jobs", ["created_at"], :name => "index_jobs_on_created_at"
198 add_index "jobs", ["finished_at"], :name => "index_jobs_on_finished_at"
199 add_index "jobs", ["modified_at"], :name => "index_jobs_on_modified_at"
200 add_index "jobs", ["output"], :name => "index_jobs_on_output"
201 add_index "jobs", ["script"], :name => "index_jobs_on_script"
202 add_index "jobs", ["started_at"], :name => "index_jobs_on_started_at"
203 add_index "jobs", ["submit_id"], :name => "index_jobs_on_submit_id", :unique => true
204 add_index "jobs", ["uuid"], :name => "index_jobs_on_uuid", :unique => true
206 create_table "keep_disks", :force => true do |t|
207 t.string "uuid", :null => false
208 t.string "owner_uuid", :null => false
209 t.string "modified_by_client_uuid"
210 t.string "modified_by_user_uuid"
211 t.datetime "modified_at"
212 t.string "ping_secret", :null => false
214 t.string "filesystem_uuid"
215 t.integer "bytes_total"
216 t.integer "bytes_free"
217 t.boolean "is_readable", :default => true, :null => false
218 t.boolean "is_writable", :default => true, :null => false
219 t.datetime "last_read_at"
220 t.datetime "last_write_at"
221 t.datetime "last_ping_at"
222 t.datetime "created_at", :null => false
223 t.datetime "updated_at", :null => false
224 t.string "service_host"
225 t.integer "service_port"
226 t.boolean "service_ssl_flag"
229 add_index "keep_disks", ["filesystem_uuid"], :name => "index_keep_disks_on_filesystem_uuid"
230 add_index "keep_disks", ["last_ping_at"], :name => "index_keep_disks_on_last_ping_at"
231 add_index "keep_disks", ["node_uuid"], :name => "index_keep_disks_on_node_uuid"
232 add_index "keep_disks", ["service_host", "service_port", "last_ping_at"], :name => "keep_disks_service_host_port_ping_at_index"
233 add_index "keep_disks", ["uuid"], :name => "index_keep_disks_on_uuid", :unique => true
235 create_table "links", :force => true do |t|
237 t.string "owner_uuid"
238 t.datetime "created_at"
239 t.string "modified_by_client_uuid"
240 t.string "modified_by_user_uuid"
241 t.datetime "modified_at"
243 t.string "link_class"
247 t.datetime "updated_at"
252 add_index "links", ["created_at"], :name => "index_links_on_created_at"
253 add_index "links", ["head_uuid"], :name => "index_links_on_head_uuid"
254 add_index "links", ["modified_at"], :name => "index_links_on_modified_at"
255 add_index "links", ["tail_uuid"], :name => "index_links_on_tail_uuid"
256 add_index "links", ["uuid"], :name => "index_links_on_uuid", :unique => true
258 create_table "logs", :force => true do |t|
260 t.string "owner_uuid"
261 t.string "modified_by_client_uuid"
262 t.string "modified_by_user_uuid"
263 t.string "object_uuid"
264 t.datetime "event_at"
265 t.string "event_type"
268 t.datetime "created_at", :null => false
269 t.datetime "updated_at", :null => false
270 t.datetime "modified_at"
273 add_index "logs", ["created_at"], :name => "index_logs_on_created_at"
274 add_index "logs", ["event_at"], :name => "index_logs_on_event_at"
275 add_index "logs", ["event_type"], :name => "index_logs_on_event_type"
276 add_index "logs", ["modified_at"], :name => "index_logs_on_modified_at"
277 add_index "logs", ["object_uuid"], :name => "index_logs_on_object_uuid"
278 add_index "logs", ["summary"], :name => "index_logs_on_summary"
279 add_index "logs", ["uuid"], :name => "index_logs_on_uuid", :unique => true
281 create_table "nodes", :force => true do |t|
283 t.string "owner_uuid"
284 t.datetime "created_at", :null => false
285 t.string "modified_by_client_uuid"
286 t.string "modified_by_user_uuid"
287 t.datetime "modified_at"
288 t.integer "slot_number"
291 t.string "ip_address"
292 t.datetime "first_ping_at"
293 t.datetime "last_ping_at"
295 t.datetime "updated_at", :null => false
298 add_index "nodes", ["created_at"], :name => "index_nodes_on_created_at"
299 add_index "nodes", ["hostname"], :name => "index_nodes_on_hostname"
300 add_index "nodes", ["modified_at"], :name => "index_nodes_on_modified_at"
301 add_index "nodes", ["slot_number"], :name => "index_nodes_on_slot_number", :unique => true
302 add_index "nodes", ["uuid"], :name => "index_nodes_on_uuid", :unique => true
304 create_table "pipeline_instances", :force => true do |t|
306 t.string "owner_uuid"
307 t.datetime "created_at"
308 t.string "modified_by_client_uuid"
309 t.string "modified_by_user_uuid"
310 t.datetime "modified_at"
311 t.string "pipeline_template_uuid"
314 t.datetime "updated_at"
319 t.text "components_summary"
322 add_index "pipeline_instances", ["created_at"], :name => "index_pipeline_instances_on_created_at"
323 add_index "pipeline_instances", ["modified_at"], :name => "index_pipeline_instances_on_modified_at"
324 add_index "pipeline_instances", ["uuid"], :name => "index_pipeline_instances_on_uuid", :unique => true
326 create_table "pipeline_templates", :force => true do |t|
328 t.string "owner_uuid"
329 t.datetime "created_at", :null => false
330 t.string "modified_by_client_uuid"
331 t.string "modified_by_user_uuid"
332 t.datetime "modified_at"
335 t.datetime "updated_at", :null => false
338 add_index "pipeline_templates", ["created_at"], :name => "index_pipeline_templates_on_created_at"
339 add_index "pipeline_templates", ["modified_at"], :name => "index_pipeline_templates_on_modified_at"
340 add_index "pipeline_templates", ["uuid"], :name => "index_pipeline_templates_on_uuid", :unique => true
342 create_table "repositories", :force => true do |t|
343 t.string "uuid", :null => false
344 t.string "owner_uuid", :null => false
345 t.string "modified_by_client_uuid"
346 t.string "modified_by_user_uuid"
347 t.datetime "modified_at"
351 t.datetime "created_at", :null => false
352 t.datetime "updated_at", :null => false
355 add_index "repositories", ["name"], :name => "index_repositories_on_name", :unique => true
356 add_index "repositories", ["uuid"], :name => "index_repositories_on_uuid", :unique => true
358 create_table "specimens", :force => true do |t|
360 t.string "owner_uuid"
361 t.datetime "created_at", :null => false
362 t.string "modified_by_client_uuid"
363 t.string "modified_by_user_uuid"
364 t.datetime "modified_at"
366 t.datetime "updated_at", :null => false
370 add_index "specimens", ["created_at"], :name => "index_specimens_on_created_at"
371 add_index "specimens", ["modified_at"], :name => "index_specimens_on_modified_at"
372 add_index "specimens", ["uuid"], :name => "index_specimens_on_uuid", :unique => true
374 create_table "traits", :force => true do |t|
375 t.string "uuid", :null => false
376 t.string "owner_uuid", :null => false
377 t.string "modified_by_client_uuid"
378 t.string "modified_by_user_uuid"
379 t.datetime "modified_at"
382 t.datetime "created_at", :null => false
383 t.datetime "updated_at", :null => false
386 add_index "traits", ["name"], :name => "index_traits_on_name"
387 add_index "traits", ["uuid"], :name => "index_traits_on_uuid", :unique => true
389 create_table "users", :force => true do |t|
391 t.string "owner_uuid"
392 t.datetime "created_at", :null => false
393 t.string "modified_by_client_uuid"
394 t.string "modified_by_user_uuid"
395 t.datetime "modified_at"
397 t.string "first_name"
399 t.string "identity_url"
402 t.datetime "updated_at", :null => false
403 t.string "default_owner_uuid"
404 t.boolean "is_active", :default => false
407 add_index "users", ["created_at"], :name => "index_users_on_created_at"
408 add_index "users", ["modified_at"], :name => "index_users_on_modified_at"
409 add_index "users", ["uuid"], :name => "index_users_on_uuid", :unique => true
411 create_table "virtual_machines", :force => true do |t|
412 t.string "uuid", :null => false
413 t.string "owner_uuid", :null => false
414 t.string "modified_by_client_uuid"
415 t.string "modified_by_user_uuid"
416 t.datetime "modified_at"
418 t.datetime "created_at", :null => false
419 t.datetime "updated_at", :null => false
422 add_index "virtual_machines", ["hostname"], :name => "index_virtual_machines_on_hostname"
423 add_index "virtual_machines", ["uuid"], :name => "index_virtual_machines_on_uuid", :unique => true