ShOrgRu/migrations/20241005143542_1_init.go

28 lines
541 B
Go
Raw Normal View History

2024-10-06 17:04:37 +03:00
package migrations
import (
"context"
"fmt"
"github.com/uptrace/bun"
"sh.org.ru/pkg/model"
)
func init() {
Migrations.MustRegister(func(ctx context.Context, db *bun.DB) error {
fmt.Print(" [up migration] ")
if _, err := db.NewCreateTable().Model((*model.Quote)(nil)).Exec(ctx); err != nil {
return err
}
return nil
}, func(ctx context.Context, db *bun.DB) error {
fmt.Print(" [down migration] ")
if _, err := db.NewDropTable().Model((*model.Quote)(nil)).Exec(ctx); err != nil {
return err
}
return nil
})
}