8 lines
233 B
PHP
8 lines
233 B
PHP
<?php
|
|
class CPK_Association extends Doctrine_Record {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('test1_id', 'integer', 11, 'primary');
|
|
$this->hasColumn('test2_id', 'integer', 11, 'primary');
|
|
}
|
|
}
|