7 lines
164 B
Transact-SQL
7 lines
164 B
Transact-SQL
CREATE TABLE [dbo].[appoDaArchiviareDaTest] (
|
|
[idInMetadati] int NOT NULL,
|
|
[idReport] int NULL,
|
|
[repository] tinyint NOT NULL,
|
|
[flagArchiviato] int NULL
|
|
)
|
|
GO |