18F/identity-idp

View on GitHub
db/primary_migrate/20230518221444_add_postgis_extension_to_database.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddPostgisExtensionToDatabase < ActiveRecord::Migration[7.0]
  def change
    # In the time since we added this extension, we have removed it and
    # also removed the postgis-compatible images from our CI pipeline,
    # so running this old migration fails
    # enable_extension 'postgis'
  end
end