aboutsummaryrefslogtreecommitdiff
path: root/public/install.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-23 22:20:05 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-23 22:20:05 +0100
commitffbe676d7d33f8e075018bfa35f0d919e3e1a9bf (patch)
tree14c9aa1459c7c287da0d2814c707413e8b412090 /public/install.php
parent992b9c15def84c1cb1952d016bf57707544e3eac (diff)
SQL : f.keep_history en MEDIUMINT
Passage de keep_history en MEDIUMINT plutôt que BOOLEAN (TINYINT) en prévision d'un historique plus personnalisable
Diffstat (limited to 'public/install.php')
-rw-r--r--public/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/install.php b/public/install.php
index 56d626cc5..afef7e473 100644
--- a/public/install.php
+++ b/public/install.php
@@ -33,7 +33,7 @@ define ('SQL_FEED', 'CREATE TABLE IF NOT EXISTS `%1$sfeed` (
`pathEntries` varchar(511) DEFAULT NULL,
`httpAuth` varchar(511) DEFAULT NULL,
`error` boolean DEFAULT 0,
- `keep_history` boolean NOT NULL DEFAULT 0,
+ `keep_history` MEDIUMINT NOT NULL DEFAULT 0,
`cache_nbEntries` int DEFAULT 0, -- v0.7
`cache_nbUnreads` int DEFAULT 0, -- v0.7
PRIMARY KEY (`id`),