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

20150529150354_add_after_sign_out_path_for_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 833c36de52d5e0526aa80890397669519ed3ff58 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddAfterSignOutPathForApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :after_sign_out_path, :string
  end
end