Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
---|---|---|---|---|---|---|---|---|
id | INT | 10 | √ | null |
|
|
||
timeEntered | INT | 10 | null |
|
|
|||
timeProcessed | INT | 10 | √ | NULL |
|
|
||
itemBarcode | VARCHAR | 20 | null |
|
|
|||
patronBarcode | VARCHAR | 20 | √ | NULL |
|
|
||
patronId | INT | 10 | √ | NULL |
|
|
||
login | VARCHAR | 50 | √ | NULL |
|
|
||
loginPassword | VARCHAR | 50 | √ | NULL |
|
|
||
initials | VARCHAR | 50 | √ | NULL |
|
|
||
initialsPassword | VARCHAR | 50 | √ | NULL |
|
|
||
type | enum('Check In', 'Check Out') | 9 | √ | NULL |
|
|
||
status | enum('Not Processed', 'Processing Succeeded', 'Processing Failed') | 20 | √ | NULL |
|
|
||
notes | VARCHAR | 512 | √ | NULL |
|
|
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
offline_circulation_s_pk | Primary key | Asc | id |
initials | Performance | Asc | initials |
itemBarcode | Performance | Asc | itemBarcode |
login | Performance | Asc | login |
patronBarcode | Performance | Asc | patronBarcode |
patronId | Performance | Asc | patronId |
PRIMARY | Must be unique | Asc | id |
status | Performance | Asc | status |
timeEntered | Performance | Asc | timeEntered |
type | Performance | Asc | type |