mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
15 lines
412 B
Ruby
15 lines
412 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
|