1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 11:19:51 +00:00
discourse/db/migrate/20121115172544_rename_sticky_to_pinned.rb

10 lines
183 B
Ruby

class RenameStickyToPinned < ActiveRecord::Migration[4.2]
def up
rename_column :topics, :sticky, :pinned
end
def down
rename_column :topics, :pinned, :sticky
end
end