我有一个具有授权级别的用户表...(客户/供应商/管理员) 但我似乎无法保存一个默认设置为0的新用户,它等于" customer"错误在于说"' 0'不是有效的clearance_level" ?
这是我的用户模型
class User < ApplicationRecord
include Clearance::User
validates :email, presence: true
validates :password, presence: true
validates :password, confirmation: { case_sensitive: true }
enum clearance_level: [:customer, :vendor, :admin]
end
这是我的迁移文件...(我删除了列并再次添加它,解决了吗?)
class ChangeClColumns < ActiveRecord::Migration[5.1]
def change
remove_column :users, :clearance_level
add_column :users, :clearance_level, :integer, :default => 0
end
end
也是我的架构
create_table "users", force: :cascade do |t|
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "email", null: false
t.string "encrypted_password", limit: 128, null: false
t.string "confirmation_token", limit: 128
t.string "remember_token", limit: 128, null: false
t.string "first_name"
t.string "last_name"
t.date "date_of_birth"
t.integer "clearance_level", default: 0
t.index ["email"], name: "index_users_on_email"
t.index ["remember_token"], name: "index_users_on_remember_token"
端
答案 0 :(得分:2)
这是因为你要保存字符串'0',而不是整数0.你从params获得的所有东西都是一个字符串。这里有两个选项:1。在赋值之前将其转换为整数。 2.使用enum
名称并从表单发送“customer”而不是“0”。两者都会成功保存。