]> git.mjollnir.org Git - s9y.git/commitdiff
Use int11, as it's pgsql compatible
authorgarvinhicking <garvinhicking>
Fri, 20 Apr 2007 09:17:56 +0000 (09:17 +0000)
committergarvinhicking <garvinhicking>
Fri, 20 Apr 2007 09:17:56 +0000 (09:17 +0000)
plugins/serendipity_event_statistics/serendipity_event_statistics.php

index ef997ae278657c85696870977bb0c4d7a674b878..bcebeac3b27182b6540e27737c8ce933b284e68d 100644 (file)
@@ -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);