|
Lines 4173-4179
DROP TABLE IF EXISTS `illrequestattributes`;
Link Here
|
| 4173 |
CREATE TABLE illrequestattributes ( |
4173 |
CREATE TABLE illrequestattributes ( |
| 4174 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
4174 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
| 4175 |
type varchar(200) NOT NULL, -- API ILL property name |
4175 |
type varchar(200) NOT NULL, -- API ILL property name |
| 4176 |
value MEDIUMTEXT NOT NULL, -- API ILL property value |
4176 |
value MEDIUMTEXT NOT NULL, -- API ILL property value |
|
|
4177 |
readonly tinyint(1) NOT NULL DEFAULT 1, -- Is this attribute read only |
| 4177 |
PRIMARY KEY (`illrequest_id`, `type` (191)), |
4178 |
PRIMARY KEY (`illrequest_id`, `type` (191)), |
| 4178 |
CONSTRAINT `illrequestattributes_ifk` |
4179 |
CONSTRAINT `illrequestattributes_ifk` |
| 4179 |
FOREIGN KEY (illrequest_id) |
4180 |
FOREIGN KEY (illrequest_id) |
| 4180 |
- |
|
|