Commit 4ecf17cf9a81c6576244cd1bd8f1751ac30dc296

Authored by Dmitriy Zaporozhets
1 parent 1155f2d1

annotated

app/models/issue.rb
... ... @@ -54,5 +54,6 @@ end
54 54 # updated_at :datetime
55 55 # closed :boolean default(FALSE), not null
56 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 38 # Table name: notes
39 39 #
40 40 # id :integer not null, primary key
41   -# note :string(255)
  41 +# note :text
42 42 # noteable_id :string(255)
43 43 # noteable_type :string(255)
44 44 # author_id :integer
... ...
spec/models/issue_spec.rb
... ... @@ -39,5 +39,6 @@ end
39 39 # updated_at :datetime
40 40 # closed :boolean default(FALSE), not null
41 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 66 # Table name: notes
67 67 #
68 68 # id :integer not null, primary key
69   -# note :string(255)
  69 +# note :text
70 70 # noteable_id :string(255)
71 71 # noteable_type :string(255)
72 72 # author_id :integer
... ...