Trigger refreshing of permissions in a migration

This migration resets `users.authorized_projects_populated` (in batches)
so that active users' permissions are refreshed on the next request.
This ensures that their permissions are properly stored.
This commit is contained in:
Yorick Peterse 2017-01-31 22:44:31 +01:00
parent 32da760268
commit dbf414df33
No known key found for this signature in database
GPG Key ID: EDD30D2BEB691AC9
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,4 @@
---
title: Reset users.authorized_projects_populated to automatically refresh user permissions
merge_request:
author:

View File

@ -0,0 +1,19 @@
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class ResetUsersAuthorizedProjectsPopulated < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
# This ensures we don't lock all users for the duration of the migration.
update_column_in_batches(:users, :authorized_projects_populated, nil)
end
def down
# noop
end
end