9 lines
302 B
Transact-SQL
9 lines
302 B
Transact-SQL
CREATE TABLE [dbo].[ReportFisico] (
|
|
[FileReport] image NULL,
|
|
[Identificativo] int NOT NULL,
|
|
[IndiceNavigatore] smallint NULL,
|
|
[IndiceCopertina] smallint NULL,
|
|
[ReportDopoC6] bit NULL
|
|
)
|
|
ALTER TABLE [dbo].[ReportFisico] ADD CONSTRAINT [XPKReportFisico] PRIMARY KEY CLUSTERED ([Identificativo])
|
|
GO |