Commit 4ecf17cf9a81c6576244cd1bd8f1751ac30dc296
1 parent
1155f2d1
Exists in
master
and in
4 other branches
annotated
Showing
4 changed files
with
4 additions
and
2 deletions
Show diff stats
app/models/issue.rb
| @@ -54,5 +54,6 @@ end | @@ -54,5 +54,6 @@ end | ||
| 54 | # updated_at :datetime | 54 | # updated_at :datetime |
| 55 | # closed :boolean default(FALSE), not null | 55 | # closed :boolean default(FALSE), not null |
| 56 | # position :integer default(0) | 56 | # position :integer default(0) |
| 57 | +# critical :boolean default(FALSE), not null | ||
| 57 | # | 58 | # |
| 58 | 59 |
app/models/note.rb
| @@ -38,7 +38,7 @@ end | @@ -38,7 +38,7 @@ end | ||
| 38 | # Table name: notes | 38 | # Table name: notes |
| 39 | # | 39 | # |
| 40 | # id :integer not null, primary key | 40 | # id :integer not null, primary key |
| 41 | -# note :string(255) | 41 | +# note :text |
| 42 | # noteable_id :string(255) | 42 | # noteable_id :string(255) |
| 43 | # noteable_type :string(255) | 43 | # noteable_type :string(255) |
| 44 | # author_id :integer | 44 | # author_id :integer |
spec/models/issue_spec.rb
| @@ -39,5 +39,6 @@ end | @@ -39,5 +39,6 @@ end | ||
| 39 | # updated_at :datetime | 39 | # updated_at :datetime |
| 40 | # closed :boolean default(FALSE), not null | 40 | # closed :boolean default(FALSE), not null |
| 41 | # position :integer default(0) | 41 | # position :integer default(0) |
| 42 | +# critical :boolean default(FALSE), not null | ||
| 42 | # | 43 | # |
| 43 | 44 |
spec/models/note_spec.rb
| @@ -66,7 +66,7 @@ end | @@ -66,7 +66,7 @@ end | ||
| 66 | # Table name: notes | 66 | # Table name: notes |
| 67 | # | 67 | # |
| 68 | # id :integer not null, primary key | 68 | # id :integer not null, primary key |
| 69 | -# note :string(255) | 69 | +# note :text |
| 70 | # noteable_id :string(255) | 70 | # noteable_id :string(255) |
| 71 | # noteable_type :string(255) | 71 | # noteable_type :string(255) |
| 72 | # author_id :integer | 72 | # author_id :integer |