1
0
mirror of synced 2024-12-13 14:56:01 +03:00
This commit is contained in:
zYne 2007-09-04 20:40:55 +00:00
parent 831c195b3b
commit 7a7a59d850

13
models/I18nTest.php Normal file
View File

@ -0,0 +1,13 @@
<?php
class I18nTest extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('name', 'string', 200);
$this->hasColumn('title', 'string', 200);
}
public function setUp()
{
$this->actAs('I18n');
}
}