00001 <?php
00002
00003
00004
00005
00006
00007
00008 class DAOStudentsTest extends DataObjectBase {
00009 public $id;
00010 public $name;
00011
00012 protected function create_table_object() {
00013 return new DBTable(
00014 'studentstest',
00015 array(
00016 new DBFieldInt('id', null, DBFieldInt::AUTOINCREMENT | DBFieldInt::UNSIGNED | DBFieldInt::NOT_NULL),
00017 new DBFieldText('name', 40, null, DBField::NOT_NULL),
00018 new DBFieldDateTime('modificationdate', null, DBFieldDateTime::TIMESTAMP | DBField::NOT_NULL)
00019 ),
00020 'id',
00021 null,
00022 null,
00023 new DBDriverMySqlMock()
00024 );
00025 }
00026 }