diff options
author | randx <dmitriy.zaporozhets@gmail.com> | 2012-06-26 21:23:09 +0300 |
---|---|---|
committer | randx <dmitriy.zaporozhets@gmail.com> | 2012-06-26 21:23:09 +0300 |
commit | 6abc649590cfb110a88e6b2bdd3755c7d8ab6b4e (patch) | |
tree | 564890fe3f7211f0b53a36a6b69e82cddcc261a9 /app/models/milestone.rb | |
parent | 283bf806766c02c8c66230f4c765070b0ed812fb (diff) | |
download | gitlab-ce-6abc649590cfb110a88e6b2bdd3755c7d8ab6b4e.tar.gz |
Reannotated
Diffstat (limited to 'app/models/milestone.rb')
-rw-r--r-- | app/models/milestone.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/models/milestone.rb b/app/models/milestone.rb index 733c6a86803..7fdfe29edc8 100644 --- a/app/models/milestone.rb +++ b/app/models/milestone.rb @@ -1,3 +1,17 @@ +# == Schema Information +# +# Table name: milestones +# +# id :integer(4) not null, primary key +# title :string(255) not null +# project_id :integer(4) not null +# description :text +# due_date :date +# closed :boolean(1) default(FALSE), not null +# created_at :datetime not null +# updated_at :datetime not null +# + class Milestone < ActiveRecord::Base belongs_to :project has_many :issues |