Reannotated

This commit is contained in:
randx 2012-06-26 21:23:09 +03:00
parent 283bf80676
commit 6abc649590
26 changed files with 190 additions and 142 deletions

View file

@ -198,15 +198,19 @@ end
#
# Table name: merge_requests
#
# id :integer not null, primary key
# id :integer(4) not null, primary key
# target_branch :string(255) not null
# source_branch :string(255) not null
# project_id :integer not null
# author_id :integer
# assignee_id :integer
# project_id :integer(4) not null
# author_id :integer(4)
# assignee_id :integer(4)
# title :string(255)
# closed :boolean default(FALSE), not null
# created_at :datetime
# updated_at :datetime
# closed :boolean(1) 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
#