15 lines
299 B
PHP
Executable File
15 lines
299 B
PHP
Executable File
<?php
|
|
|
|
namespace IpSupply\CartToQuote\Model\ResourceModel;
|
|
|
|
class CartHistory extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
|
|
{
|
|
|
|
protected function _construct()
|
|
{
|
|
// Table name + primary key column
|
|
$this->_init('ip_supply_cart_to_quote_history', 'id');
|
|
}
|
|
|
|
}
|