initial data & migrations

This commit is contained in:
Simon Martens
2025-02-07 17:42:10 +01:00
parent 45f28effe8
commit 7ff6bd9d28
85 changed files with 2481809 additions and 0 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
})
}