Lines 4132-4138
DROP TABLE IF EXISTS `problem_reports`;
Link Here
|
4132 |
CREATE TABLE `problem_reports` ( |
4132 |
CREATE TABLE `problem_reports` ( |
4133 |
`reportid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier assigned by Koha', |
4133 |
`reportid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier assigned by Koha', |
4134 |
`title` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'report subject line', |
4134 |
`title` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'report subject line', |
4135 |
`content` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'report message content', |
4135 |
`content` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'report message content', |
4136 |
`borrowernumber` int(11) NOT NULL DEFAULT 0 COMMENT 'the user who created the problem report', |
4136 |
`borrowernumber` int(11) NOT NULL DEFAULT 0 COMMENT 'the user who created the problem report', |
4137 |
`branchcode` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'borrower''s branch', |
4137 |
`branchcode` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'borrower''s branch', |
4138 |
`username` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'OPAC username', |
4138 |
`username` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'OPAC username', |
4139 |
- |
|
|