gitlab-org--gitlab-foss/db/migrate/20170706151212_add_performa...

10 lines
256 B
Ruby

class AddPerformanceBarAllowedGroupIdToApplicationSettings < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :application_settings, :performance_bar_allowed_group_id, :integer
end
end