Message.php 512 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\GiftMessage\Model\ResourceModel;
  7. /**
  8. * Gift Message resource model
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Message extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  13. {
  14. /**
  15. * Define main table
  16. *
  17. * @return void
  18. */
  19. protected function _construct()
  20. {
  21. $this->_init('gift_message', 'gift_message_id');
  22. }
  23. }