annotate models

This commit is contained in:
Nihad Abbasov 2012-09-26 22:36:31 -07:00
parent a8870e87e4
commit 2a4359a572
15 changed files with 86 additions and 57 deletions

View file

@ -191,19 +191,19 @@ end
#
# Table name: merge_requests
#
# id :integer(4) not null, primary key
# id :integer not null, primary key
# target_branch :string(255) not null
# source_branch :string(255) not null
# project_id :integer(4) not null
# author_id :integer(4)
# assignee_id :integer(4)
# project_id :integer not null
# author_id :integer
# assignee_id :integer
# title :string(255)
# closed :boolean(1) default(FALSE), not null
# closed :boolean default(FALSE), not null
# created_at :datetime not null
# updated_at :datetime not null
# st_commits :text(2147483647
# st_diffs :text(2147483647
# merged :boolean(1) default(FALSE), not null
# state :integer(4) default(1), not null
# merged :boolean default(FALSE), not null
# state :integer default(1), not null
#