Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211103062728_add_with_highest_role_minimal_access_to_users_statistics.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43cd7afbf0615026dea8d402004da590845b7d20 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddWithHighestRoleMinimalAccessToUsersStatistics < Gitlab::Database::Migration[1.0]
  def change
    add_column :users_statistics, :with_highest_role_minimal_access, :integer, null: false, default: 0
  end
end