Bug 4461: Extend problem_reports.problempage to TEXT
255 chars is not enough if want want to store any kind of URL, for instance an authorities search can be much longer Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
bbb72bbd8d
commit
0885344e80
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ if( CheckVersion( $DBversion ) ) {
|
||||||
borrowernumber int(11) NOT NULL default 0, -- the user who created the problem report
|
borrowernumber int(11) NOT NULL default 0, -- the user who created the problem report
|
||||||
branchcode varchar(10) NOT NULL default '', -- borrower's branch
|
branchcode varchar(10) NOT NULL default '', -- borrower's branch
|
||||||
username varchar(75) default NULL, -- OPAC username
|
username varchar(75) default NULL, -- OPAC username
|
||||||
problempage varchar(255) default NULL, -- page the user triggered the problem report form from
|
problempage TEXT default NULL, -- page the user triggered the problem report form from
|
||||||
recipient enum('admin','library') NOT NULL default 'library', -- the 'to-address' of the problem report
|
recipient enum('admin','library') NOT NULL default 'library', -- the 'to-address' of the problem report
|
||||||
created_on timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- timestamp of report submission
|
created_on timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- timestamp of report submission
|
||||||
status varchar(6) NOT NULL default 'New', -- status of the report. New, Viewed, Closed
|
status varchar(6) NOT NULL default 'New', -- status of the report. New, Viewed, Closed
|
||||||
|
|
|
@ -4448,7 +4448,7 @@ CREATE TABLE `problem_reports` (
|
||||||
`borrowernumber` int(11) NOT NULL default 0, -- the user who created the problem report
|
`borrowernumber` int(11) NOT NULL default 0, -- the user who created the problem report
|
||||||
`branchcode` varchar(10) NOT NULL default '', -- borrower's branch
|
`branchcode` varchar(10) NOT NULL default '', -- borrower's branch
|
||||||
`username` varchar(75) default NULL, -- OPAC username
|
`username` varchar(75) default NULL, -- OPAC username
|
||||||
`problempage` varchar(255) default NULL, -- page the user triggered the problem report form from
|
`problempage` TEXT default NULL, -- page the user triggered the problem report form from
|
||||||
`recipient` enum('admin','library') NOT NULL default 'library', -- the 'to-address' of the problem report
|
`recipient` enum('admin','library') NOT NULL default 'library', -- the 'to-address' of the problem report
|
||||||
`created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- timestamp of report submission
|
`created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- timestamp of report submission
|
||||||
`status` varchar(6) NOT NULL default 'New', -- status of the report. New, Viewed, Closed
|
`status` varchar(6) NOT NULL default 'New', -- status of the report. New, Viewed, Closed
|
||||||
|
|
Loading…
Reference in a new issue