mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
package sqlmigration
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
"github.com/uptrace/bun"
|
|
"github.com/uptrace/bun/migrate"
|
|
)
|
|
|
|
type addPreferences struct{}
|
|
|
|
func NewAddPreferencesFactory() factory.ProviderFactory[SQLMigration, Config] {
|
|
return factory.NewProviderFactory(factory.MustNewName("add_preferences"), newAddPreferences)
|
|
}
|
|
|
|
func newAddPreferences(_ context.Context, _ factory.ProviderSettings, _ Config) (SQLMigration, error) {
|
|
return &addPreferences{}, nil
|
|
}
|
|
|
|
func (migration *addPreferences) Register(migrations *migrate.Migrations) error {
|
|
if err := migrations.Register(migration.Up, migration.Down); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (migration *addPreferences) Up(ctx context.Context, db *bun.DB) error {
|
|
// table:user_preference
|
|
if _, err := db.NewCreateTable().
|
|
Model(&struct {
|
|
bun.BaseModel `bun:"table:user_preference"`
|
|
PreferenceID string `bun:"preference_id,type:text,pk"`
|
|
PreferenceValue string `bun:"preference_value,type:text"`
|
|
UserID string `bun:"user_id,type:text,pk"`
|
|
}{}).
|
|
IfNotExists().
|
|
ForeignKey(`("user_id") REFERENCES "users" ("id") ON DELETE CASCADE ON UPDATE CASCADE`).
|
|
Exec(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
// table:org_preference
|
|
if _, err := db.NewCreateTable().
|
|
Model(&struct {
|
|
bun.BaseModel `bun:"table:org_preference"`
|
|
PreferenceID string `bun:"preference_id,pk,type:text,notnull"`
|
|
PreferenceValue string `bun:"preference_value,type:text,notnull"`
|
|
OrgID string `bun:"org_id,pk,type:text,notnull"`
|
|
}{}).
|
|
ForeignKey(`("org_id") REFERENCES "organizations" ("id") ON DELETE CASCADE ON UPDATE CASCADE`).
|
|
IfNotExists().
|
|
Exec(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (migration *addPreferences) Down(ctx context.Context, db *bun.DB) error {
|
|
return nil
|
|
}
|