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

20160608155312_add_after_sign_up_text_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: 3c5d2ad910e37471d524ed87da3c89c78a4fdc15 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddAfterSignUpTextToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :after_sign_up_text, :text
  end
end