ur_ingest_session_plm_account
Column |
Type |
PK |
Required |
Default |
ur_ingest_session_plm_account_id |
VARCHAR |
Yes |
Yes |
|
ingest_session_id |
VARCHAR |
No |
Yes |
|
provider |
TEXT |
No |
Yes |
|
org_name |
TEXT |
No |
Yes |
|
elaboration |
TEXT |
No |
No |
|
created_at |
TIMESTAMPTZ |
No |
No |
CURRENT_TIMESTAMP |
created_by |
TEXT |
No |
No |
'UNKNOWN' |
updated_at |
TIMESTAMPTZ |
No |
No |
|
updated_by |
TEXT |
No |
No |
|
deleted_at |
TIMESTAMPTZ |
No |
No |
|
deleted_by |
TEXT |
No |
No |
|
activity_log |
TEXT |
No |
No |
|
Foreign Keys
Column Name |
Foreign Key |
ingest_session_id |
ingest_session_id references ur_ingest_session.ur_ingest_session_id |
Indexes
Column Name |
Index Name |
provider |
idx_ur_ingest_session_plm_account__provider__org_name |
org_name |
idx_ur_ingest_session_plm_account__provider__org_name |
provider |
sqlite_autoindex_ur_ingest_session_plm_account_2 |
org_name |
sqlite_autoindex_ur_ingest_session_plm_account_2 |
ur_ingest_session_plm_account_id |
sqlite_autoindex_ur_ingest_session_plm_account_1 |
SQL DDL
CREATE TABLE "ur_ingest_session_plm_account" (
"ur_ingest_session_plm_account_id" VARCHAR PRIMARY KEY NOT NULL,
"ingest_session_id" VARCHAR NOT NULL,
"provider" TEXT NOT NULL,
"org_name" TEXT NOT NULL,
"elaboration" TEXT CHECK(json_valid(elaboration) OR elaboration IS NULL),
"created_at" TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,
"created_by" TEXT DEFAULT 'UNKNOWN',
"updated_at" TIMESTAMPTZ,
"updated_by" TEXT,
"deleted_at" TIMESTAMPTZ,
"deleted_by" TEXT,
"activity_log" TEXT,
FOREIGN KEY("ingest_session_id") REFERENCES "ur_ingest_session"("ur_ingest_session_id"),
UNIQUE("provider", "org_name")
)