8 lines
194 B
PHP
8 lines
194 B
PHP
<?php
|
|
class Phototag extends Doctrine_Record {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('photo_id', 'integer');
|
|
$this->hasColumn('tag_id', 'integer');
|
|
}
|
|
}
|