wikipoints/ground/models/point.php

14 lines
128 B
PHP

<?php
class Point extends Model
{
function __construct()
{
$this->_tableName_ = 'points';
parent::__construct();
}
}