diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-10-01 15:15:28 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-10-01 15:15:28 +0300 |
commit | e219cf7246c6a0495e4507deaffeba11e79f13b8 (patch) | |
tree | a64aed496efc5b3ad3d30a450ffd6a9b67b8d51e /app/models | |
parent | 4aa22754094ce51d33f1932cf33c32b7a99ffb49 (diff) | |
download | gitlab-ce-e219cf7246c6a0495e4507deaffeba11e79f13b8.tar.gz |
Annotate!
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/group.rb | 2 | ||||
-rw-r--r-- | app/models/merge_request.rb | 1 | ||||
-rw-r--r-- | app/models/namespace.rb | 2 | ||||
-rw-r--r-- | app/models/note.rb | 1 | ||||
-rw-r--r-- | app/models/pivotaltracker_service.rb | 3 |
5 files changed, 7 insertions, 2 deletions
diff --git a/app/models/group.rb b/app/models/group.rb index 0cc3a3a0f41..d6272ca46f5 100644 --- a/app/models/group.rb +++ b/app/models/group.rb @@ -5,7 +5,7 @@ # id :integer not null, primary key # name :string(255) not null # path :string(255) not null -# owner_id :integer not null +# owner_id :integer # created_at :datetime not null # updated_at :datetime not null # type :string(255) diff --git a/app/models/merge_request.rb b/app/models/merge_request.rb index 7f367588b23..a26190015b2 100644 --- a/app/models/merge_request.rb +++ b/app/models/merge_request.rb @@ -18,6 +18,7 @@ # merge_status :string(255) # target_project_id :integer not null # iid :integer +# description :text # require Rails.root.join("app/models/commit") diff --git a/app/models/namespace.rb b/app/models/namespace.rb index 6ac94c06604..fde06649c78 100644 --- a/app/models/namespace.rb +++ b/app/models/namespace.rb @@ -5,7 +5,7 @@ # id :integer not null, primary key # name :string(255) not null # path :string(255) not null -# owner_id :integer not null +# owner_id :integer # created_at :datetime not null # updated_at :datetime not null # type :string(255) diff --git a/app/models/note.rb b/app/models/note.rb index e819a5516b5..7e7387abed6 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -14,6 +14,7 @@ # commit_id :string(255) # noteable_id :integer # st_diff :text +# system :boolean default(FALSE), not null # require 'carrierwave/orm/activerecord' diff --git a/app/models/pivotaltracker_service.rb b/app/models/pivotaltracker_service.rb index f28e142da77..c5b1b9ab8d3 100644 --- a/app/models/pivotaltracker_service.rb +++ b/app/models/pivotaltracker_service.rb @@ -10,6 +10,9 @@ # created_at :datetime not null # updated_at :datetime not null # active :boolean default(FALSE), not null +# project_url :string(255) +# subdomain :string(255) +# room :string(255) # class PivotaltrackerService < Service |