1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/Song.php

9 lines
239 B
PHP

<?php
class Song extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('album_id', 'integer');
$this->hasColumn('genre', 'string',20);
$this->hasColumn('title', 'string',30);
}
}