0
我正在使用煉油廠並希望對RefineryUser進行編輯。在模式文件中,我看到以下內容:如何在Rails中找到Refinery內置用戶的模型
create_table "refinery_authentication_devise_users", force: :cascade do |t|
t.string "username", null: false
t.string "email", null: false
t.string "encrypted_password", null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.integer "sign_in_count"
t.datetime "remember_created_at"
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "created_at"
t.datetime "updated_at"
t.string "slug"
t.string "full_name"
end
但是我找不到模型。如何找到模型,以便我可以向RefineryUsers添加回調,驗證和其他代碼。我還可以添加ActiveAdmin並使煉油廠用戶成爲activeadmin用戶。