module ActsAsAccount class Posting < ActiveRecord::Base set_table_name :acts_as_account_postings belongs_to :account belongs_to :other_account, :class_name => 'Account' belongs_to :journal belongs_to :reference, :polymorphic => true end end