Commit f4e7ad7a4b8f188419104995e7b6346149ab31ab
1 parent
9611a27e
Exists in
master
and in
4 other branches
fixed limit
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
db/migrate/20111027142641_change_note_note_to_text.rb
db/schema.rb
... | ... | @@ -36,7 +36,7 @@ ActiveRecord::Schema.define(:version => 20111027142641) do |
36 | 36 | end |
37 | 37 | |
38 | 38 | create_table "notes", :force => true do |t| |
39 | - t.text "note", :limit => 255 | |
39 | + t.text "note" | |
40 | 40 | t.string "noteable_id" |
41 | 41 | t.string "noteable_type" |
42 | 42 | t.integer "author_id" | ... | ... |