2018-03-17 18:26:18 +05:30
|
|
|
# rubocop:disable Migration/SaferBooleanColumn
|
2016-09-13 17:45:13 +05:30
|
|
|
class AddKodingToApplicationSettings < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_column :application_settings, :koding_enabled, :boolean
|
|
|
|
add_column :application_settings, :koding_url, :string
|
|
|
|
end
|
|
|
|
end
|