config.authentication_keys = [ :login ]
并将其添加到我的用户模型中:
def email_required? false end
但是,当我尝试保存用户时,我收到此错误:
sqlite3::sqlException: users.email may not be NULL
我想在迁移中改变一些东西吗?
change_column :users,:email,:string,:null => true
文档:http://apidock.com/rails/ActiveRecord/ConnectionAdapters/SchemaStatements/change_column