PDC_REPORT_CreazioneDB/sql/Collaudo/tabelle/dbo_ReportTemplate.sql
2025-06-10 15:29:00 +02:00

9 lines
300 B
Transact-SQL

CREATE TABLE [dbo].[ReportTemplate] (
[TemplateID] int NOT NULL,
[Rete] varchar(1) NULL,
[ContractType] int NULL,
[IsTrimestrale] int NULL,
[PDFConfigurationID] int NULL
)
ALTER TABLE [dbo].[ReportTemplate] ADD CONSTRAINT [PK__ReportTemplate__559732C4] PRIMARY KEY CLUSTERED ([TemplateID])
GO