openstreetmap-website/db/migrate/20230816135800_use_microsoft_graph.rb
2023-08-20 10:19:30 +01:00

9 lines
282 B
Ruby

class UseMicrosoftGraph < ActiveRecord::Migration[7.0]
def self.up
User.where(:auth_provider => "windowslive").update_all(:auth_provider => "microsoft")
end
def self.down
User.where(:auth_provider => "microsoft").update_all(:auth_provider => "windowslive")
end
end