aboutsummaryrefslogtreecommitdiff
path: root/migrations/20241010175211_session.go
blob: 61dd8e8c134d904ba2e9732237dcef0e1a603064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package migrations

import (
	"context"
	"fmt"

	"github.com/uptrace/bun"
	"neonxp.ru/go/framework/pkg/middleware/session"
)

//nolint:gochecknoinits
func init() {
	Migrations.MustRegister(func(ctx context.Context, db *bun.DB) error {
		fmt.Print(" [up migration] ")

		if _, err := db.NewCreateTable().
			Model((*session.Model)(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((*session.Model)(nil)).
			Exec(ctx); err != nil {
			return err
		}

		return nil
	})
}