Activity overview
Latest activity by jjmartin1248
I am also missing at least one table in SQL Data Compare.
here are the specs (as found by SQL Compare)
-- Columns
CREATE TABLE [dbo].[WhatIf]
(
[WhatIfId] [int] NOT NULL IDENTITY(1, 1),
[ParentReminderTemplateId] [int] NULL,
[QuestionText] [varchar] (2000) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[TargetReminderTemplateId] [int] NOT NULL
)
GO
-- Foreign keys
ALTER TABLE [dbo].[WhatIf] ADD CONSTRAINT [FK_WhatIf_ReminderTemplate] FOREIGN KEY ([ParentReminderTemplateId]) REFERENCES [dbo].[ReminderTemplate] ([ReminderTemplateId])
GO
ALTER TABLE [dbo].[WhatIf] ADD CONSTRAINT [FK_WhatIf_ReminderTemplate1] FOREIGN KEY ([TargetReminderTemplateId]) REFERENCES [dbo].[ReminderTemplate] ([ReminderTemplateId])
GO / comments
I am also missing at least one table in SQL Data Compare.
here are the specs (as found by SQL Compare)
-- Columns
CREATE TABLE [dbo].[WhatIf]
(
[WhatIfId] [int] NOT NULL IDENTITY(1, 1),
[ParentRemi...