11 lines
423 B
Transact-SQL
11 lines
423 B
Transact-SQL
CREATE TABLE [dbo].[ReportSezionePers] (
|
|
[DtCreazione] datetime NULL,
|
|
[DtCancellazione] datetime NULL DEFAULT ('1900-01-01'),
|
|
[IdReport] int NOT NULL,
|
|
[IdSezione] int NOT NULL,
|
|
[Utente] varchar(13) NULL,
|
|
[RifPianificazione_Monitoraggio] bit NULL DEFAULT ((0)),
|
|
[Ordinamento] int NULL
|
|
)
|
|
ALTER TABLE [dbo].[ReportSezionePers] ADD CONSTRAINT [PK_ReportSezionePers_1] PRIMARY KEY CLUSTERED ([IdReport],[IdSezione])
|
|
GO |