mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
9 lines
178 B
Ruby
9 lines
178 B
Ruby
class RenameStickyToPinned < ActiveRecord::Migration
|
|
def up
|
|
rename_column :topics, :sticky, :pinned
|
|
end
|
|
|
|
def down
|
|
rename_column :topics, :pinned, :sticky
|
|
end
|
|
end
|