1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/codes/Getting started - Record identifiers - Composite.php

9 lines
236 B
PHP
Raw Normal View History

2006-08-07 00:46:12 +04:00
<?php
class Groupuser extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn("user_id", "integer" 20, "primary");
$this->hasColumn("group_id", "integer", 20, "primary");
}
}
?>