9 lines
278 B
Transact-SQL
9 lines
278 B
Transact-SQL
CREATE TABLE [dbo].[Report_Capitolo] (
|
|
[idCapitolo] int NOT NULL,
|
|
[idParagrafo] int NOT NULL,
|
|
[idSezionePDF] int NOT NULL,
|
|
[id] int NOT NULL,
|
|
[idReportPDF] int NULL
|
|
)
|
|
ALTER TABLE [dbo].[Report_Capitolo] ADD CONSTRAINT [PK_Report_Capitolo] PRIMARY KEY CLUSTERED ([id])
|
|
GO |