5 lines
112 B
Ruby
5 lines
112 B
Ruby
#-- encoding: UTF-8
|
|
class Project < ActiveRecord::Base
|
|
has_and_belongs_to_many :developers, :uniq => true
|
|
end
|