debian-mirror-gitlab/db/migrate/20170706151212_add_performance_bar_allowed_group_id_to_application_settings.rb
2019-02-15 15:39:39 +05:30

9 lines
261 B
Ruby

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