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

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

Return to bug 19422