debian-mirror-gitlab/db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb

7 lines
207 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-10-24 18:46:33 +05:30
class RemoveCiEnabledFromApplicationSettings < ActiveRecord::Migration
def change
remove_column :application_settings, :ci_enabled, :boolean, null: false, default: true
end
end