wikipoints/models/Tracks.php

18 lines
211 B
PHP

<?php
class Tracks extends Model
{
function __construct($fromArray = array())
{
$this->_tableName_ = 'tracks';
parent::__construct($fromArray);
}
static function model()
{
return new self();
}
}