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

6 lines
212 B
Transact-SQL

CREATE TABLE [dbo].[ReportFMS] (
[Identificativo] int NOT NULL IDENTITY(1,1),
[FileReport] image NULL
)
ALTER TABLE [dbo].[ReportFMS] ADD CONSTRAINT [PK_ReportFMS] PRIMARY KEY CLUSTERED ([Identificativo])
GO