7 lines
163 B
Ruby
7 lines
163 B
Ruby
class Note < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :project, optional: true
|
|
has_and_belongs_to_many :tags
|
|
|
|
validates :content, presence: true
|
|
end
|