Files
kong--kong/spec/fixtures/custom_plugins/kong/plugins/plugin-with-custom-dao/daos.lua
T
2026-07-13 12:32:21 +08:00

14 lines
238 B
Lua

local typedefs = require "kong.db.schema.typedefs"
return {
{
dao = "kong.plugins.plugin-with-custom-dao.custom_dao",
name = "custom_dao",
primary_key = { "id" },
fields = {
{ id = typedefs.uuid },
},
},
}