Name |
Value |
Not For Replication |
|
ProductModelIllustration column |
Illustration column |
Type |
IllustrationID |
IllustrationID |
int |
Name |
Value |
MS_Description |
Foreign key constraint referencing Illustration.IllustrationID. |
/ -->
ALTER TABLE [Production].[ProductModelIllustration]
WITH CHECK
ADD CONSTRAINT [FK_ProductModelIllustration_Illustration_IllustrationID]
FOREIGN KEY ([IllustrationID]) REFERENCES [Production].[Illustration] ([IllustrationID])
ALTER TABLE [Production].[ProductModelIllustration]
CHECK CONSTRAINT [FK_ProductModelIllustration_Illustration_IllustrationID]
GO
EXEC sp_addextendedproperty N'MS_Description', N'Foreign key constraint referencing Illustration.IllustrationID.', 'SCHEMA', N'Production', 'TABLE', N'ProductModelIllustration', 'CONSTRAINT', N'FK_ProductModelIllustration_Illustration_IllustrationID'
GO
|