Update schema

It seems like EventUser was missed in the schema.
This commit is contained in:
Ana María Martínez Gómez 2018-06-15 16:29:00 +02:00
parent 7fa007d621
commit 357d713719

View file

@ -279,6 +279,11 @@ ActiveRecord::Schema.define(version: 20180316220446) do
t.datetime "created_at"
end
create_table "events_users", id: false, force: :cascade do |t|
t.integer "event_id"
t.integer "user_id"
end
create_table "lodgings", force: :cascade do |t|
t.string "name"
t.text "description"