Make old migration more robust (#38775)

This commit is contained in:
David Roetzel
2026-04-22 12:44:36 +02:00
committed by GitHub
parent a3127a146d
commit 58df263159

View File

@@ -7,7 +7,7 @@ class MigrateRoles < ActiveRecord::Migration[5.2]
class User < ApplicationRecord; end
def up
load Rails.root.join('db', 'seeds', '03_roles.rb')
create_user_roles
owner_role = UserRole.find_by(name: 'Owner')
moderator_role = UserRole.find_by(name: 'Moderator')
@@ -24,4 +24,30 @@ class MigrateRoles < ActiveRecord::Migration[5.2]
User.where(role_id: [admin_role.id, owner_role.id]).in_batches.update_all(admin: true) if admin_role
User.where(role_id: moderator_role.id).in_batches.update_all(moderator: true) if moderator_role
end
private
def create_user_roles
now = Time.zone.now.to_fs(:db)
safety_assured do
execute <<~SQL.squish
INSERT INTO user_roles ( id, permissions, created_at, updated_at )
VALUES ( -99, 65536, '#{now}', '#{now}' )
ON CONFLICT DO NOTHING
SQL
[
['Moderator', 10, 1308],
['Admin', 100, 983_036],
['Owner', 1000, 1],
].each do |name, position, permissions|
execute <<~SQL.squish
INSERT INTO user_roles ( name, position, highlighted, permissions, created_at, updated_at )
SELECT '#{name}', #{position}, true, #{permissions}, '#{now}', '#{now}'
WHERE NOT EXISTS ( SELECT 1 FROM user_roles WHERE name = '#{name}' )
SQL
end
end
end
end