View | Details | Raw Unified | Return to bug 15705
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_XXXXX.sql (-2 / +2 lines)
Lines 1-5 Link Here
1
ALTER TABLE issues ADD COLUMN auto_renew_error VARCHAR(16) DEFAULT NULL AFTER auto_renew;
1
ALTER TABLE issues ADD COLUMN auto_renew_error VARCHAR(32) DEFAULT NULL AFTER auto_renew;
2
ALTER TABLE old_issues ADD COLUMN auto_renew_error VARCHAR(16) DEFAULT NULL AFTER auto_renew;
2
ALTER TABLE old_issues ADD COLUMN auto_renew_error VARCHAR(32) DEFAULT NULL AFTER auto_renew;
3
3
4
INSERT INTO letter (module, code, name, title, content, message_transport_type, is_tt) VALUES ('circulation', 'AUTO_RENEWALS', 'notification on auto renewing', 'Auto renewals',
4
INSERT INTO letter (module, code, name, title, content, message_transport_type, is_tt) VALUES ('circulation', 'AUTO_RENEWALS', 'notification on auto renewing', 'Auto renewals',
5
"Dear [% borrower.firstname %] [% borrower.surname %],
5
"Dear [% borrower.firstname %] [% borrower.surname %],
(-)a/installer/data/mysql/kohastructure.sql (-3 / +2 lines)
Lines 1745-1751 CREATE TABLE `issues` ( -- information related to check outs or issues Link Here
1745
  `return` varchar(4) default NULL,
1745
  `return` varchar(4) default NULL,
1746
  `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1746
  `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1747
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1747
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1748
  `auto_renew_error` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, -- automatic renewal error
1748
  `auto_renew_error` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, -- automatic renewal error
1749
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1749
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1750
  `issuedate` datetime default NULL, -- date the item was checked out or issued
1750
  `issuedate` datetime default NULL, -- date the item was checked out or issued
1751
  `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1751
  `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
Lines 1775-1781 CREATE TABLE `old_issues` ( -- lists items that were checked out and have been r Link Here
1775
  `return` varchar(4) default NULL,
1775
  `return` varchar(4) default NULL,
1776
  `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1776
  `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1777
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1777
  `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1778
  `auto_renew_error` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, -- automatic renewal error
1778
  `auto_renew_error` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, -- automatic renewal error
1779
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1779
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1780
  `issuedate` datetime default NULL, -- date the item was checked out or issued
1780
  `issuedate` datetime default NULL, -- date the item was checked out or issued
1781
  `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1781
  `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1782
- 

Return to bug 15705