summaryrefslogtreecommitdiff
path: root/db/migrate/20230321085011_add_column_to_users_statistisc.rb
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