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

10 lines
314 B
Transact-SQL

CREATE TABLE [dbo].[ReportLog] (
#x0D;
[Identificativo] int NOT NULL,
[Utente] varchar(13) NULL,
[timestamp] char(18) NULL,
[Azione] varchar(32) NULL,
[IdLog] int NOT NULL IDENTITY(1,1)
)
ALTER TABLE [dbo].[ReportLog] ADD CONSTRAINT [XPKReportLog] PRIMARY KEY CLUSTERED ([IdLog])
GO