gitlabhq/db/migrate/20120121122616_fix_noteable_id.rb
2012-01-22 20:52:06 +02:00

9 lines
146 B
Ruby

class FixNoteableId < ActiveRecord::Migration
def up
change_column :notes, :noteable_id, :string, :limit => 255
end
def down
end
end