spec/dummy/db/schema.rb in genderize-0.0.4 vs spec/dummy/db/schema.rb in genderize-0.0.5

- old
+ new

@@ -7,17 +7,17 @@ # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # 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 to check this file into your version control system. +# It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(:version => 20130506080641) do +ActiveRecord::Schema.define(version: 20130506080641) do - create_table "users", :force => true do |t| - t.string "name", :limit => 20, :null => false - t.string "gender", :limit => 1, :null => false - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false + create_table "users", force: true do |t| + t.string "name", limit: 20, null: false + t.string "gender", limit: 1, null: false + t.datetime "created_at" + t.datetime "updated_at" end end