debian-mirror-gitlab/db/migrate/20230321085011_add_column_to_users_statistisc.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
233 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# 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