debian-mirror-gitlab/db/migrate/20150918084513_add_ci_enabled_to_application_settings.rb

7 lines
199 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-09-25 12:07:36 +05:30
class AddCiEnabledToApplicationSettings < ActiveRecord::Migration
def change
add_column :application_settings, :ci_enabled, :boolean, null: false, default: true
end
end