gitlab-org--gitlab-foss/db/migrate/20150211174341_allow_null_i...

7 lines
169 B
Ruby

# rubocop:disable all
class AllowNullInServicesProjectId < ActiveRecord::Migration
def change
change_column :services, :project_id, :integer, null: true
end
end