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

9 lines
284 B
Transact-SQL

CREATE TABLE [dbo].[ReportLog] (
[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