2007-09-20 20:24:38 +00:00
|
|
|
<?php
|
2008-05-13 21:20:34 +00:00
|
|
|
class MigrationTest extends Doctrine_Entity
|
2007-09-20 20:24:38 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class)
|
2007-09-20 20:24:38 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->setColumn('field1', 'string');
|
2007-09-20 20:24:38 +00:00
|
|
|
}
|
|
|
|
}
|