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

8 lines
245 B
Transact-SQL

CREATE TABLE [dbo].[Repositories] (
#x0D;
[id] tinyint NOT NULL,
[descrizione] varchar(70) NOT NULL,
[tabella] varchar(50) NULL
)
ALTER TABLE [dbo].[Repositories] ADD CONSTRAINT [PK_Repositories] PRIMARY KEY CLUSTERED ([id])
GO