fix the format (#4899)

This commit is contained in:
Takahito Yamatoya
2019-04-09 11:56:44 +09:00
committed by Kevin Cunnane
parent 5dc6a39652
commit 9e9164c4ee

View File

@@ -29,9 +29,9 @@
"-- ALTER DATABASE ${1:DatabaseName} SET SINGLE_USER WITH ROLLBACK IMMEDIATE;", "-- ALTER DATABASE ${1:DatabaseName} SET SINGLE_USER WITH ROLLBACK IMMEDIATE;",
"-- Drop the database if it exists", "-- Drop the database if it exists",
"IF EXISTS (", "IF EXISTS (",
" SELECT [name]", "\tSELECT [name]",
" FROM sys.databases", "\t\tFROM sys.databases",
" WHERE [name] = N'${1:DatabaseName}'", "\t\tWHERE [name] = N'${1:DatabaseName}'",
")", ")",
"DROP DATABASE ${1:DatabaseName}", "DROP DATABASE ${1:DatabaseName}",
"GO" "GO"