6 lines
212 B
Transact-SQL
6 lines
212 B
Transact-SQL
CREATE TABLE [dbo].[ReportStorico] (
|
|
[identificativo] int NOT NULL,
|
|
[pdfImage] image NOT NULL
|
|
)
|
|
ALTER TABLE [dbo].[ReportStorico] ADD CONSTRAINT [PK_ReportStorico] PRIMARY KEY CLUSTERED ([identificativo])
|
|
GO |