1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Fix typo in backup-db.sql (#1459)

This commit is contained in:
Vince Grassia
2021-07-14 10:49:10 -04:00
committed by GitHub
parent 9bb29e08a9
commit a003ee39c2

View File

@ -3,7 +3,7 @@ DECLARE @DatabaseName varchar(100)
SET @DatabaseName = 'vault'
-- Database name without spaces for saving the backup files.
DELCARE @DatabaseNameSafe varchar(100)
DECLARE @DatabaseNameSafe varchar(100)
SET @DatabaseNameSafe = 'vault'
DECLARE @BackupFile varchar(100)