Lines 4062-4068
CREATE TABLE IF NOT EXISTS club_holds_to_patron_holds (
Link Here
|
4062 |
error_code ENUM ( 'damaged', 'ageRestricted', 'itemAlreadyOnHold', |
4062 |
error_code ENUM ( 'damaged', 'ageRestricted', 'itemAlreadyOnHold', |
4063 |
'tooManyHoldsForThisRecord', 'tooManyReservesToday', |
4063 |
'tooManyHoldsForThisRecord', 'tooManyReservesToday', |
4064 |
'tooManyReserves', 'notReservable', 'cannotReserveFromOtherBranches', |
4064 |
'tooManyReserves', 'notReservable', 'cannotReserveFromOtherBranches', |
4065 |
'libraryNotFound', 'libraryNotPickupLocation', 'cannotBeTransferred' |
4065 |
'libraryNotFound', 'libraryNotPickupLocation', 'cannotBeTransferred', |
|
|
4066 |
'noReservesAllowed' |
4066 |
) NULL DEFAULT NULL, |
4067 |
) NULL DEFAULT NULL, |
4067 |
error_message varchar(100) NULL DEFAULT NULL, |
4068 |
error_message varchar(100) NULL DEFAULT NULL, |
4068 |
PRIMARY KEY (id), |
4069 |
PRIMARY KEY (id), |
4069 |
- |
|
|