discourse/db/migrate/20121115172544_rename_stick...

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

12 lines
214 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RenameStickyToPinned < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def up
rename_column :topics, :sticky, :pinned
end
def down
rename_column :topics, :pinned, :sticky
end
end