芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/uol/db/migrations/20190611145607_remove_old_version_table_migration.php
. */ use Phinx\Migration\AbstractMigration; class RemoveOldVersionTableMigration extends AbstractMigration { /** @inheritdoc */ public function change() { if ($this->hasTable('version')) { $this->execute('DROP TABLE version'); } } }