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