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

11 lines
363 B
Transact-SQL

CREATE TABLE [dbo].[R6CapitoloR6Paragrafo] (
#x0D;
[id] int NOT NULL,
[idFkCapitolo] int NOT NULL,
[idFkParagrafo] int NOT NULL,
[idFkReport] int NOT NULL,
[ordineParagrafo] int NULL,
[indicizzato] bit NULL
)
ALTER TABLE [dbo].[R6CapitoloR6Paragrafo] ADD CONSTRAINT [PK_R6CapitoloR6Paragrafo] PRIMARY KEY CLUSTERED ([id])
GO