]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Correct comment on Notice->conversation in table schema
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 24 Feb 2016 18:34:12 +0000 (19:34 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 24 Feb 2016 18:34:44 +0000 (19:34 +0100)
classes/Notice.php

index ccd398003d4ad7f362753ad02f3f5f3e08695e8b..5a37834e1aa09b4cebf220bc348704807401e9fc 100644 (file)
@@ -88,7 +88,7 @@ class Notice extends Managed_DataObject
                 'reply_to' => array('type' => 'int', 'description' => 'notice replied to (usually a guess)'),
                 'is_local' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'notice was generated by a user'),
                 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'),
-                'conversation' => array('type' => 'int', 'description' => 'id of root notice in this conversation'),
+                'conversation' => array('type' => 'int', 'description' => 'the local numerical conversation id'),
                 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'),
                 'object_type' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI representing activity streams object type', 'default' => null),
                 'verb' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI representing activity streams verb', 'default' => 'http://activitystrea.ms/schema/1.0/post'),