Skip to content

Commit 02f1e7a

Browse files
committed
Added table for DataType checks.
1 parent c625f2c commit 02f1e7a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Test Database/Tables/dbo.DataType.sql

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
CREATE TABLE [dbo].[DataType]
2+
(
3+
[DataTypeId] [int] NOT NULL,
4+
[UnitPriceTotal] [money] NULL,
5+
[UnitPrice] [smallmoney] NULL,
6+
[ProductDescription] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
7+
[ProductDescriptionInternational] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
8+
[LineAmount] [float] NULL,
9+
[LineTotal] [real] NULL,
10+
[ProfileInformation] [sql_variant] NULL
11+
) ON [PRIMARY]
12+
GO
13+
ALTER TABLE [dbo].[DataType] ADD CONSTRAINT [PK_DataType] PRIMARY KEY CLUSTERED ([DataTypeId]) ON [PRIMARY]
14+
GO

0 commit comments

Comments
 (0)