Tables [dbo].[CoDataTemplatesShCountries]
PropertyValue
Row Count (~)4
Created11:24:44 AM Wednesday, May 9, 2018
Last Modified11:24:47 AM Wednesday, May 9, 2018
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_CoDataTemplatesShCountries: DataTemplatesShCountryIDDataTemplatesShCountryIDint4
False
1 - 1
TemplateIDint4
False
CountryIDint4
False
KeyNameKey ColumnsUnique
Cluster Primary Key PK_CoDataTemplatesShCountries: DataTemplatesShCountryIDPK_CoDataTemplatesShCountriesDataTemplatesShCountryID
True
CREATE TABLE [dbo].[CoDataTemplatesShCountries]
(
[DataTemplatesShCountryID] [int] NOT NULL IDENTITY(1, 1),
[TemplateID] [int] NOT NULL,
[CountryID] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CoDataTemplatesShCountries] ADD CONSTRAINT [PK_CoDataTemplatesShCountries] PRIMARY KEY CLUSTERED  ([DataTemplatesShCountryID]) ON [PRIMARY]
GO