table('crm_remove_customer')->setComment('客户导入关联表') ->addColumn('log_id', 'integer', ['limit'=> 10, 'comment'=> '导入记录id', 'default'=> 0]) ->addColumn('customer_id', 'integer', ['limit'=> 10, 'comment'=> '客户id', 'default'=> 0]) ->addColumn('addtime', 'timestamp', ['default'=> 'CURRENT_TIMESTAMP', 'comment'=> '上传时间']) ->addColumn('root_id', 'integer', ['limit'=> 10, 'comment'=> '组织id', 'default'=> 0]) ->create(); } }