discourse/db/migrate/20120427151452_cooked_migra...

7 lines
171 B
Ruby
Raw Normal View History

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