CakePHP 3.6:删除表

时间:2018-12-18 17:49:34

标签: cakephp cakephp-3.x

删除表的正确方法是什么?我试过创建此迁移,但表仍然存在:

<?php

use Phinx\Migration\AbstractMigration;

class DropAddresses extends AbstractMigration
{
    /**
     * Migrate Up.
     */
    public function up()
    {
        $this->dropTable('addresses');
    }

}

然后我必须手动删除特定表的模型,模板等中的所有文件吗?

0 个答案:

没有答案