<?php
/**
* Landofcoder
*
* NOTICE OF LICENSE
*
* This source file is subject to the landofcoder.com license that is
* available through the world-wide-web at this URL:
* http://landofcoder.com/license
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Landofcoder
* @package Lofmp_Faq
* @copyright Copyright (c) 2017 Landofcoder (http://www.landofcoder.com/)
* @license http://www.landofcoder.com/LICENSE-1.0.html
*/
namespace Lofmp\Faq\Model\ResourceModel;
class Setting extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb{
protected $_isPkAutoIncrement = false;
/**
* Initialize resource model
*
* @return void
*/
protected function _construct()
{
$this->_init('lofmp_faq_setting', 'seller_id');
}
}
|