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