MysqlAdapter.php 146 B

123456789101112
  1. <?php
  2. namespace DysUtil\Phinx\Db\Adapter;
  3. class MysqlAdapter
  4. {
  5. /**
  6. * 表引擎 InnoDB
  7. */
  8. const TableEngineInnoDB= 'InnoDB';
  9. }