diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-11-20 15:46:21 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-11-20 15:46:21 +0200 |
commit | f53b4dc54ed37169544ce7c080e194aab3d853f3 (patch) | |
tree | 4a848796d92aef7b5f231f1b28659fbba803b6ec /bulk/mssql/auto/person.sql | |
parent | a9f085737d0c1c32edfc67f10af6ad9cd4572400 (diff) |
Add testbulk
Diffstat (limited to 'bulk/mssql/auto/person.sql')
-rw-r--r-- | bulk/mssql/auto/person.sql | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/bulk/mssql/auto/person.sql b/bulk/mssql/auto/person.sql deleted file mode 100644 index 784d449..0000000 --- a/bulk/mssql/auto/person.sql +++ /dev/null @@ -1,15 +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 |