ubicloud/rhizome/postgres/lib/postgres_extensions.rb
2025-10-22 14:39:57 +03:00

13 lines
358 B
Ruby

# frozen_string_literal: true
# This file is used to define the upgrade scripts for extensions.
# The key is the version and the value is a hash of extension name to upgrade
# script.
EXTENSION_UPGRADE_SCRIPTS = {
17 => {
"postgis" => "SELECT postgis_extensions_upgrade();"
},
18 => {
"postgis" => "SELECT postgis_extensions_upgrade();"
}
}