Skip to content

Commit

Permalink
Update schema.rb with new test tables
Browse files Browse the repository at this point in the history
I thought we handled this in #771
but I guess not?
  • Loading branch information
jaredbeck committed Apr 26, 2016
1 parent 6fd1d0a commit 1526620
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/dummy/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@
t.datetime "updated_at"
end

create_table "bar_habtms", force: :cascade do |t|
t.string "name"
end

create_table "bar_habtms_foo_habtms", id: false, force: :cascade do |t|
t.integer "foo_habtm_id"
t.integer "bar_habtm_id"
end

add_index "bar_habtms_foo_habtms", ["bar_habtm_id"], name: "index_bar_habtms_foo_habtms_on_bar_habtm_id"
add_index "bar_habtms_foo_habtms", ["foo_habtm_id"], name: "index_bar_habtms_foo_habtms_on_foo_habtm_id"

create_table "books", force: :cascade do |t|
t.string "title"
end
Expand Down Expand Up @@ -90,6 +102,10 @@
t.string "name"
end

create_table "foo_habtms", force: :cascade do |t|
t.string "name"
end

create_table "fruits", force: :cascade do |t|
t.string "name"
t.string "color"
Expand Down

0 comments on commit 1526620

Please sign in to comment.