aboutsummaryrefslogtreecommitdiff
path: root/bulk/mssql/auto/person.sql
blob: 784d4494920bf490fd55cd5da7940c18337807e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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