]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Conversation.php
listFind throws NoResultException on no results
[quix0rs-gnu-social.git] / classes / Conversation.php
index 4bad474c7334207ef2ab6e8d8040050c7b093b31..23f8dada0b316dfe0ef7c4b2c5a7eddc32d5a614 100755 (executable)
@@ -36,13 +36,10 @@ class Conversation extends Managed_DataObject
 
     public $__table = 'conversation';                    // table name
     public $id;                              // int(4)  primary_key not_null
-    public $uri;                             // varchar(225)  unique_key
+    public $uri;                             // varchar(255)  unique_key
     public $created;                         // datetime   not_null
     public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
 
-    /* Static get */
-    function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('conversation',$k,$v); }
-
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
 
@@ -51,7 +48,7 @@ class Conversation extends Managed_DataObject
         return array(
             'fields' => array(
                 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
-                'uri' => array('type' => 'varchar', 'length' => 225, 'description' => 'URI of the conversation'),
+                'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI of the conversation'),
                 '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'),
             ),