rosa-build/db/migrate/20120111080234_change_comme...

10 lines
208 B
Ruby
Raw Normal View History

2012-01-11 18:10:23 +00:00
class ChangeCommentableId < ActiveRecord::Migration
def self.up
change_column :comments, :commentable_id, :string
end
def self.down
change_column :comments, :commentable_id, :integer
end
end