1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Getting started - Record identifiers - Natural.php
2006-08-06 20:46:12 +00:00

8 lines
161 B
PHP

<?php
class User extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn("name","string",200,"primary");
}
}
?>