diff options
| author | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2011-11-11 00:08:20 +0200 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2011-11-11 00:08:20 +0200 |
| commit | 4ecf17cf9a81c6576244cd1bd8f1751ac30dc296 (patch) | |
| tree | 298ade45366fb594a8062a47f9010dc8a7853382 | |
| parent | 1155f2d1d221be3a04b9eeba9037617915efcdd4 (diff) | |
| download | gitlab-ce-4ecf17cf9a81c6576244cd1bd8f1751ac30dc296.tar.gz | |
annotated
| -rw-r--r-- | app/models/issue.rb | 1 | ||||
| -rw-r--r-- | app/models/note.rb | 2 | ||||
| -rw-r--r-- | spec/models/issue_spec.rb | 1 | ||||
| -rw-r--r-- | spec/models/note_spec.rb | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb index f649cacbacf..19b174d86b7 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -54,5 +54,6 @@ end # updated_at :datetime # closed :boolean default(FALSE), not null # position :integer default(0) +# critical :boolean default(FALSE), not null # diff --git a/app/models/note.rb b/app/models/note.rb index 3c59efefb1b..c3c10639bf9 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -38,7 +38,7 @@ end # Table name: notes # # id :integer not null, primary key -# note :string(255) +# note :text # noteable_id :string(255) # noteable_type :string(255) # author_id :integer diff --git a/spec/models/issue_spec.rb b/spec/models/issue_spec.rb index e0559ab6663..da2d88f67f8 100644 --- a/spec/models/issue_spec.rb +++ b/spec/models/issue_spec.rb @@ -39,5 +39,6 @@ end # updated_at :datetime # closed :boolean default(FALSE), not null # position :integer default(0) +# critical :boolean default(FALSE), not null # diff --git a/spec/models/note_spec.rb b/spec/models/note_spec.rb index 5b16ad3682c..038e4f9d36e 100644 --- a/spec/models/note_spec.rb +++ b/spec/models/note_spec.rb @@ -66,7 +66,7 @@ end # Table name: notes # # id :integer not null, primary key -# note :string(255) +# note :text # noteable_id :string(255) # noteable_type :string(255) # author_id :integer |
