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

8 lines
261 B
Transact-SQL

CREATE TABLE [dbo].[R6ReportR6Capitolo] (
[id] int NOT NULL,
[idFkReport] int NOT NULL,
[idFkCapitolo] int NOT NULL,
[ordineCapitolo] int NULL
)
ALTER TABLE [dbo].[R6ReportR6Capitolo] ADD CONSTRAINT [PK_R6ReportR6Capitolo] PRIMARY KEY CLUSTERED ([id])
GO