gitlab-org--gitlab-foss/db/migrate/20160608155312_add_after_si...

7 lines
182 B
Ruby

# rubocop:disable all
class AddAfterSignUpTextToApplicationSettings < ActiveRecord::Migration
def change
add_column :application_settings, :after_sign_up_text, :text
end
end