11 lines
322 B
Ruby
11 lines
322 B
Ruby
# rubocop:disable Migration/SaferBooleanColumn
|
|
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
|