debian-mirror-gitlab/db/migrate/20160608155312_add_after_sign_up_text_to_application_settings.rb
2016-06-16 23:09:34 +05:30

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