User has_many :organizations
create_table "organizations", :force => true do |t|
t.string "name"
t.integer "founder_id"
founder_id を割り当てることはできますが、Founder にアクセスできません (メソッドがありません)。
class CreateOrganizations < ActiveRecord::Migration
def change
create_table :organizations do |t|
t.string :name
t.belongs_to :founder, :class_name => "User"
Oranization のファウンダー (ユーザー) 属性にアクセスできるようにするには、何を変更する必要がありますか?