PDC_REPORT_CreazioneDB/sql/Collaudo/tabelle/dbo_R6CapitoloR6Paragrafo_20180328_PreMifid.sql
2025-06-10 15:29:00 +02:00

10 lines
381 B
Transact-SQL

CREATE TABLE [dbo].[R6CapitoloR6Paragrafo_20180328_PreMifid] (
[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_20180328_PreMifid] ADD CONSTRAINT [PK_R6CapitoloR6Paragrafo_20180328_PreMifid] PRIMARY KEY CLUSTERED ([id])
GO