test/dummy/db/schema.rb in as_user-0.0.3 vs test/dummy/db/schema.rb in as_user-0.0.4

- old
+ new

@@ -9,18 +9,20 @@ # 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. -ActiveRecord::Schema.define(:version => 20121213033825) do +ActiveRecord::Schema.define(:version => 20130103074619) do create_table "users", :force => true do |t| t.string "email", :null => false t.string "name", :limit => 100 t.string "password_digest", :limit => 60 t.datetime "created_at", :null => false t.datetime "updated_at", :null => false + t.string "nickname", :limit => 100 end add_index "users", ["email"], :name => "index_users_on_email", :unique => true + add_index "users", ["name"], :name => "index_users_on_name", :unique => true end