Commit f4e7ad7a authored by gitlabhq's avatar gitlabhq

fixed limit

parent 9611a27e
class ChangeNoteNoteToText < ActiveRecord::Migration class ChangeNoteNoteToText < ActiveRecord::Migration
def up def up
change_column :notes, :note, :text change_column :notes, :note, :text, :limit => false
end end
def down def down
......
...@@ -36,7 +36,7 @@ ActiveRecord::Schema.define(:version => 20111027142641) do ...@@ -36,7 +36,7 @@ ActiveRecord::Schema.define(:version => 20111027142641) do
end end
create_table "notes", :force => true do |t| create_table "notes", :force => true do |t|
t.text "note", :limit => 255 t.text "note"
t.string "noteable_id" t.string "noteable_id"
t.string "noteable_type" t.string "noteable_type"
t.integer "author_id" t.integer "author_id"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment