Files
GMW/GMW_DB/RilPro/Tables/StampoEsponente.sql
T
Samuele Locatelli a6d7ea0b2f Import iniziale DB, GMW
versione TK 2.4
inclusione schema voc x tabella lingue e vocabolario
2014-02-20 09:54:57 +01:00

10 lines
363 B
SQL

CREATE TABLE [RilPro].[StampoEsponente] (
[CodStampo] NVARCHAR (8) NOT NULL,
[Esponente] NVARCHAR (6) NOT NULL,
[DataInserim] DATETIME NOT NULL,
[DataValidita] DATETIME NULL,
[EspAttivo] NVARCHAR (1) NULL,
CONSTRAINT [PK_StampoEsponente] PRIMARY KEY CLUSTERED ([CodStampo] ASC, [Esponente] ASC, [DataInserim] ASC)
);