spec/dummy/db/schema.rb in provider_taxonomy-0.1.5 vs spec/dummy/db/schema.rb in provider_taxonomy-0.1.6

- old
+ new

@@ -8,23 +8,21 @@ # 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: 20160909180325) do - +ActiveRecord::Schema.define(version: 20_160_909_180_325) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" create_table "taxonomy_items", force: :cascade do |t| - t.string "name", null: false + t.string "name", null: false t.integer "parent_id" t.integer "depth" t.string "category" t.string "taxonomy_code" t.string "sub_category" t.string "definition" t.string "notes" t.index ["parent_id"], name: "index_taxonomy_items_on_parent_id", using: :btree end - end