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

(-)a/installer/data/mysql/atomicupdate/bug_19532_-_add_old_recalls_table.sql (+27 lines)
Line 0 Link Here
1
DROP TABLE IF EXISTS `old_recalls`;
2
CREATE TABLE `old_recalls` ( -- information related to old recalls in Koha for statistics purposes
3
    `recall_id` int(11) NOT NULL auto_increment, -- primary key
4
    `borrowernumber` int(11) NULL default 0, -- foreign key from the borrowers table defining which patron requested a recall
5
    `recalldate` date default NULL, -- the date the recall request was placed
6
    `biblionumber` int(11) NULL default 0, -- foreign key from the biblio table defining which bib record this request is for
7
    `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick up their recall from
8
    `cancellationdate` date default NULL, -- the date this recall was cancelled
9
    `recallnotes` mediumtext, -- notes related to this recall
10
    `priority` smallint(6) default NULL, -- where in the queue the patron sits
11
    `found` varchar(1) default NULL, -- a one letter code defining what the status is of the recall is after it has been requested. R=requested, O=overdue, W=awaiting pickup, E=expired
12
    `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this recall was last updated
13
    `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the recall request was placed on
14
    `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
15
    `expirationdate` DATE DEFAULT NULL, -- the date the recall expires
16
    `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- the optional itemtype of the item the patron is requesting
17
    PRIMARY KEY (`recall_id`),
18
    KEY `old_recalls_borrowernumber` (`borrowernumber`),
19
    KEY `old_recalls_biblionumber` (`biblionumber`),
20
    KEY `old_recalls_itemnumber` (`itemnumber`),
21
    KEY `old_recalls_branchcode` (`branchcode`),
22
    KEY `old_recalls_itemtype` (`itemtype`),
23
    CONSTRAINT `old_recalls_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL,
24
    CONSTRAINT `old_recalls_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE SET NULL ON UPDATE SET NULL,
25
    CONSTRAINT `old_recalls_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE SET NULL,
26
    CONSTRAINT `old_recalls_ibfk_4` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE SET NULL ON UPDATE SET NULL
27
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
(-)a/installer/data/mysql/atomicupdate/bug_19532_-_add_recalls_table.sql (+29 lines)
Line 0 Link Here
1
DROP TABLE IF EXISTS `recalls`;
2
CREATE TABLE `recalls` ( -- information related to recalls in Koha
3
    `recall_id` int(11) NOT NULL auto_increment, -- primary key
4
    `borrowernumber` int(11) NOT NULL default 0, -- foreign key from the borrowers table defining which patron requested a recall
5
    `recalldate` date default NULL, -- the date the recall request was placed
6
    `biblionumber` int(11) NOT NULL default 0, -- foreign key from the biblio table defining which bib record this request is for
7
    `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick up their recall from
8
    `cancellationdate` date default NULL, -- the date this recall was cancelled
9
    `recallnotes` mediumtext, -- notes related to this recall
10
    `priority` smallint(6) default NULL, -- where in the queue the patron sits
11
    `found` varchar(1) default NULL, -- a one letter code defining what the status is of the recall is after it has been requested. R=requested, O=overdue, W=awaiting pickup, E=expired
12
    `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this recall was last updated
13
    `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the recall request was placed on
14
    `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
15
    `expirationdate` DATE DEFAULT NULL, -- the date the recall expires
16
    `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- the optional itemtype of the item the patron is requesting
17
    PRIMARY KEY (`recall_id`),
18
    KEY `priorityfoundidx` (priority,found),
19
    KEY `borrowernumber` (`borrowernumber`),
20
    KEY `biblionumber` (`biblionumber`),
21
    KEY `itemnumber` (`itemnumber`),
22
    KEY `branchcode` (`branchcode`),
23
    KEY `itemtype` (`itemtype`),
24
    CONSTRAINT `recalls_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
25
    CONSTRAINT `recalls_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
26
    CONSTRAINT `recalls_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
27
    CONSTRAINT `recalls_ibfk_4` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
28
    CONSTRAINT `recalls_ibfk_5` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE CASCADE ON UPDATE CASCADE
29
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
(-)a/installer/data/mysql/kohastructure.sql (-1 / +66 lines)
Lines 1858-1863 CREATE TABLE `patronimage` ( -- information related to patron images Link Here
1858
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1858
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1859
1859
1860
--
1860
--
1861
-- Table structure for table `recalls`
1862
--
1863
1864
DROP TABLE IF EXISTS `recalls`;
1865
CREATE TABLE `recalls` ( -- information related to recalls in Koha
1866
    `recall_id` int(11) NOT NULL auto_increment, -- primary key
1867
    `borrowernumber` int(11) NOT NULL default 0, -- foreign key from the borrowers table defining which patron requested a recall
1868
    `recalldate` date default NULL, -- the date the recall request was placed
1869
    `biblionumber` int(11) NOT NULL default 0, -- foreign key from the biblio table defining which bib record this request is for
1870
    `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick up their recall from
1871
    `cancellationdate` date default NULL, -- the date this recall was cancelled
1872
    `recallnotes` mediumtext, -- notes related to this recall
1873
    `priority` smallint(6) default NULL, -- where in the queue the patron sits
1874
    `found` varchar(1) default NULL, -- a one letter code defining what the status is of the recall is after it has been requested. R=requested, O=overdue, W=awaiting pickup, E=expired
1875
    `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this recall was last updated
1876
    `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the recall request was placed on
1877
    `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1878
    `expirationdate` DATE DEFAULT NULL, -- the date the recall expires
1879
    `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- the optional itemtype of the item the patron is requesting
1880
    PRIMARY KEY (`recall_id`),
1881
    KEY `priorityfoundidx` (priority,found),
1882
    KEY `borrowernumber` (`borrowernumber`),
1883
    KEY `biblionumber` (`biblionumber`),
1884
    KEY `itemnumber` (`itemnumber`),
1885
    KEY `branchcode` (`branchcode`),
1886
    KEY `itemtype` (`itemtype`),
1887
    CONSTRAINT `recalls_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1888
    CONSTRAINT `recalls_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1889
    CONSTRAINT `recalls_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1890
    CONSTRAINT `recalls_ibfk_4` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
1891
    CONSTRAINT `recalls_ibfk_5` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE CASCADE ON UPDATE CASCADE
1892
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1893
1894
--
1895
-- Table structure for table `old_recalls`
1896
--
1897
1898
DROP TABLE IF EXISTS `old_recalls`;
1899
CREATE TABLE `old_recalls` ( -- information related to recalls in Koha
1900
    `recall_id` int(11) NOT NULL auto_increment, -- primary key
1901
    `borrowernumber` int(11) NULL default 0, -- foreign key from the borrowers table defining which patron requested a recall
1902
    `recalldate` date default NULL, -- the date the recall request was placed
1903
    `biblionumber` int(11) NULL default 0, -- foreign key from the biblio table defining which bib record this request is for
1904
    `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick up their recall from
1905
    `cancellationdate` date default NULL, -- the date this recall was cancelled
1906
    `recallnotes` mediumtext, -- notes related to this recall
1907
    `priority` smallint(6) default NULL, -- where in the queue the patron sits
1908
    `found` varchar(1) default NULL, -- a one letter code defining what the status is of the recall is after it has been requested. R=requested, O=overdue, W=awaiting pickup, E=expired
1909
    `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this recall was last updated
1910
    `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the recall request was placed on
1911
    `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1912
    `expirationdate` DATE DEFAULT NULL, -- the date the recall expires
1913
    `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- the optional itemtype of the item the patron is requesting
1914
    PRIMARY KEY (`recall_id`),
1915
    KEY `old_recalls_borrowernumber` (`borrowernumber`),
1916
    KEY `old_recalls_biblionumber` (`biblionumber`),
1917
    KEY `old_recalls_itemnumber` (`itemnumber`),
1918
    KEY `old_recalls_branchcode` (`branchcode`),
1919
    KEY `old_recalls_itemtype` (`itemtype`),
1920
    CONSTRAINT `old_recalls_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL,
1921
    CONSTRAINT `old_recalls_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE SET NULL ON UPDATE SET NULL,
1922
    CONSTRAINT `old_recalls_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE SET NULL,
1923
    CONSTRAINT `old_recalls_ibfk_4` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE SET NULL ON UPDATE SET NULL
1924
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1925
1926
--
1861
-- Table structure for table `reserves`
1927
-- Table structure for table `reserves`
1862
--
1928
--
1863
1929
1864
- 

Return to bug 19532