Deconflate organization/conference IDs in role versions

Resolves failing test spec/features/versions_spec.rb:321

Partially reverts 81853d1ef9
This commit is contained in:
Andrew Kvalheim 2020-04-03 09:51:35 -07:00 committed by Andrew Kvalheim
parent 150bbef61f
commit 3f6a9e91bd
6 changed files with 69 additions and 37 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20181229233811) do
ActiveRecord::Schema.define(version: 2020_03_31_214534) do
create_table "answers", force: :cascade do |t|
t.string "title"
@ -637,7 +637,9 @@ ActiveRecord::Schema.define(version: 20181229233811) do
t.text "object_changes"
t.datetime "created_at"
t.integer "conference_id"
t.integer "organization_id"
t.index ["item_type", "item_id"], name: "index_versions_on_item_type_and_item_id"
t.index ["organization_id"], name: "index_versions_on_organization_id"
end
create_table "votes", force: :cascade do |t|