我正在尝试将所有信息从数据库表保存到 JSON,如下所示:
File.open("tmp/users.json", 'wb') {|file| file << User.all.to_json }
问题是,在散列中缺少这些列:
t.string "encrypted_password", :default => "", :null => false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", :default => 0
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
所有这些列都来自Devise gem。如何将它们添加到最终的 JSON 文件中?
非常感谢。