]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change modified to use timestamp type instead of datetime
authorZach Copley <zach@status.net>
Thu, 2 Jun 2011 18:20:08 +0000 (11:20 -0700)
committerZach Copley <zach@status.net>
Thu, 2 Jun 2011 18:20:08 +0000 (11:20 -0700)
classes/Oauth_token_association.php

index 40527fa74231c9f25e74b2ad75201490c018ec3c..06c9fee1c3da5c7fc5cb7760e64e3385cff4a97f 100644 (file)
@@ -49,7 +49,7 @@ class Oauth_token_association extends Memcached_DataObject
                 'application_id' => array('type' => 'int', 'not null' => true, 'description' => 'the application'),
                 'token' => array('type' => 'varchar', 'length' => '255', 'not null' => true, 'description' => 'token used for this association'),
                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
-                'modified' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was modified'),
+                'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
             ),
             'primary key' => array('profile_id', 'application_id', 'token'),
             'foreign keys' => array(