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: UpdateNotification

Handles the image update notification feature

ColumnName DataType Key Not Null Default Comment
UpdateNotificationID INTEGER IDENTITY (1,1) PK NN   Unique ID of notification
[Type] INTEGER   NN 0 Defines if a notification is an update or delivery notification
Options INTEGER   NN   Bit field for update notification options - SCD_OPTION_FORMAT_BEFORE_UPDATE 0x40; SCD_OPTION_USERINFO; 0x04 SCD_OPTION_CANREFUSE; 0x08
ConfirmTimeout INTEGER   NN 0  
Modified DATETIME   NN GETUTCDATE() Internal use
ReservedString1 NVARCHAR(255)        
ReservedInt1 NVARCHAR(255)        
ReservedInt2 NVARCHAR(255)        
IndexName IndexType Columns
PRIMARY PRIMARY UpdateNotificationID

How to create

CREATE TABLE ServerOptions( UpdateNotificationID INTEGER IDENTITY (1,1)NOT NULL DEFAULT(0), [Type] INTEGER NOT NULL DEFAULT(0), Options INTEGER NOT NULL,` `ConfirmTimeout INTEGER NOT NULL DEFAULT(0), Modified DATETIME NOT NULL DEFAULT(GETUTCDATE()), ReservedString1 NVARCHAR(255), ReservedInt1 INTEGER, ReservedInt2 INTEGER, CONSTRAINT PK_UpdateNotification PRIMARY KEY (UpdateNotificationID));
Table: UpdateNotification