From 4ecf17cf9a81c6576244cd1bd8f1751ac30dc296 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Fri, 11 Nov 2011 00:08:20 +0200 Subject: [PATCH] annotated --- app/models/issue.rb | 1 + app/models/note.rb | 2 +- spec/models/issue_spec.rb | 1 + 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 f649cacb..19b174d8 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 3c59efef..c3c10639 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 e0559ab6..da2d88f6 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 5b16ad36..038e4f9d 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