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

6 lines
212 B
Transact-SQL

CREATE TABLE [dbo].[ReportStorico] (
[identificativo] int NOT NULL,
[pdfImage] image NOT NULL
)
ALTER TABLE [dbo].[ReportStorico] ADD CONSTRAINT [PK_ReportStorico] PRIMARY KEY CLUSTERED ([identificativo])
GO