Merge branch 'main' into dev/post-reports
All checks were successful
Gitea Build Check / Build (pull_request) Successful in 3m2s
All checks were successful
Gitea Build Check / Build (pull_request) Successful in 3m2s
This commit is contained in:
commit
8bb2328307
@ -70,9 +70,11 @@ func Connect(ctx context.Context, config models.DatabaseConfig) error {
|
||||
return utils.HandleError(ctx, span, localLogger, err)
|
||||
}
|
||||
|
||||
err = migrateDatabase(ctx, sqlDB, config)
|
||||
if err != nil {
|
||||
return utils.HandleError(ctx, span, localLogger, err)
|
||||
if config.Migrate {
|
||||
err = migrateDatabase(ctx, sqlDB, config)
|
||||
if err != nil {
|
||||
return utils.HandleError(ctx, span, localLogger, err)
|
||||
}
|
||||
}
|
||||
|
||||
client = sqlDB
|
||||
|
@ -9,4 +9,5 @@ type DatabaseConfig struct {
|
||||
SSL bool `env:"DB_SSL,required" envDefault:"true"`
|
||||
Timezone string `env:"DB_TIMEZONE,required" envDefault:"Europe/Berlin"`
|
||||
Debug bool `env:"DB_DEBUG" envDefault:"false"`
|
||||
Migrate bool
|
||||
}
|
||||
|
@ -121,6 +121,7 @@ func DatabaseModesFromConnectionString(ctx context.Context, pgContainer *postgre
|
||||
SSL: false,
|
||||
Timezone: "Europe/Berlin",
|
||||
Debug: true,
|
||||
Migrate: true,
|
||||
}
|
||||
|
||||
return databaseConfig, nil
|
||||
|
Loading…
Reference in New Issue
Block a user