Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-mysql-mq/Model/ResourceModel/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-mysql-mq/Model/ResourceModel/Message.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\MysqlMq\Model\ResourceModel;

/**
 * Resource model for queue messages.
 */
class Message extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
    /**
     * Model initialization
     *
     * @return void
     */
    protected function _construct()
    {
        $this->_init('queue_message', 'id');
    }
}