spec/dummy/db/schema.rb in human_attributes-0.7.0 vs spec/dummy/db/schema.rb in human_attributes-0.7.1

- old
+ new

@@ -8,20 +8,21 @@ # migrations from scratch. Old migrations may fail to apply correctly if those # migrations use external dependencies or application code. # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2016_11_13_032308) do - +ActiveRecord::Schema.define(version: 2021_11_03_114830) do create_table "purchases", force: :cascade do |t| t.boolean "paid" t.decimal "commission" t.integer "quantity" t.string "state" t.datetime "expired_at" t.decimal "amount" t.text "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "payment_method" + t.integer "shipping" + t.integer "store" end - end