summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/sql-mode/create
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/mysnippets/text-mode/sql-mode/create')
-rw-r--r--.emacs.d/mysnippets/text-mode/sql-mode/create10
1 files changed, 0 insertions, 10 deletions
diff --git a/.emacs.d/mysnippets/text-mode/sql-mode/create b/.emacs.d/mysnippets/text-mode/sql-mode/create
deleted file mode 100644
index a34624d..0000000
--- a/.emacs.d/mysnippets/text-mode/sql-mode/create
+++ /dev/null
@@ -1,10 +0,0 @@
1#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
2#name : create table ...
3# --
4CREATE TABLE [${1:dbo}].[${2:TableName}]
5(
6 ${3:Id} ${4:INT IDENTITY(1,1)} ${5:NOT NULL}
7$0
8 CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3])
9)
10GO