NotNullTest.php 248 Bytes
Newer Older
1 2 3 4 5 6 7
<?php
class NotNullTest extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('name', 'string', 100, 'notnull');
        $this->hasColumn('type', 'integer', 11);                                     	
    }
}