discourse/db/migrate/20120427151452_cooked_migration.rb

7 lines
171 B
Ruby
Raw Normal View History

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