我正在通過Ruby on Rails tutorial工作,並僅創建了一個帶有三個屬性的Comment模型。Rails模型屬性位置
rails generate model Comment commenter:string body:text post:references
它產生一個ActiveRecord類post
但不commenter
和body
。
class Comment < ActiveRecord::Base
belongs_to :post
end
爲什麼rails沒有正式定義除數據庫遷移腳本以外的任何地方的非引用屬性?