]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Deleted_notice.php
Notice properties set in bad order on activityobject saving
[quix0rs-gnu-social.git] / classes / Deleted_notice.php
old mode 100755 (executable)
new mode 100644 (file)
index 474d0b6..a9167f1
  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
  */
 
-if (!defined('LACONICA')) { exit(1); }
+if (!defined('STATUSNET')) {
+    exit(1);
+}
 
 /**
  * Table Definition for notice
  */
 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
 
-class Deleted_notice extends Memcached_DataObject
+class Deleted_notice extends Managed_DataObject
 {
     ###START_AUTOCODE
     /* the code below is auto generated do not remove the above tag */
@@ -32,13 +34,30 @@ class Deleted_notice extends Memcached_DataObject
     public $__table = 'deleted_notice';                  // table name
     public $id;                              // int(4)  primary_key not_null
     public $profile_id;                      // int(4)   not_null
-    public $uri;                             // varchar(255)  unique_key
+    public $uri;                             // varchar(191)  unique_key   not 255 because utf8mb4 takes more space
     public $created;                         // datetime()   not_null
     public $deleted;                         // datetime()   not_null
 
-    /* Static get */
-    function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Deleted_notice',$k,$v); }
-
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
+
+    public static function schemaDef()
+    {
+        return array(
+            'fields' => array(
+                'id' => array('type' => 'int', 'not null' => true, 'description' => 'identity of notice'),
+                'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'author of the notice'),
+                'uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier, usually a tag URI'),
+                'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'),
+                'deleted' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'),
+            ),
+            'primary key' => array('id'),
+            'unique keys' => array(
+                'deleted_notice_uri_key' => array('uri'),
+            ),
+            'indexes' => array(
+                'deleted_notice_profile_id_idx' => array('profile_id'),
+            ),
+        );
+    }
 }