18 lines
421 B
Ruby
18 lines
421 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddGrafanaToSettings < ActiveRecord::Migration[5.1]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
disable_ddl_transaction!
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
add_column_with_default(:application_settings, :grafana_enabled, :boolean,
|
|
default: false, allow_null: false)
|
|
end
|
|
|
|
def down
|
|
remove_column(:application_settings, :grafana_enabled)
|
|
end
|
|
end
|