Bug 10443 - Table borrower_files does not exists in kohastructure.sql file
As a consequence, the borrower_files table would not exist in Koha databases that were installed starting at 3.10.0 or later. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
3296037222
commit
2e86612a15
1 changed files with 17 additions and 0 deletions
|
@ -2518,6 +2518,23 @@ CREATE TABLE `message_transports` (
|
|||
CONSTRAINT `message_transports_ibfk_3` FOREIGN KEY (`letter_module`, `letter_code`, `branchcode`) REFERENCES `letter` (`module`, `code`, `branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- Table structure for table `borrower_files`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `borrower_files`;
|
||||
CREATE TABLE IF NOT EXISTS `borrower_files` (
|
||||
`file_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`borrowernumber` int(11) NOT NULL,
|
||||
`file_name` varchar(255) NOT NULL,
|
||||
`file_type` varchar(255) NOT NULL,
|
||||
`file_description` varchar(255) DEFAULT NULL,
|
||||
`file_content` longblob NOT NULL,
|
||||
`date_uploaded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`file_id`),
|
||||
KEY `borrowernumber` (`borrowernumber`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- Table structure for table `borrower_message_preferences`
|
||||
--
|
||||
|
|
Loading…
Reference in a new issue