Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
283 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
  3. # name: create table ...
  4. # --
  5. CREATE TABLE [${1:dbo}].[${2:TableName}]
  6. (
  7. ${3:Id} ${4:INT IDENTITY(1,1)} ${5:NOT NULL}
  8. $0
  9. CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3])
  10. )
  11. GO