hasTable('permissions')) { $table = $this->table('permissions'); $table->renameColumn('method', 'hidden_children_in_menu') ->addColumn('breadcrumb', 'integer', [ 'limit' => \Phinx\Db\Adapter\MysqlAdapter::INT_TINY, 'default' => 1, 'comment' => '是否显示在面包屑 1 显示 2 隐藏', 'after' => 'redirect']) ->addColumn('affix', 'integer', [ 'limit' => \Phinx\Db\Adapter\MysqlAdapter::INT_TINY, 'default' => 2, 'comment' => '是否固定在 tag-view 1 固定 2 不固定', 'after' => 'breadcrumb']) ->update(); } } }