contributions/models.tokens/model/classes/tokens.model.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Tokens DAO class 00004 */ 00005 class DAOTokens extends DataObjectBase { 00006 /** 00007 * Create the table object describing this dataobejcts table 00008 */ 00009 protected function create_table_object() { 00010 return new DBTable( 00011 'tokens', 00012 array( 00013 new DBFieldText('token', 40, null, DBField::NOT_NULL), 00014 new DBFieldDateTime('creationdate', DBFieldDateTime::NOW, DBFieldDateTime::TIMESTAMP | DBField::NOT_NULL) 00015 ), 00016 'token' 00017 ); 00018 } 00019 00020 }