Contains information about all executed deployments.

Column

Data Type

Constraint

log_id

VARCHAR(40)

not null

(primary key)

The unique ID for a deployment log.

dep_id

VARCHAR(40)

not null

The unique ID for a deployment.

target_name

VARCHAR(255)

not null

The name of the target associated with the deployment.

log_time

TIMESTAMP

not null

The time the log was created.

begin_time

TIMESTAMP

not null

The time the deployment began execution.

end_time

TIMESTAMP

not null

The time the deployment finished execution.

actor_id

VARCHAR(40)

null

The ID for the user who performed the operation.

type

INTEGER

not null

Indicates whether the deployment is full (1) or incremental (2).

dep_mode

INTEGER

not null

The mode used for the deployment. Options include switch and online.

status

INTEGER

not null

The status of the deployment. Options include Error, Cancel, and Success.

deli_proj_ids

VARCHAR(255)

null

The IDs for deployed projects.

delimiter

VARCHAR(5)

not null

The delimiter used to separate project IDs in the deli_proj_ids column.

 
loading table of contents...