9 lines
382 B
Transact-SQL
9 lines
382 B
Transact-SQL
CREATE TABLE [dbo].[ReportSezionePers_20180928_OLD] (
|
|
[DtCreazione] datetime NULL,
|
|
[DtCancellazione] datetime NULL DEFAULT ('1900-01-01'),
|
|
[IdReport] int NOT NULL,
|
|
[IdSezione] int NOT NULL,
|
|
[Utente] varchar(13) NULL
|
|
)
|
|
ALTER TABLE [dbo].[ReportSezionePers_20180928_OLD] ADD CONSTRAINT [PK_ReportSezionePers_20180328_PreMifid] PRIMARY KEY CLUSTERED ([IdReport],[IdSezione])
|
|
GO |