mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
fix the format (#4899)
This commit is contained in:
committed by
Kevin Cunnane
parent
5dc6a39652
commit
9e9164c4ee
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user