Commit 9611a27e0ca7e800d978d7355dbfb896f6f6cd2c
1 parent
5fe736ab
Exists in
master
and in
4 other branches
note as text
Showing
4 changed files
with
12 additions
and
4 deletions
Show diff stats
app/models/note.rb
app/views/notes/_form.html.haml
db/schema.rb
| ... | ... | @@ -11,7 +11,7 @@ |
| 11 | 11 | # |
| 12 | 12 | # It's strongly recommended to check this file into your version control system. |
| 13 | 13 | |
| 14 | -ActiveRecord::Schema.define(:version => 20111025134235) do | |
| 14 | +ActiveRecord::Schema.define(:version => 20111027142641) do | |
| 15 | 15 | |
| 16 | 16 | create_table "issues", :force => true do |t| |
| 17 | 17 | t.string "title" |
| ... | ... | @@ -36,7 +36,7 @@ ActiveRecord::Schema.define(:version => 20111025134235) do |
| 36 | 36 | end |
| 37 | 37 | |
| 38 | 38 | create_table "notes", :force => true do |t| |
| 39 | - t.string "note" | |
| 39 | + t.text "note", :limit => 255 | |
| 40 | 40 | t.string "noteable_id" |
| 41 | 41 | t.string "noteable_type" |
| 42 | 42 | t.integer "author_id" | ... | ... |