mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
317 B
Ruby
10 lines
317 B
Ruby
|
class AddClearedPinnedToTopicUsers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :topic_users, :cleared_pinned_at, :datetime, null: true
|
||
|
|
||
|
add_column :topics, :pinned_at, :datetime, null: true
|
||
|
execute "UPDATE topics SET pinned_at = created_at WHERE pinned"
|
||
|
remove_column :topics, :pinned
|
||
|
end
|
||
|
end
|