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

Assignment table holding the information about which application is inherited to the OU below.

ColumnName DataType Key Not Null Default Value Comment
OUSAppsID INTEGER IDENTITY (1,1) PK NN    
OUID INTEGER   NN    
AppID INTEGER   NN    
OUOrigin INTEGER   NN    
IndexName IndexType Columns
PRIMARY PRIMARY OUSAppsID

How to create

CREATE TABLE OUSApps( OUSAppsID INTEGER IDENTITY (1,1) NOT NULL, OUID INTEGER NOT NULL, AppID INTEGER NOT NULL, OUOrigin INTEGER NOT NULL, CONSTRAINT PK_OUSApps PRIMARY KEY (OUSAppsID));
Table: OUsApps