SchemaPatchInterface.php 394 B

1234567891011121314
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Setup\Patch;
  7. /**
  8. * This interface describe script, that atomic operations with schema (DDL) in SQL database
  9. * This is wrapper for @see PatchInterface in order to define what kind of patch we have
  10. */
  11. interface SchemaPatchInterface extends PatchInterface
  12. {
  13. }