wikipoints/ground/models/Category.php

14 lines
135 B
PHP

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