Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160817133006_add_koding_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 915d3d78e40ebe9ed09c616a0e4fd605f9fbc850 (plain)
1
2
3
4
5
6
7
8
9
10
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