table('admin_auth_rule', [ 'comment' => '权限细节' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('url', 'string', [ 'limit' => 80, 'default' => '', 'comment' => '规则唯一标识' ])->addColumn('group_id', 'integer', [ 'limit' => 11, 'default' => 0, 'signed' => false, 'comment' => '权限所属组的ID' ])->addColumn('auth', 'integer', [ 'limit' => 11, 'default' => 0, 'signed' => false, 'comment' => '权限数值' ])->addColumn('status', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 1, 'comment' => '状态:为1正常,为0禁用' ])->create(); } }