rails--rails/activerecord/test/fixtures/project.rb

10 lines
296 B
Ruby

class Project < ActiveRecord::Base
has_and_belongs_to_many :developers, :uniq => true
has_and_belongs_to_many :developers_named_david, :class_name => "Developer", :conditions => "name = 'David'", :uniq => true
end
class SpecialProject < Project
def hello_world
"hello there!"
end
end