Files
2017-11-14 15:04:59 +01:00

25 lines
412 B
PHP

<?php
namespace Edeclic\News\Model\ResourceModel;
use \Magento\Framework\Model\ResourceModel\Db\AbstractDb;
/**
* Department post mysql resource
*/
class News extends AbstractDb
{
/**
* Initialize resource model
*
* @return void
*/
protected function _construct()
{
// Table Name and Primary Key column
$this->_init('edeclic_news', 'entity_id');
}
}