mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package sqlmigration
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
"github.com/uptrace/bun"
|
|
"github.com/uptrace/bun/migrate"
|
|
)
|
|
|
|
type addDataMigrations struct{}
|
|
|
|
func NewAddDataMigrationsFactory() factory.ProviderFactory[SQLMigration, Config] {
|
|
return factory.NewProviderFactory(factory.MustNewName("add_data_migrations"), newAddDataMigrations)
|
|
}
|
|
|
|
func newAddDataMigrations(_ context.Context, _ factory.ProviderSettings, _ Config) (SQLMigration, error) {
|
|
return &addDataMigrations{}, nil
|
|
}
|
|
|
|
func (migration *addDataMigrations) Register(migrations *migrate.Migrations) error {
|
|
if err := migrations.Register(migration.Up, migration.Down); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (migration *addDataMigrations) Up(ctx context.Context, db *bun.DB) error {
|
|
// table:data_migrations
|
|
if _, err := db.NewCreateTable().
|
|
Model(&struct {
|
|
bun.BaseModel `bun:"table:data_migrations"`
|
|
ID int `bun:"id,pk,autoincrement"`
|
|
Version string `bun:"version,unique,notnull,type:VARCHAR(255)"`
|
|
CreatedAt time.Time `bun:"created_at,notnull,default:current_timestamp"`
|
|
Succeeded bool `bun:"succeeded,notnull,default:false"`
|
|
}{}).
|
|
IfNotExists().
|
|
Exec(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (migration *addDataMigrations) Down(ctx context.Context, db *bun.DB) error {
|
|
return nil
|
|
}
|