Lines 4151-4157
DROP TABLE IF EXISTS `illrequestattributes`;
Link Here
|
4151 |
CREATE TABLE illrequestattributes ( |
4151 |
CREATE TABLE illrequestattributes ( |
4152 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
4152 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
4153 |
type varchar(200) NOT NULL, -- API ILL property name |
4153 |
type varchar(200) NOT NULL, -- API ILL property name |
4154 |
value MEDIUMTEXT NOT NULL, -- API ILL property value |
4154 |
value MEDIUMTEXT NOT NULL, -- API ILL property value |
|
|
4155 |
readonly tinyint(1) NOT NULL DEFAULT 1, -- Is this attribute read only |
4155 |
PRIMARY KEY (`illrequest_id`, `type` (191)), |
4156 |
PRIMARY KEY (`illrequest_id`, `type` (191)), |
4156 |
CONSTRAINT `illrequestattributes_ifk` |
4157 |
CONSTRAINT `illrequestattributes_ifk` |
4157 |
FOREIGN KEY (illrequest_id) |
4158 |
FOREIGN KEY (illrequest_id) |
4158 |
- |
|
|