1
我收到錯誤「未定義的方法」時間戳! 。使用與MongoMapper的Rails 3時,並想知道如果有人能幫助解決這個問題MongoMapper和Rails 3導致未定義的方法'時間戳!'
我使用Rails 3.0.1,mongo_mapper 0.8.6和1.1蒙戈
我的模型:
class User
include MongoMapper::EmbeddedDocument
key :_id, String
key :name, String, :required => true, :limit => 100
key :email, String, :required => false, :limit => 200
key :bio, String, :required => false, :limit => 300
timestamps!
end