]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
[Nodeinfo][DATABASE][Usage_stats] Fix wrong type for modified column
authorDiogo Cordeiro <diogo@fc.up.pt>
Wed, 5 Jun 2019 09:04:59 +0000 (10:04 +0100)
committerDiogo Cordeiro <diogo@fc.up.pt>
Fri, 7 Jun 2019 14:02:10 +0000 (15:02 +0100)
plugins/Nodeinfo/NodeinfoPlugin.php
plugins/Nodeinfo/classes/Usage_stats.php

index 79defe39fd1935decff962d54411dd8e5102399f..361b020158cf5543d2ce25ba70dcb90b79970f16 100644 (file)
@@ -6,7 +6,7 @@ if (!defined('GNUSOCIAL')) {
 
 class NodeinfoPlugin extends Plugin
 {
-    const VERSION = '1.0.1';
+    const PLUGIN_VERSION = '1.0.2';
 
     public function onRouterInitialized($m)
     {
@@ -170,7 +170,7 @@ class NodeinfoPlugin extends Plugin
     public function onPluginVersion(array &$versions)
     {
         $versions[] = ['name' => 'Nodeinfo',
-            'version' => self::VERSION,
+            'version' => self::PLUGIN_VERSION,
             'author' => 'chimo',
             'homepage' => 'https://github.com/chimo/gs-nodeinfo',
             'description' => _m('Plugin that presents basic instance information using the NodeInfo standard.')];
index fcfc1c842bbf8f71b81e92574a21259dcf386f31..bd5c6899fdd004cb31d557dfc8c5359edf57780f 100644 (file)
@@ -43,8 +43,7 @@ class Usage_stats extends Managed_DataObject
             'fields' => [
                 'type' => ['type' => 'varchar', 'length' => 191, 'description' => 'Type of countable entity'],
                 'count' => ['type' => 'int', 'size' => 'int', 'default' => 0, 'description' => 'Number of entities of this type'],
-
-                'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
+                'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
             ],
             'primary key' => ['type'],
             'unique keys' => [