Table: ViewDistributedImage
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 |
---|---|---|---|---|---|
ViewDistributedImageID | INTEGER IDENTITY (1,1) | PK | NN | ||
ImageFile | NVARCHAR(255) | NN | |||
Outdated | BIT | NN | |||
InstalledImages | INTEGER | NN | |||
Modified | DATETIME | NN |
IndexName | IndexType | Columns |
---|---|---|
PRIMARY | PRIMARY | ViewDistributedImageID |
How to create
CREATE TABLE ViewDistributedImage(
ViewDistributedImageID INTEGER IDENTITY (1,1) NOT NULL,
ImageFile NVARCHAR(255) NOT NULL,
Outdated BIT NOT NULL,
InstalledImages INTEGER NOT NULL,
Modified DATETIME NOT NULL,
CONSTRAINT PK_ViewDistributedImage
PRIMARY KEY (ViewDistributedImageID));