spec/support/v5.1/db/schema.rb in sorbet-rails-0.5.7 vs spec/support/v5.1/db/schema.rb in sorbet-rails-0.5.8

- old
+ new

@@ -9,10 +9,15 @@ # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20190620000007) do +ActiveRecord::Schema.define(version: 20190620000008) do + + create_table "robe", force: :cascade do |t| + t.integer "wizard_id" + t.index ["wizard_id"], name: "index_robe_on_wizard_id" + end create_table "spell_books", force: :cascade do |t| t.string "name" t.integer "wizard_id" t.integer "book_type", default: 0, null: false