fix(backups): change backup file extension from .dump.gz to .sql.gz for consistency

This commit is contained in:
Mauricio Siu
2025-08-02 18:40:40 -06:00
parent 201f07c084
commit 1300a6242c
4 changed files with 7 additions and 8 deletions

View File

@@ -17,7 +17,7 @@ export const runComposeBackup = async (
const project = await findProjectById(projectId);
const { prefix, databaseType } = backup;
const destination = backup.destination;
const backupFileName = `${new Date().toISOString()}.dump.gz`;
const backupFileName = `${new Date().toISOString()}.sql.gz`;
const bucketDestination = `${normalizeS3Path(prefix)}${backupFileName}`;
const deployment = await createDeploymentBackup({
backupId: backup.backupId,