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

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

class AddColumnToUsersStatistisc < Gitlab::Database::Migration[2.1]
  def change
    add_column :users_statistics, :with_highest_role_guest_with_custom_role, :integer, default: 0, null: false
  end
end