Sha256: 63de69309e16ee71b5a13db150c7a6d4566906b0e9fdb555d89d8083da1af21a

Contents?: true

Size: 339 Bytes

Versions: 3

Compression:

Stored size: 339 Bytes

Contents

# == Schema Information
#
# Table name: notes
#
#  id         :integer          not null, primary key
#  user_id    :integer
#  content    :text
#  created_by :integer
#  created_at :datetime
#  updated_at :datetime
#

class Note < ActiveRecord::Base

  belongs_to :user
  belongs_to :organization

  # validates_presence_of :content

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pshq_engine-0.1.6 app/models/note.rb
pshq_engine-0.1.5 app/models/note.rb
pshq_engine-0.0.1 app/models/note.rb