diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-03-16 21:02:20 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-03-18 11:00:53 -0300 |
commit | a5bad46505d152fe824fb9c51cb15a2a45caff14 (patch) | |
tree | aed5837685cbd42078c32682c887d8ac0747d04d /app | |
parent | fb72271e24663c74e6dd66e610fd1add98628648 (diff) | |
download | gitlab-ce-a5bad46505d152fe824fb9c51cb15a2a45caff14.tar.gz |
Update schema info comment on todo related files
Diffstat (limited to 'app')
-rw-r--r-- | app/models/todo.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/todo.rb b/app/models/todo.rb index 68263a64d5a..024cdcc0d87 100644 --- a/app/models/todo.rb +++ b/app/models/todo.rb @@ -5,14 +5,15 @@ # id :integer not null, primary key # user_id :integer not null # project_id :integer not null -# target_id :integer not null +# target_id :integer # target_type :string not null # author_id :integer -# note_id :integer # action :integer not null # state :string not null # created_at :datetime # updated_at :datetime +# note_id :integer +# commit_id :string # class Todo < ActiveRecord::Base |