18 lines
351 B
Ruby
18 lines
351 B
Ruby
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: releases
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# tag :string(255)
|
||
|
# description :text
|
||
|
# project_id :integer
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
#
|
||
|
|
||
|
class Release < ActiveRecord::Base
|
||
|
belongs_to :project
|
||
|
|
||
|
validates :description, :project, :tag, presence: true
|
||
|
end
|