1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/I18nTest.php
2007-09-17 22:30:55 +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")));
}
}