|
11 | 11 | #
|
12 | 12 | # It's strongly recommended to check this file into your version control system.
|
13 | 13 |
|
14 |
| -ActiveRecord::Schema.define(:version => 20130516204810) do |
| 14 | +ActiveRecord::Schema.define(:version => 20130522041110) do |
15 | 15 |
|
16 | 16 | create_table "api_keys", :force => true do |t|
|
17 | 17 | t.text "token"
|
|
427 | 427 | t.datetime "updated_at", :null => false
|
428 | 428 | end
|
429 | 429 |
|
| 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 | + |
430 | 451 | create_table "tasks", :force => true do |t|
|
431 | 452 | t.integer "workspace_id", :default => 1, :null => false
|
432 | 453 | t.string "created_by"
|
|
0 commit comments