Update management/server/migration/migration.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Pascal Fischer
2025-07-03 12:56:39 +02:00
committed by GitHub
parent 5fab2d019a
commit 005937ae77

View File

@@ -469,6 +469,6 @@ func MigrateJsonToTable[T any](ctx context.Context, db *gorm.DB, columnName stri
return err
}
log.WithContext(ctx).Infof("Migration of JSON field %s from table %s into seperte table completed", columnName, tableName)
log.WithContext(ctx).Infof("Migration of JSON field %s from table %s into separate table completed", columnName, tableName)
return nil
}