Locations added
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package migrations
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"fr.latosa-escrima/core/models"
|
||||
"github.com/uptrace/bun"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Migrations.MustRegister(func(ctx context.Context, db *bun.DB) error {
|
||||
fmt.Print(" [up migration] ")
|
||||
_, err := db.
|
||||
NewAddColumn().
|
||||
Model((*models.Event)(nil)).
|
||||
ColumnExpr("description TEXT").
|
||||
Exec(ctx)
|
||||
_, err = db.
|
||||
NewAddColumn().
|
||||
Model((*models.Event)(nil)).
|
||||
ColumnExpr("location TEXT").
|
||||
Exec(ctx)
|
||||
|
||||
return err
|
||||
}, func(ctx context.Context, db *bun.DB) error {
|
||||
fmt.Print(" [down migration] ")
|
||||
return nil
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user