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

7 lines
227 B
Transact-SQL

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