mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1313 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
11 lines
478 B
Ruby
11 lines
478 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
|
|
has_and_belongs_to_many :developers_by_sql, :class_name => "Developer", :delete_sql => "DELETE FROM developers_projects WHERE project_id = \#{id} AND developer_id = \#{record.id}"
|
|
end
|
|
|
|
class SpecialProject < Project
|
|
def hello_world
|
|
"hello there!"
|
|
end
|
|
end |