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