ur_ingest_session_fs_path

Column Type PK Required Default
ur_ingest_session_fs_path_id VARCHAR Yes Yes
ingest_session_id VARCHAR No Yes
root_path 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
ingest_session_id idx_ur_ingest_session_fs_path__ingest_session_id__root_path
root_path idx_ur_ingest_session_fs_path__ingest_session_id__root_path
ingest_session_id sqlite_autoindex_ur_ingest_session_fs_path_2
root_path sqlite_autoindex_ur_ingest_session_fs_path_2
created_at sqlite_autoindex_ur_ingest_session_fs_path_2
ur_ingest_session_fs_path_id sqlite_autoindex_ur_ingest_session_fs_path_1

SQL DDL

CREATE TABLE "ur_ingest_session_fs_path" (
    "ur_ingest_session_fs_path_id" VARCHAR PRIMARY KEY NOT NULL,
    "ingest_session_id" VARCHAR NOT NULL,
    "root_path" 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("ingest_session_id", "root_path", "created_at")
)