Tables [dbo].[CoDBTypes]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created11:24:18 AM Wednesday, May 9, 2018
Last Modified11:24:47 AM Wednesday, May 9, 2018
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_CoDBTypes: DBTypeIDDBTypeIDint4
False
1 - 1
DBTypevarchar(30)30
False
KeyNameKey ColumnsUnique
Cluster Primary Key PK_CoDBTypes: DBTypeIDPK_CoDBTypesDBTypeID
True
CREATE TABLE [dbo].[CoDBTypes]
(
[DBTypeID] [int] NOT NULL IDENTITY(1, 1),
[DBType] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CoDBTypes] ADD CONSTRAINT [PK_CoDBTypes] PRIMARY KEY CLUSTERED  ([DBTypeID]) ON [PRIMARY]
GO