]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Consumer.php
Add new OAuth application tables and DataObjects. Also add a new
[quix0rs-gnu-social.git] / classes / Consumer.php
index d5b7b7e33ad440f04a5b16886692c11874f48d94..d17f183a88f017389cecf3dfedebc1fa6f29e166 100644 (file)
@@ -11,9 +11,10 @@ class Consumer extends Memcached_DataObject
 
     public $__table = 'consumer';                        // table name
     public $consumer_key;                    // varchar(255)  primary_key not_null
+    public $consumer_secret;                 // varchar(255)   not_null
     public $seed;                            // char(32)   not_null
-    public $created;                         // datetime()   not_null
-    public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
+    public $created;                         // datetime   not_null
+    public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
 
     /* Static get */
     function staticGet($k,$v=null)