mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
605bc77533
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@149 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
10 lines
No EOL
296 B
Ruby
10 lines
No EOL
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 |