Message.php 623 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\AdminNotification\Model\ResourceModel\System;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. class Message extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  12. {
  13. /**
  14. * Flag that notifies whether Primary key of table is auto-incremented
  15. *
  16. * @var bool
  17. */
  18. protected $_isPkAutoIncrement = false;
  19. /**
  20. * Resource initialization
  21. *
  22. * @return void
  23. */
  24. protected function _construct()
  25. {
  26. $this->_init('admin_system_messages', 'identity');
  27. }
  28. }