aboutsummaryrefslogtreecommitdiff
path: root/bulk/mssql/id/person.sql
diff options
context:
space:
mode:
Diffstat (limited to 'bulk/mssql/id/person.sql')
-rw-r--r--bulk/mssql/id/person.sql12
1 files changed, 0 insertions, 12 deletions
diff --git a/bulk/mssql/id/person.sql b/bulk/mssql/id/person.sql
deleted file mode 100644
index c0d7cae..0000000
--- a/bulk/mssql/id/person.sql
+++ /dev/null
@@ -1,12 +0,0 @@
-/* This file was generated by ODB, object-relational mapping (ORM)
- * compiler for C++.
- */
-IF OBJECT_ID('person', 'U') IS NOT NULL
- DROP TABLE [person];
-GO
-
-CREATE TABLE [person] (
- [id] BIGINT NOT NULL PRIMARY KEY /*%%IDENTITY*/,
- [num] INT NOT NULL UNIQUE,
- [str] VARCHAR(max) NOT NULL);
-GO