summaryrefslogtreecommitdiff
path: root/app/sql.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-02-11 15:30:52 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-02-11 15:30:52 +0100
commit18403d9720c7b3d26881bb6291bf6eb2a9df05d9 (patch)
tree69ad948821cde78d1edfd7f654940370bd63f529 /app/sql.php
parentcd8e245523b54b19004ff3202f0fe412e70f130b (diff)
SQL : Supprime c.color
Implémente décision https://github.com/marienfressinaud/FreshRSS/issues/295 Install.php pourrait peut-être être mis à jour pour supprimer automatiquement la colonne, mais ce n'est pas fait dans ce patch.
Diffstat (limited to 'app/sql.php')
-rw-r--r--app/sql.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/sql.php b/app/sql.php
index 1b43da30a..5cd7c52ed 100644
--- a/app/sql.php
+++ b/app/sql.php
@@ -3,7 +3,6 @@ define('SQL_CREATE_TABLES', '
CREATE TABLE IF NOT EXISTS `%1$scategory` (
`id` SMALLINT NOT NULL AUTO_INCREMENT, -- v0.7
`name` varchar(255) NOT NULL,
- `color` char(7),
PRIMARY KEY (`id`),
UNIQUE KEY (`name`) -- v0.7
) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci