]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
User_im_prefs - Fix wrong schemaDef
authorDiogo Cordeiro <diogo@fc.up.pt>
Fri, 19 Apr 2019 19:54:24 +0000 (20:54 +0100)
committerDiogo Cordeiro <diogo@fc.up.pt>
Fri, 19 Apr 2019 19:54:24 +0000 (20:54 +0100)
classes/User_im_prefs.php

index 6a5fc7f3ab55a70b4df8f8b060d5bba2c3e97c20..eb5b67269a50465723eb242f67223d6b9f4aaa3f 100644 (file)
@@ -57,8 +57,8 @@ class User_im_prefs extends Managed_DataObject
                 'notify' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Notify when a new notice is sent'),
                 'replies' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Send replies  from people not subscribed to'),
                 'updatefrompresence' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Send replies from people not subscribed to.'),
-                'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
-                'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
+                'created' => array('type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'),
+                'modified' => array('type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'),
             ),
             'primary key' => array('user_id', 'transport'),
             'unique keys' => array(