Unicon documentation migration is in progress. You might find some broken links or experience minor issues in the documentation. We are working on resolving these issues.

X

Scout Database Model (CR)

Table: DistributionImageFile

This table holds all image file names which are reported from the clients. If one of the image names are marked as outdated, the Scout Dashboard is not able to assign this image file any longer.

ColumnName DataType Key Not Null Default Value Comment
DistributionImageFileID INTEGER PK NN   Unique ID
ImageFile NVARCHAR(255)   NN   Name of image file
Outdated BIT   NN   Outdated status
Modified DATETIME   NN   Last modification of this entry
IndexName IndexType Columns
PRIMARY PRIMARY DistributionImageFileID

How to create

CREATE TABLE DistributionImageFile( DistributionImageFileID INTEGER NOT NULL, ImageFile NVARCHAR(255), Outdated BIT NOT NULL, Modified DATETIME NOT NULL, CONSTRAINT PK_DistributionImageFile, PRIMARY KEY (DistributionImageFile));
Table: DistributionImageFile