2025-06-25 11:25:55 +02:00

7 lines
224 B
Transact-SQL

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