6 lines
132 B
Ruby
6 lines
132 B
Ruby
class FixNotableKey < ActiveRecord::Migration
|
|
def change
|
|
change_column :notes, :noteable_id, :integer, :limit => 11
|
|
end
|
|
end
|