ticket_updates

0 rows


Columns

Column Type Size Nulls Auto Default Children Parents Comments
id INT 10 √ null

primary key

ticket_id INT 10 null
tickets.id ticket_updates_ibfk_1 C

id of catalog ticket the update relates to

user_id INT 10 0
borrowers.borrowernumber ticket_updates_ibfk_2 C

id of the user who logged the update

assignee_id INT 10 √ NULL
borrowers.borrowernumber ticket_updates_ibfk_3 C

id of the user who this ticket was assigned to at this update

public TINYINT 3 0

boolean flag to denote whether this update is public

date TIMESTAMP 19 current_timestamp()

date and time this update was logged

message TEXT 65535 null

update message content

status VARCHAR 80 √ NULL

status of ticket at this update

Indexes

Constraint Name Type Sort Column(s)
ticket_updates_s_pk Primary key Asc id
PRIMARY Must be unique Asc id
ticket_updates_ibfk_1 Performance Asc ticket_id
ticket_updates_ibfk_2 Performance Asc user_id
ticket_updates_ibfk_3 Performance Asc assignee_id

Relationships