<?php
/**
* @version $Id: racetype.php
* @package Joomla
* @copyright Copyright (C) 2010 - 2010 Pablo Cárcaba. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*/
defined( '_JEXEC' ) or die( 'Restricted access' );
class TableRacetypes extends JTable{
var $id=null;
var $description=null;
function __construct(&$db){
parent::__construct('#__gcd_racetypes','id',$db);
}
}
?>