table('xhprof_run_detail', ['id' => false, 'primary_key' => ['id']]) ->setComment('XHProf 采样原始 profile 数据(按 run 1:1,不进后台)') ->addColumn('id', 'integer', ['limit' => 11, 'null' => false, 'signed' => false, 'comment' => '主键,值=ul_xhprof_run.id(不自增)']) ->addColumn('profile_data', 'text', ['length' => MysqlAdapter::TEXT_LONG, 'null' => true, 'comment' => '原始 profile JSON']) ->create(); } }