Table: ViewLicenseTermtime

This is a view data table which is used by Scout Dashboard. The table is filled automatically. It is highly recommended not to change any entry.

ColumnName DataType Key Not Null Default Value Comment
ViewLicenseTermtimeID INTEGER IDENTITY (1,1) PK NN    
SubscriptionMode INTEGER   NN    
ValidUntil DATETIME   NN    
Modified DATETIME   NN    
IndexName IndexType Columns
PRIMARY PRIMARY ViewLicenseTermtimeID

 

How to create

CREATE TABLE ViewLicenseTermtime(
ViewLicenseTermtimeID INTEGER IDENTITY (1,1) NOT NULL,
SubsriptionMode INTEGER NOT NULL,
ValidUntil DATETIME NOT NULL,
Modified DATETIME NOT NULL,
CONSTRAINT PK_ViewLicenseTermtime
PRIMARY KEY (ViewLicenseTermtimeID));