Files
2026-07-13 12:32:21 +08:00

13 lines
255 B
Lua

local route_path = require "kong.db.declarative.migrations.route_path"
return function(tbl)
if not tbl then
-- we can not migrate without version specified
return
end
route_path(tbl, tbl._format_version)
tbl._format_version = "3.0"
end