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

(-)a/installer/data/mysql/kohastructure.sql (-1 / +3 lines)
Lines 3922-3927 CREATE TABLE IF NOT EXISTS `housebound_role` ( Link Here
3922
-- Table structure for table 'article_requests'
3922
-- Table structure for table 'article_requests'
3923
--
3923
--
3924
3924
3925
DROP TABLE IF EXISTS `article_requests`;
3925
CREATE TABLE `article_requests` (
3926
CREATE TABLE `article_requests` (
3926
  `id` int(11) NOT NULL AUTO_INCREMENT,
3927
  `id` int(11) NOT NULL AUTO_INCREMENT,
3927
  `borrowernumber` int(11) NOT NULL,
3928
  `borrowernumber` int(11) NOT NULL,
Lines 3955-3960 CREATE TABLE `article_requests` ( Link Here
3955
-- Table structure for table `biblio_metadata`
3956
-- Table structure for table `biblio_metadata`
3956
--
3957
--
3957
3958
3959
DROP TABLE IF EXISTS `biblio_metadata`;
3958
CREATE TABLE biblio_metadata (
3960
CREATE TABLE biblio_metadata (
3959
    `id` INT(11) NOT NULL AUTO_INCREMENT,
3961
    `id` INT(11) NOT NULL AUTO_INCREMENT,
3960
    `biblionumber` INT(11) NOT NULL,
3962
    `biblionumber` INT(11) NOT NULL,
Lines 3970-3975 CREATE TABLE biblio_metadata ( Link Here
3970
-- Table structure for table `deletedbiblio_metadata`
3972
-- Table structure for table `deletedbiblio_metadata`
3971
--
3973
--
3972
3974
3975
DROP TABLE IF EXISTS `deletedbiblio_metadata`;
3973
CREATE TABLE deletedbiblio_metadata (
3976
CREATE TABLE deletedbiblio_metadata (
3974
    `id` INT(11) NOT NULL AUTO_INCREMENT,
3977
    `id` INT(11) NOT NULL AUTO_INCREMENT,
3975
    `biblionumber` INT(11) NOT NULL,
3978
    `biblionumber` INT(11) NOT NULL,
3976
- 

Return to bug 19422