2025-06-25 11:25:55 +02:00

9 lines
285 B
Transact-SQL

CREATE TABLE [dbo].[R6ReportR6Capitolo] (
#x0D;
[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