discourse/db/migrate/20120427151452_cooked_migra...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
202 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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