diff --git a/minisqlquery-master/src/MiniSqlQuery/Templates/Create Table.sql.mt b/minisqlquery-master/src/MiniSqlQuery/Templates/Create Table.sql.mt
new file mode 100644
index 0000000..dcf75f1
--- /dev/null
+++ b/minisqlquery-master/src/MiniSqlQuery/Templates/Create Table.sql.mt
@@ -0,0 +1,9 @@
+#@get TableName
+IF OBJECT_ID('${TableName}', 'U') IS NOT NULL
+ DROP TABLE [${TableName}]
+
+CREATE TABLE [${TableName}]
+(
+ ${TableName}Id INT IDENTITY NOT NULL,
+ CONSTRAINT PK_${TableName}Id PRIMARY KEY (${TableName}Id)
+)