1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/Getting started - Setting table definition.php
2007-04-13 21:49:11 +00:00

17 lines
415 B
PHP

<code type="php">
class Email extends Doctrine_Record {
public function setTableDefinition() {
/**
* email table has one column named 'address' which is
* php type 'string'
* maximum length 200
* database constraints: UNIQUE
* validators: email, unique
*
*/
$this->hasColumn("address","string",200,"email|unique");
}
}
</code>