X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FConversation.php;h=23f8dada0b316dfe0ef7c4b2c5a7eddc32d5a614;hb=2770ef9718fb29110b6ab43ea6cffffa8cc4c27b;hp=4bad474c7334207ef2ab6e8d8040050c7b093b31;hpb=d594c83a5a9a9d42fce917b544c28591fcadb1aa;p=quix0rs-gnu-social.git diff --git a/classes/Conversation.php b/classes/Conversation.php index 4bad474c73..23f8dada0b 100755 --- a/classes/Conversation.php +++ b/classes/Conversation.php @@ -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'), ),