spec/dummy/db/schema.rb in rails-settings-ui-1.3.0 vs spec/dummy/db/schema.rb in rails-settings-ui-1.3.1
- old
+ new
@@ -10,10 +10,11 @@
# 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: 20140320182332) do
+ self.verbose = false
create_table "settings", force: true do |t|
t.string "var", null: false
t.text "value"
t.integer "thing_id"
@@ -21,7 +22,6 @@
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "settings", ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true
-
end