ur_ingest_session_plm_acct_project
Description
Immutable ingest session folder system represents an organisation issues to be ingested. Each session includes an organisation, then name is the folder that was scanned.
Table Definition
Columns
Name | Type | Default | Nullable | Children | Parents | Comment |
---|---|---|---|---|---|---|
ur_ingest_session_plm_acct_project_id | VARCHAR | false | uniform_resource ur_ingest_session_plm_acct_project_issue ur_ingest_session_plm_acct_label ur_ingest_session_plm_milestone ur_ingest_session_plm_acct_relationship | {“isSqlDomainZodDescrMeta”:true,“isVarChar”:true} | ||
ingest_session_id | VARCHAR | false | ur_ingest_session | {“isSqlDomainZodDescrMeta”:true,“isVarChar”:true} | ||
ingest_account_id | VARCHAR | false | ur_ingest_session_plm_account | {“isSqlDomainZodDescrMeta”:true,“isVarChar”:true} | ||
parent_project_id | TEXT | true | References itself to allow subprojects. | |||
name | TEXT | false | The name of the project | |||
description | TEXT | true | ||||
id | TEXT | true | ||||
key | TEXT | true | ||||
elaboration | TEXT | true | {“isSqlDomainZodDescrMeta”:true,“isJsonText”:true} | |||
created_at | TIMESTAMPTZ | CURRENT_TIMESTAMP | true | |||
created_by | TEXT | ’UNKNOWN’ | true | |||
updated_at | TIMESTAMPTZ | true | ||||
updated_by | TEXT | true | ||||
deleted_at | TIMESTAMPTZ | true | ||||
deleted_by | TEXT | true | ||||
activity_log | TEXT | true | {“isSqlDomainZodDescrMeta”:true,“isJsonSqlDomain”:true} |
Constraints
Name | Type | Definition |
---|---|---|
ur_ingest_session_plm_acct_project_id | PRIMARY KEY | PRIMARY KEY (ur_ingest_session_plm_acct_project_id) |
- (Foreign key ID: 0) | FOREIGN KEY | FOREIGN KEY (ingest_account_id) REFERENCES ur_ingest_session_plm_account (ur_ingest_session_plm_account_id) ON UPDATE NO ACTION ON DELETE NO ACTION MATCH NONE |
- (Foreign key ID: 1) | FOREIGN KEY | FOREIGN KEY (ingest_session_id) REFERENCES ur_ingest_session (ur_ingest_session_id) ON UPDATE NO ACTION ON DELETE NO ACTION MATCH NONE |
sqlite_autoindex_ur_ingest_session_plm_acct_project_2 | UNIQUE | UNIQUE (ingest_session_id, name) |
sqlite_autoindex_ur_ingest_session_plm_acct_project_1 | PRIMARY KEY | PRIMARY KEY (ur_ingest_session_plm_acct_project_id) |
- | CHECK | CHECK(json_valid(elaboration) OR elaboration IS NULL) |
Indexes
Name | Definition |
---|---|
idx_ur_ingest_session_plm_acct_project__ingest_session_id__name | CREATE INDEX “idx_ur_ingest_session_plm_acct_project__ingest_session_id__name” ON “ur_ingest_session_plm_acct_project”(“ingest_session_id”, “name”) |
sqlite_autoindex_ur_ingest_session_plm_acct_project_2 | UNIQUE (ingest_session_id, name) |
sqlite_autoindex_ur_ingest_session_plm_acct_project_1 | PRIMARY KEY (ur_ingest_session_plm_acct_project_id) |