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

9 lines
236 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");
}
}
?>