Object relational mapping - Columns - Data types - Array.php 212 Bytes
Newer Older
hansbrix's avatar
hansbrix committed
1
This is the same as 'array' type in PHP. 
2

hansbrix's avatar
hansbrix committed
3 4 5 6 7 8 9
<code type="php">
class Test extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('arraytest', 'array', 10000);
    }
}
</code>