debian-mirror-gitlab/db/migrate/20150211174341_allow_null_in_services_project_id.rb
2019-02-15 15:39:39 +05:30

5 lines
152 B
Ruby

class AllowNullInServicesProjectId < ActiveRecord::Migration[4.2]
def change
change_column :services, :project_id, :integer, null: true
end
end