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

This table stores the Chromium software defaults.

ColumnName DataType Key Not Null Default Value Comment
ChromiumDefaultsID INTEGER IDENTITY (1,1) PK NN   Unique ID
HomeDirectory NVARCHAR(255)       holds the home directory
ItemID INTEGER   NN   OU ID
ItemType INTEGER   NN   always 1 (TYPE_OU) at this time
IndexName IndexType Columns
PRIMARY PRIMARY ChromiumDefaultsID

How to create

CREATE TABLE ChromiumDefaults( ChromiumDefaultsID INTEGER IDENTITY (1,1) NOT NULL; HomeDirectory NVARCHAR(255); ItemID INTEGER NOT NULL; ItemType INTEGER NOT NULL; CONSTRAINT PK_ChromiumDefaults;PRIMARY KEY (ChromiumDefaultsID));
Table: ChromiumDefaults