mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-12-16 18:34:17 +00:00
Closes #372: removed trailing spaces in snippets
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user