1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/RTC4.php

11 lines
312 B
PHP
Raw Normal View History

<?php
class RTC4 extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('oid', 'integer', 11, array('autoincrement', 'primary'));
$this->hasColumn('name', 'string', 20);
}
public function setUp() {
$this->hasMany('M2MTest2', 'JC3.c2_id');
}
}