summaryrefslogtreecommitdiff
path: root/db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb
blob: a8e6e54062a10fe3cc7bedd0f0c28e17fb238017 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RemoveCiEnabledFromApplicationSettings < ActiveRecord::Migration[4.2]
  def change
    remove_column :application_settings, :ci_enabled, :boolean, null: false, default: true
  end
end