Files
openfoodnetwork/db/migrate/20250107014617_copy_admin_attribute_to_users.rb
2025-01-22 14:05:50 +11:00

14 lines
344 B
Ruby

# frozen_string_literal: true
class CopyAdminAttributeToUsers < ActiveRecord::Migration[7.0]
def up
execute <<~SQL.squish
UPDATE spree_users SET admin = true WHERE id IN (
SELECT user_id FROM spree_roles_users WHERE role_id IN (
SELECT id FROM spree_roles WHERE name = 'admin'
)
)
SQL
end
end