mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -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
15 lines
415 B
Ruby
15 lines
415 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AllowNullUserIdOnPosts < ActiveRecord::Migration[4.2]
|
|
def up
|
|
change_column :posts, :user_id, :integer, null: true
|
|
execute "UPDATE posts SET user_id = NULL WHERE nuked_user = true"
|
|
remove_column :posts, :nuked_user
|
|
end
|
|
|
|
def down
|
|
add_column :posts, :nuked_user, :boolean, default: false
|
|
change_column :posts, :user_id, :integer, null: false
|
|
end
|
|
end
|