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

(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 2838-2844 CREATE TABLE ratings ( Link Here
2838
DROP TABLE IF EXISTS quotes;
2838
DROP TABLE IF EXISTS quotes;
2839
CREATE TABLE `quotes` (
2839
CREATE TABLE `quotes` (
2840
  `id` int(11) NOT NULL AUTO_INCREMENT,
2840
  `id` int(11) NOT NULL AUTO_INCREMENT,
2841
  `source` varchar(45) DEFAULT NULL,
2841
  `source` text DEFAULT NULL,
2842
  `text` mediumtext NOT NULL,
2842
  `text` mediumtext NOT NULL,
2843
  `timestamp` datetime NOT NULL,
2843
  `timestamp` datetime NOT NULL,
2844
  PRIMARY KEY (`id`)
2844
  PRIMARY KEY (`id`)
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 5252-5258 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
5252
        $dbh->do( qq{
5252
        $dbh->do( qq{
5253
            CREATE TABLE `quotes` (
5253
            CREATE TABLE `quotes` (
5254
              `id` int(11) NOT NULL AUTO_INCREMENT,
5254
              `id` int(11) NOT NULL AUTO_INCREMENT,
5255
              `source` varchar(45) DEFAULT NULL,
5255
              `source` text DEFAULT NULL,
5256
              `text` mediumtext NOT NULL,
5256
              `text` mediumtext NOT NULL,
5257
              `timestamp` datetime NOT NULL,
5257
              `timestamp` datetime NOT NULL,
5258
              PRIMARY KEY (`id`)
5258
              PRIMARY KEY (`id`)
5259
- 

Return to bug 7977