Skip to content

Commit c8ff455

Browse files
David MaloneyDavid Maloney
authored andcommitted
schema changes
1 parent 0f21861 commit c8ff455

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

db/schema.rb

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20130516204810) do
14+
ActiveRecord::Schema.define(:version => 20130522041110) do
1515

1616
create_table "api_keys", :force => true do |t|
1717
t.text "token"
@@ -427,6 +427,27 @@
427427
t.datetime "updated_at", :null => false
428428
end
429429

430+
create_table "task_creds", :force => true do |t|
431+
t.integer "task_id", :null => false
432+
t.integer "cred_id", :null => false
433+
t.datetime "created_at", :null => false
434+
t.datetime "updated_at", :null => false
435+
end
436+
437+
create_table "task_hosts", :force => true do |t|
438+
t.integer "task_id", :null => false
439+
t.integer "host_id", :null => false
440+
t.datetime "created_at", :null => false
441+
t.datetime "updated_at", :null => false
442+
end
443+
444+
create_table "task_services", :force => true do |t|
445+
t.integer "task_id", :null => false
446+
t.integer "service_id", :null => false
447+
t.datetime "created_at", :null => false
448+
t.datetime "updated_at", :null => false
449+
end
450+
430451
create_table "tasks", :force => true do |t|
431452
t.integer "workspace_id", :default => 1, :null => false
432453
t.string "created_by"

0 commit comments

Comments
 (0)