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