字段
根据 Mongoid 文档 ,有 16 种有效的字段类型:
- 排列
- BigDecimal 的
- 布尔
- 日期
- 日期时间
- 浮动
- 哈希
- 整数
- BSON ::的 ObjectId
- BSON ::二进制
- 范围
- 正则表达式
- 字符串
- 符号
- 时间
- TimeWithZone
要添加一个字段(让我们称之为 name
并将其设为 String
),请将其添加到模型文件中:
field :name, type: String
要设置默认值,只需传入 default
选项:
field :name, type: String, default: ""