1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/codes/Getting started - Setting table definition - Introduction.php

15 lines
476 B
PHP
Raw Normal View History

2006-08-07 00:46:12 +04:00
<?php
class Email extends Doctrine_Record {
public function setTableDefinition() {
// setting custom table name:
$this->setTableName('emails');
$this->hasColumn("address", // name of the column
"string", // column type
"200", // column length
"notblank|email" // validators / constraints
);
}
}
?>