mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
20 lines
600 B
Ruby
20 lines
600 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameDeferColumnsOnPostAction < ActiveRecord::Migration[4.2]
|
|
def up
|
|
rename_column :post_actions, :defer_by, :defered_by_id
|
|
|
|
add_column :post_actions, :defered_at, :datetime
|
|
execute "UPDATE post_actions SET defered_at = updated_at WHERE defer = 't'"
|
|
remove_column :post_actions, :defer
|
|
end
|
|
|
|
def down
|
|
rename_column :post_actions, :defered_by_id, :defer_by
|
|
|
|
add_column :post_actions, :defer, :boolean
|
|
execute "UPDATE post_actions SET defer = 't' WHERE defered_at IS NOT NULL"
|
|
remove_column :post_actions, :defered_at
|
|
end
|
|
end
|