1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/I18nTest.php
2007-09-04 20:40:55 +00:00

14 lines
284 B
PHP

<?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');
}
}