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