Lines 4236-4242
CREATE TABLE IF NOT EXISTS club_holds_to_patron_holds (
Link Here
|
4236 |
error_code ENUM ( 'damaged', 'ageRestricted', 'itemAlreadyOnHold', |
4236 |
error_code ENUM ( 'damaged', 'ageRestricted', 'itemAlreadyOnHold', |
4237 |
'tooManyHoldsForThisRecord', 'tooManyReservesToday', |
4237 |
'tooManyHoldsForThisRecord', 'tooManyReservesToday', |
4238 |
'tooManyReserves', 'notReservable', 'cannotReserveFromOtherBranches', |
4238 |
'tooManyReserves', 'notReservable', 'cannotReserveFromOtherBranches', |
4239 |
'libraryNotFound', 'libraryNotPickupLocation', 'cannotBeTransferred' |
4239 |
'libraryNotFound', 'libraryNotPickupLocation', 'cannotBeTransferred', |
|
|
4240 |
'noReservesAllowed' |
4240 |
) NULL DEFAULT NULL, |
4241 |
) NULL DEFAULT NULL, |
4241 |
error_message varchar(100) NULL DEFAULT NULL, |
4242 |
error_message varchar(100) NULL DEFAULT NULL, |
4242 |
PRIMARY KEY (id), |
4243 |
PRIMARY KEY (id), |
4243 |
- |
|
|