1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/I18nTest.php
2008-01-04 18:21:45 +00:00

14 lines
327 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', array('fields' => array('name', 'title')));
}
}