Files
website/rendering/Model/ThumbModel.php

23 lines
363 B
PHP

<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.01.2017
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
namespace Model;
use Helper\Database;
class ThumbModel extends Database
{
const TBL_NAME = TBL_THUMB;
const PRIMARY_KEY = 'thumbID';
const ORDER_BY = '';
}