mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
178 B
Ruby
10 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
|