|
Lines 4166-4172
DROP TABLE IF EXISTS `illrequestattributes`;
Link Here
|
| 4166 |
CREATE TABLE illrequestattributes ( |
4166 |
CREATE TABLE illrequestattributes ( |
| 4167 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
4167 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
| 4168 |
type varchar(200) NOT NULL, -- API ILL property name |
4168 |
type varchar(200) NOT NULL, -- API ILL property name |
| 4169 |
value MEDIUMTEXT NOT NULL, -- API ILL property value |
4169 |
value MEDIUMTEXT NOT NULL, -- API ILL property value |
|
|
4170 |
readonly tinyint(1) NOT NULL DEFAULT 1, -- Is this attribute read only |
| 4170 |
PRIMARY KEY (`illrequest_id`, `type` (191)), |
4171 |
PRIMARY KEY (`illrequest_id`, `type` (191)), |
| 4171 |
CONSTRAINT `illrequestattributes_ifk` |
4172 |
CONSTRAINT `illrequestattributes_ifk` |
| 4172 |
FOREIGN KEY (illrequest_id) |
4173 |
FOREIGN KEY (illrequest_id) |
| 4173 |
- |
|
|