2025-01-23 09:53:32 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
class EnablePostgisExtension < ActiveRecord::Migration[8.0]
|
|
|
|
|
def change
|
2025-05-16 14:07:55 -04:00
|
|
|
enable_extension 'postgis' unless extension_enabled?('postgis')
|
2025-01-23 09:53:32 -05:00
|
|
|
end
|
|
|
|
|
end
|