2025-06-26 18:47:11 +02:00

9 lines
278 B
Transact-SQL

CREATE TABLE [dbo].[Report_Capitolo] (
[idCapitolo] int NOT NULL,
[idParagrafo] int NOT NULL,
[idSezionePDF] int NOT NULL,
[id] int NOT NULL,
[idReportPDF] int NULL
)
ALTER TABLE [dbo].[Report_Capitolo] ADD CONSTRAINT [PK_Report_Capitolo] PRIMARY KEY CLUSTERED ([id])
GO