Displaying 1 result from an estimated 1 matches for "materialuserdefin".
Did you mean:
materialuserdefines
2008 Jun 29
2
How to write test about validates_associated
Here is my model:
class Account < ActiveRecord::Base
has_many :users, :dependent => :destroy
has_many :bus
belongs_to :currency
has_many :mylogs, :dependent => :destroy
has_many :batchuserdefines, :dependent => :destroy
has_many :materialuserdefines, :dependent => :destroy
has_many :materials
has_many :inventories
has_many :batchs
has_many :courses
has_many :projects
has_many :initstocks,:dependent => :destroy
has_many :vouchertypes, :dependent => :destroy
has_one :coursecodeformat, :dependent => :destroy
valid...