1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/manual/codes/Getting started - Record identifiers - Composite.php
2007-02-06 14:39:47 +00:00

9 lines
237 B
PHP

<?php
class Groupuser extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn("user_id", "integer", 20, "primary");
$this->hasColumn("group_id", "integer", 20, "primary");
}
}
?>