]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Remove NOT NULL restriction on FeedSub last_update
authorChimo <chimo@chromic.org>
Sat, 7 Feb 2015 16:08:03 +0000 (11:08 -0500)
committerChimo <chimo@chromic.org>
Sat, 7 Feb 2015 16:08:03 +0000 (11:08 -0500)
Fixes an issue where INSERTs fail if MySQL/MariaDB runs in "strict
mode".

plugins/OStatus/classes/FeedSub.php

index 57c056f5fbd7f3b29849221d56b40ffc65ab4e23..adc1aa11be6506eb9041a85db5b1924c53180131 100644 (file)
@@ -86,7 +86,7 @@ class FeedSub extends Managed_DataObject
                 'sub_state' => array('type' => 'enum("subscribe","active","unsubscribe","inactive","nohub")', 'not null' => true, 'description' => 'subscription state'),
                 'sub_start' => array('type' => 'datetime', 'description' => 'subscription start'),
                 'sub_end' => array('type' => 'datetime', 'description' => 'subscription end'),
-                'last_update' => array('type' => 'datetime', 'not null' => true, 'description' => 'when this record was last updated'),
+                'last_update' => array('type' => 'datetime', 'description' => 'when this record was last updated'),
                 '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'),
             ),