Exemplare -> Items

This commit is contained in:
Simon Martens
2025-02-09 18:24:09 +01:00
parent 52239727d4
commit 28b3833228
5 changed files with 51 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
package migrations
import (
"github.com/pocketbase/pocketbase/core"
m "github.com/pocketbase/pocketbase/migrations"
)
func init() {
m.Register(func(app core.App) error {
// add up queries...
return nil
}, func(app core.App) error {
// add down queries...
return nil
})
}