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

10 lines
349 B
Transact-SQL

CREATE TABLE [dbo].[C6CapitoloParagrafo] (
[id] int NOT NULL IDENTITY(1,1),
[idFkCapitolo] int NOT NULL,
[idFkParagrafo] int NOT NULL,
[idFkReport] int NOT NULL,
[ordineParagrafo] int NULL,
[indicizzato] bit NULL DEFAULT ((1))
)
ALTER TABLE [dbo].[C6CapitoloParagrafo] ADD CONSTRAINT [PK_C6CapitoloParagrafo] PRIMARY KEY CLUSTERED ([id])
GO