mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00

The format is: # var-name: value Previously snippets used a mixture of the following formatting: #var-name: value #var-name : value # var-name: value # var-name : value
11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
|
|
# name: create table ...
|
|
# key: create
|
|
# --
|
|
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])
|
|
)
|
|
GO |