mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
package sqlmigration
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
"github.com/uptrace/bun"
|
|
"github.com/uptrace/bun/migrate"
|
|
)
|
|
|
|
type addSavedViews struct{}
|
|
|
|
func NewAddSavedViewsFactory() factory.ProviderFactory[SQLMigration, Config] {
|
|
return factory.NewProviderFactory(factory.MustNewName("add_saved_views"), newAddSavedViews)
|
|
}
|
|
|
|
func newAddSavedViews(_ context.Context, _ factory.ProviderSettings, _ Config) (SQLMigration, error) {
|
|
return &addSavedViews{}, nil
|
|
}
|
|
|
|
func (migration *addSavedViews) Register(migrations *migrate.Migrations) error {
|
|
if err := migrations.Register(migration.Up, migration.Down); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (migration *addSavedViews) Up(ctx context.Context, db *bun.DB) error {
|
|
// table:saved_views op:create
|
|
if _, err := db.NewCreateTable().
|
|
Model(&struct {
|
|
bun.BaseModel `bun:"table:saved_views"`
|
|
UUID string `bun:"uuid,pk,type:text"`
|
|
Name string `bun:"name,type:text,notnull"`
|
|
Category string `bun:"category,type:text,notnull"`
|
|
CreatedAt time.Time `bun:"created_at,notnull"`
|
|
CreatedBy string `bun:"created_by,type:text"`
|
|
UpdatedAt time.Time `bun:"updated_at,notnull"`
|
|
UpdatedBy string `bun:"updated_by,type:text"`
|
|
SourcePage string `bun:"source_page,type:text,notnull"`
|
|
Tags string `bun:"tags,type:text"`
|
|
Data string `bun:"data,type:text,notnull"`
|
|
ExtraData string `bun:"extra_data,type:text"`
|
|
}{}).
|
|
IfNotExists().
|
|
Exec(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (migration *addSavedViews) Down(ctx context.Context, db *bun.DB) error {
|
|
return nil
|
|
}
|