Files
fetsite/app/models/attachment.rb
Andreas Stephanides 6d925b1b3d annotations
2013-08-23 12:01:14 +02:00

20 lines
425 B
Ruby

# == Schema Information
#
# Table name: attachments
#
# id :integer not null, primary key
# name :string(255)
# created_at :datetime not null
# updated_at :datetime not null
# thema_id :integer
#
class Attachment < ActiveRecord::Base
has_paper_trail
attr_accessible :name
belongs_to :thema
validates :thema, :presence => true
validates :name, :presence => true
end