Schema reference - Data types - Integer.php 185 Bytes
Newer Older
zYne's avatar
zYne committed
1 2 3 4 5 6 7
<?php
class Test extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('integertest', 'integer', 4, array('unsigned' => true);
    }
}
?>