20150310194358_add_version_check_to_application_settings.rb 205 Bytes
Newer Older
1
# rubocop:disable all
2
class AddVersionCheckToApplicationSettings < ActiveRecord::Migration[4.2]
3 4 5 6
  def change
    add_column :application_settings, :version_check_enabled, :boolean, default: true
  end
end