Closes #372: removed trailing spaces in snippets

This commit is contained in:
Joao Tavora
2013-05-05 21:15:27 -04:00
parent 9df05fc413
commit 8bf75fe425
33 changed files with 40 additions and 40 deletions

View File

@@ -2,10 +2,10 @@
# name: create table ...
# key: create
# --
CREATE TABLE [${1:dbo}].[${2:TableName}]
CREATE TABLE [${1:dbo}].[${2:TableName}]
(
${3:Id} ${4:INT IDENTITY(1,1)} ${5:NOT NULL}
$0
CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3])
CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3])
)
GO