discourse/db/migrate/20120427151452_cooked_migra...

7 lines
166 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class CookedMigration < ActiveRecord::Migration
def change
rename_column :posts, :content, :raw
rename_column :posts, :formatted_content, :cooked
end
end