1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/EnumTest3.php

8 lines
174 B
PHP
Raw Normal View History

<?php
class EnumTest3 extends Doctrine_Record
{
public function setTableDefinition() {
$this->hasColumn('text', 'string', 10, array('primary' => true));
}
}