Update schema.rb with new test tables

I thought we handled this in https://github.com/airblade/paper_trail/pull/771
but I guess not?
This commit is contained in:
Jared Beck 2016-04-25 21:46:09 -04:00
parent 6fd1d0a882
commit 1526620c33
1 changed files with 16 additions and 0 deletions

View File

@ -46,6 +46,18 @@ ActiveRecord::Schema.define(version: 20110208155312) do
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
@ -90,6 +102,10 @@ ActiveRecord::Schema.define(version: 20110208155312) do
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"