From 3ce208fdf6db90a10f0a83ce76383559cfc4795d Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Fri, 20 Apr 2007 09:17:56 +0000 Subject: [PATCH] Use int11, as it's pgsql compatible --- .../serendipity_event_statistics.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/serendipity_event_statistics/serendipity_event_statistics.php b/plugins/serendipity_event_statistics/serendipity_event_statistics.php index ef997ae2..bcebeac3 100644 --- a/plugins/serendipity_event_statistics/serendipity_event_statistics.php +++ b/plugins/serendipity_event_statistics/serendipity_event_statistics.php @@ -25,7 +25,7 @@ class serendipity_event_statistics extends serendipity_event $propbag->add('description', PLUGIN_EVENT_STATISTICS_DESC); $propbag->add('stackable', false); $propbag->add('author', 'Arnan de Gans, Garvin Hicking, Fredrik Sandberg'); - $propbag->add('version', '1.45'); + $propbag->add('version', '1.46'); $propbag->add('requirements', array( 'serendipity' => '0.8', 'smarty' => '2.6.7', @@ -940,8 +940,8 @@ class serendipity_event_statistics extends serendipity_event year int(4) not null, month int(2) not null, day int(2) not null, - visits int(12) not null, - hits int(12) not null + visits int(11) not null, + hits int(11) not null )"; serendipity_db_schema_import($q);