fixed commit commenting

This commit is contained in:
Dmitriy Zaporozhets 2012-01-21 14:54:32 +02:00
parent 3d7b35a37d
commit f4e3ec29c4
7 changed files with 84 additions and 7 deletions

View file

@ -0,0 +1,9 @@
class FixNoteableId < ActiveRecord::Migration
def up
change_column :notes, :noteable_id, :string, :limit => 255
end
def down
change_column :notes, :noteable_id, :integer, :limit => 11
end
end