10 lines
275 B
Ruby
10 lines
275 B
Ruby
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
|