You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

n9e_job.sql 36 kB

5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392
  1. set names utf8;
  2. drop database if exists n9e_job;
  3. create database n9e_job;
  4. use n9e_job;
  5. CREATE TABLE `task_tpl`
  6. (
  7. `id` int unsigned NOT NULL AUTO_INCREMENT,
  8. `node_id` int unsigned not null,
  9. `title` varchar(255) not null default '',
  10. `account` varchar(64) not null,
  11. `batch` int unsigned not null default 0,
  12. `tolerance` int unsigned not null default 0,
  13. `timeout` int unsigned not null default 0,
  14. `pause` varchar(255) not null default '',
  15. `script` text not null,
  16. `args` varchar(512) not null default '',
  17. `tags` varchar(255) not null default '',
  18. `creator` varchar(64) not null default '',
  19. `last_updated` timestamp not null default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  20. PRIMARY KEY (`id`),
  21. KEY (`node_id`)
  22. ) ENGINE = InnoDB
  23. DEFAULT CHARSET = utf8;
  24. CREATE TABLE `task_tpl_host`
  25. (
  26. `ii` int unsigned NOT NULL AUTO_INCREMENT,
  27. `id` int unsigned not null comment 'task tpl id',
  28. `host` varchar(64) not null comment 'ip or hostname',
  29. PRIMARY KEY (`ii`),
  30. KEY (`id`, `host`)
  31. ) ENGINE = InnoDB
  32. DEFAULT CHARSET = utf8;
  33. CREATE TABLE `task_meta`
  34. (
  35. `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  36. `title` varchar(255) not null default '',
  37. `account` varchar(64) not null,
  38. `batch` int unsigned not null default 0,
  39. `tolerance` int unsigned not null default 0,
  40. `timeout` int unsigned not null default 0,
  41. `pause` varchar(255) not null default '',
  42. `script` text not null,
  43. `args` varchar(512) not null default '',
  44. `creator` varchar(64) not null default '',
  45. `created` timestamp not null,
  46. PRIMARY KEY (`id`),
  47. KEY (`creator`),
  48. KEY (`created`)
  49. ) ENGINE = InnoDB
  50. DEFAULT CHARSET = utf8;
  51. /* start|cancel|kill|pause */
  52. CREATE TABLE `task_action`
  53. (
  54. `id` bigint unsigned not null,
  55. `action` varchar(32) not null,
  56. `clock` bigint not null default 0,
  57. PRIMARY KEY (`id`)
  58. ) ENGINE = InnoDB
  59. DEFAULT CHARSET = utf8;
  60. CREATE TABLE `task_scheduler`
  61. (
  62. `id` bigint unsigned not null,
  63. `scheduler` varchar(128) not null default '',
  64. KEY (`id`, `scheduler`)
  65. ) ENGINE = InnoDB
  66. DEFAULT CHARSET = utf8;
  67. CREATE TABLE `task_scheduler_health`
  68. (
  69. `scheduler` varchar(128) not null,
  70. `clock` datetime not null,
  71. UNIQUE KEY (`scheduler`),
  72. KEY (`clock`)
  73. ) ENGINE = InnoDB
  74. DEFAULT CHARSET = utf8;
  75. CREATE TABLE `task_host_doing`
  76. (
  77. `id` bigint unsigned not null,
  78. `host` varchar(128) not null,
  79. `clock` bigint not null default 0,
  80. `action` varchar(16) not null,
  81. KEY (`id`),
  82. KEY (`host`)
  83. ) ENGINE = InnoDB
  84. DEFAULT CHARSET = utf8;
  85. CREATE TABLE task_host_0
  86. (
  87. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  88. `id` bigint unsigned not null,
  89. `host` varchar(128) not null,
  90. `status` varchar(32) not null,
  91. `stdout` text,
  92. `stderr` text,
  93. UNIQUE KEY (`id`, `host`),
  94. PRIMARY KEY (`ii`)
  95. ) ENGINE = InnoDB
  96. DEFAULT CHARSET = utf8;
  97. CREATE TABLE task_host_1
  98. (
  99. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  100. `id` bigint unsigned not null,
  101. `host` varchar(128) not null,
  102. `status` varchar(32) not null,
  103. `stdout` text,
  104. `stderr` text,
  105. UNIQUE KEY (`id`, `host`),
  106. PRIMARY KEY (`ii`)
  107. ) ENGINE = InnoDB
  108. DEFAULT CHARSET = utf8;
  109. CREATE TABLE task_host_2
  110. (
  111. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  112. `id` bigint unsigned not null,
  113. `host` varchar(128) not null,
  114. `status` varchar(32) not null,
  115. `stdout` text,
  116. `stderr` text,
  117. UNIQUE KEY (`id`, `host`),
  118. PRIMARY KEY (`ii`)
  119. ) ENGINE = InnoDB
  120. DEFAULT CHARSET = utf8;
  121. CREATE TABLE task_host_3
  122. (
  123. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  124. `id` bigint unsigned not null,
  125. `host` varchar(128) not null,
  126. `status` varchar(32) not null,
  127. `stdout` text,
  128. `stderr` text,
  129. UNIQUE KEY (`id`, `host`),
  130. PRIMARY KEY (`ii`)
  131. ) ENGINE = InnoDB
  132. DEFAULT CHARSET = utf8;
  133. CREATE TABLE task_host_4
  134. (
  135. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  136. `id` bigint unsigned not null,
  137. `host` varchar(128) not null,
  138. `status` varchar(32) not null,
  139. `stdout` text,
  140. `stderr` text,
  141. UNIQUE KEY (`id`, `host`),
  142. PRIMARY KEY (`ii`)
  143. ) ENGINE = InnoDB
  144. DEFAULT CHARSET = utf8;
  145. CREATE TABLE task_host_5
  146. (
  147. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  148. `id` bigint unsigned not null,
  149. `host` varchar(128) not null,
  150. `status` varchar(32) not null,
  151. `stdout` text,
  152. `stderr` text,
  153. UNIQUE KEY (`id`, `host`),
  154. PRIMARY KEY (`ii`)
  155. ) ENGINE = InnoDB
  156. DEFAULT CHARSET = utf8;
  157. CREATE TABLE task_host_6
  158. (
  159. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  160. `id` bigint unsigned not null,
  161. `host` varchar(128) not null,
  162. `status` varchar(32) not null,
  163. `stdout` text,
  164. `stderr` text,
  165. UNIQUE KEY (`id`, `host`),
  166. PRIMARY KEY (`ii`)
  167. ) ENGINE = InnoDB
  168. DEFAULT CHARSET = utf8;
  169. CREATE TABLE task_host_7
  170. (
  171. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  172. `id` bigint unsigned not null,
  173. `host` varchar(128) not null,
  174. `status` varchar(32) not null,
  175. `stdout` text,
  176. `stderr` text,
  177. UNIQUE KEY (`id`, `host`),
  178. PRIMARY KEY (`ii`)
  179. ) ENGINE = InnoDB
  180. DEFAULT CHARSET = utf8;
  181. CREATE TABLE task_host_8
  182. (
  183. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  184. `id` bigint unsigned not null,
  185. `host` varchar(128) not null,
  186. `status` varchar(32) not null,
  187. `stdout` text,
  188. `stderr` text,
  189. UNIQUE KEY (`id`, `host`),
  190. PRIMARY KEY (`ii`)
  191. ) ENGINE = InnoDB
  192. DEFAULT CHARSET = utf8;
  193. CREATE TABLE task_host_9
  194. (
  195. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  196. `id` bigint unsigned not null,
  197. `host` varchar(128) not null,
  198. `status` varchar(32) not null,
  199. `stdout` text,
  200. `stderr` text,
  201. UNIQUE KEY (`id`, `host`),
  202. PRIMARY KEY (`ii`)
  203. ) ENGINE = InnoDB
  204. DEFAULT CHARSET = utf8;
  205. CREATE TABLE task_host_10
  206. (
  207. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  208. `id` bigint unsigned not null,
  209. `host` varchar(128) not null,
  210. `status` varchar(32) not null,
  211. `stdout` text,
  212. `stderr` text,
  213. UNIQUE KEY (`id`, `host`),
  214. PRIMARY KEY (`ii`)
  215. ) ENGINE = InnoDB
  216. DEFAULT CHARSET = utf8;
  217. CREATE TABLE task_host_11
  218. (
  219. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  220. `id` bigint unsigned not null,
  221. `host` varchar(128) not null,
  222. `status` varchar(32) not null,
  223. `stdout` text,
  224. `stderr` text,
  225. UNIQUE KEY (`id`, `host`),
  226. PRIMARY KEY (`ii`)
  227. ) ENGINE = InnoDB
  228. DEFAULT CHARSET = utf8;
  229. CREATE TABLE task_host_12
  230. (
  231. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  232. `id` bigint unsigned not null,
  233. `host` varchar(128) not null,
  234. `status` varchar(32) not null,
  235. `stdout` text,
  236. `stderr` text,
  237. UNIQUE KEY (`id`, `host`),
  238. PRIMARY KEY (`ii`)
  239. ) ENGINE = InnoDB
  240. DEFAULT CHARSET = utf8;
  241. CREATE TABLE task_host_13
  242. (
  243. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  244. `id` bigint unsigned not null,
  245. `host` varchar(128) not null,
  246. `status` varchar(32) not null,
  247. `stdout` text,
  248. `stderr` text,
  249. UNIQUE KEY (`id`, `host`),
  250. PRIMARY KEY (`ii`)
  251. ) ENGINE = InnoDB
  252. DEFAULT CHARSET = utf8;
  253. CREATE TABLE task_host_14
  254. (
  255. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  256. `id` bigint unsigned not null,
  257. `host` varchar(128) not null,
  258. `status` varchar(32) not null,
  259. `stdout` text,
  260. `stderr` text,
  261. UNIQUE KEY (`id`, `host`),
  262. PRIMARY KEY (`ii`)
  263. ) ENGINE = InnoDB
  264. DEFAULT CHARSET = utf8;
  265. CREATE TABLE task_host_15
  266. (
  267. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  268. `id` bigint unsigned not null,
  269. `host` varchar(128) not null,
  270. `status` varchar(32) not null,
  271. `stdout` text,
  272. `stderr` text,
  273. UNIQUE KEY (`id`, `host`),
  274. PRIMARY KEY (`ii`)
  275. ) ENGINE = InnoDB
  276. DEFAULT CHARSET = utf8;
  277. CREATE TABLE task_host_16
  278. (
  279. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  280. `id` bigint unsigned not null,
  281. `host` varchar(128) not null,
  282. `status` varchar(32) not null,
  283. `stdout` text,
  284. `stderr` text,
  285. UNIQUE KEY (`id`, `host`),
  286. PRIMARY KEY (`ii`)
  287. ) ENGINE = InnoDB
  288. DEFAULT CHARSET = utf8;
  289. CREATE TABLE task_host_17
  290. (
  291. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  292. `id` bigint unsigned not null,
  293. `host` varchar(128) not null,
  294. `status` varchar(32) not null,
  295. `stdout` text,
  296. `stderr` text,
  297. UNIQUE KEY (`id`, `host`),
  298. PRIMARY KEY (`ii`)
  299. ) ENGINE = InnoDB
  300. DEFAULT CHARSET = utf8;
  301. CREATE TABLE task_host_18
  302. (
  303. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  304. `id` bigint unsigned not null,
  305. `host` varchar(128) not null,
  306. `status` varchar(32) not null,
  307. `stdout` text,
  308. `stderr` text,
  309. UNIQUE KEY (`id`, `host`),
  310. PRIMARY KEY (`ii`)
  311. ) ENGINE = InnoDB
  312. DEFAULT CHARSET = utf8;
  313. CREATE TABLE task_host_19
  314. (
  315. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  316. `id` bigint unsigned not null,
  317. `host` varchar(128) not null,
  318. `status` varchar(32) not null,
  319. `stdout` text,
  320. `stderr` text,
  321. UNIQUE KEY (`id`, `host`),
  322. PRIMARY KEY (`ii`)
  323. ) ENGINE = InnoDB
  324. DEFAULT CHARSET = utf8;
  325. CREATE TABLE task_host_20
  326. (
  327. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  328. `id` bigint unsigned not null,
  329. `host` varchar(128) not null,
  330. `status` varchar(32) not null,
  331. `stdout` text,
  332. `stderr` text,
  333. UNIQUE KEY (`id`, `host`),
  334. PRIMARY KEY (`ii`)
  335. ) ENGINE = InnoDB
  336. DEFAULT CHARSET = utf8;
  337. CREATE TABLE task_host_21
  338. (
  339. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  340. `id` bigint unsigned not null,
  341. `host` varchar(128) not null,
  342. `status` varchar(32) not null,
  343. `stdout` text,
  344. `stderr` text,
  345. UNIQUE KEY (`id`, `host`),
  346. PRIMARY KEY (`ii`)
  347. ) ENGINE = InnoDB
  348. DEFAULT CHARSET = utf8;
  349. CREATE TABLE task_host_22
  350. (
  351. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  352. `id` bigint unsigned not null,
  353. `host` varchar(128) not null,
  354. `status` varchar(32) not null,
  355. `stdout` text,
  356. `stderr` text,
  357. UNIQUE KEY (`id`, `host`),
  358. PRIMARY KEY (`ii`)
  359. ) ENGINE = InnoDB
  360. DEFAULT CHARSET = utf8;
  361. CREATE TABLE task_host_23
  362. (
  363. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  364. `id` bigint unsigned not null,
  365. `host` varchar(128) not null,
  366. `status` varchar(32) not null,
  367. `stdout` text,
  368. `stderr` text,
  369. UNIQUE KEY (`id`, `host`),
  370. PRIMARY KEY (`ii`)
  371. ) ENGINE = InnoDB
  372. DEFAULT CHARSET = utf8;
  373. CREATE TABLE task_host_24
  374. (
  375. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  376. `id` bigint unsigned not null,
  377. `host` varchar(128) not null,
  378. `status` varchar(32) not null,
  379. `stdout` text,
  380. `stderr` text,
  381. UNIQUE KEY (`id`, `host`),
  382. PRIMARY KEY (`ii`)
  383. ) ENGINE = InnoDB
  384. DEFAULT CHARSET = utf8;
  385. CREATE TABLE task_host_25
  386. (
  387. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  388. `id` bigint unsigned not null,
  389. `host` varchar(128) not null,
  390. `status` varchar(32) not null,
  391. `stdout` text,
  392. `stderr` text,
  393. UNIQUE KEY (`id`, `host`),
  394. PRIMARY KEY (`ii`)
  395. ) ENGINE = InnoDB
  396. DEFAULT CHARSET = utf8;
  397. CREATE TABLE task_host_26
  398. (
  399. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  400. `id` bigint unsigned not null,
  401. `host` varchar(128) not null,
  402. `status` varchar(32) not null,
  403. `stdout` text,
  404. `stderr` text,
  405. UNIQUE KEY (`id`, `host`),
  406. PRIMARY KEY (`ii`)
  407. ) ENGINE = InnoDB
  408. DEFAULT CHARSET = utf8;
  409. CREATE TABLE task_host_27
  410. (
  411. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  412. `id` bigint unsigned not null,
  413. `host` varchar(128) not null,
  414. `status` varchar(32) not null,
  415. `stdout` text,
  416. `stderr` text,
  417. UNIQUE KEY (`id`, `host`),
  418. PRIMARY KEY (`ii`)
  419. ) ENGINE = InnoDB
  420. DEFAULT CHARSET = utf8;
  421. CREATE TABLE task_host_28
  422. (
  423. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  424. `id` bigint unsigned not null,
  425. `host` varchar(128) not null,
  426. `status` varchar(32) not null,
  427. `stdout` text,
  428. `stderr` text,
  429. UNIQUE KEY (`id`, `host`),
  430. PRIMARY KEY (`ii`)
  431. ) ENGINE = InnoDB
  432. DEFAULT CHARSET = utf8;
  433. CREATE TABLE task_host_29
  434. (
  435. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  436. `id` bigint unsigned not null,
  437. `host` varchar(128) not null,
  438. `status` varchar(32) not null,
  439. `stdout` text,
  440. `stderr` text,
  441. UNIQUE KEY (`id`, `host`),
  442. PRIMARY KEY (`ii`)
  443. ) ENGINE = InnoDB
  444. DEFAULT CHARSET = utf8;
  445. CREATE TABLE task_host_30
  446. (
  447. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  448. `id` bigint unsigned not null,
  449. `host` varchar(128) not null,
  450. `status` varchar(32) not null,
  451. `stdout` text,
  452. `stderr` text,
  453. UNIQUE KEY (`id`, `host`),
  454. PRIMARY KEY (`ii`)
  455. ) ENGINE = InnoDB
  456. DEFAULT CHARSET = utf8;
  457. CREATE TABLE task_host_31
  458. (
  459. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  460. `id` bigint unsigned not null,
  461. `host` varchar(128) not null,
  462. `status` varchar(32) not null,
  463. `stdout` text,
  464. `stderr` text,
  465. UNIQUE KEY (`id`, `host`),
  466. PRIMARY KEY (`ii`)
  467. ) ENGINE = InnoDB
  468. DEFAULT CHARSET = utf8;
  469. CREATE TABLE task_host_32
  470. (
  471. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  472. `id` bigint unsigned not null,
  473. `host` varchar(128) not null,
  474. `status` varchar(32) not null,
  475. `stdout` text,
  476. `stderr` text,
  477. UNIQUE KEY (`id`, `host`),
  478. PRIMARY KEY (`ii`)
  479. ) ENGINE = InnoDB
  480. DEFAULT CHARSET = utf8;
  481. CREATE TABLE task_host_33
  482. (
  483. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  484. `id` bigint unsigned not null,
  485. `host` varchar(128) not null,
  486. `status` varchar(32) not null,
  487. `stdout` text,
  488. `stderr` text,
  489. UNIQUE KEY (`id`, `host`),
  490. PRIMARY KEY (`ii`)
  491. ) ENGINE = InnoDB
  492. DEFAULT CHARSET = utf8;
  493. CREATE TABLE task_host_34
  494. (
  495. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  496. `id` bigint unsigned not null,
  497. `host` varchar(128) not null,
  498. `status` varchar(32) not null,
  499. `stdout` text,
  500. `stderr` text,
  501. UNIQUE KEY (`id`, `host`),
  502. PRIMARY KEY (`ii`)
  503. ) ENGINE = InnoDB
  504. DEFAULT CHARSET = utf8;
  505. CREATE TABLE task_host_35
  506. (
  507. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  508. `id` bigint unsigned not null,
  509. `host` varchar(128) not null,
  510. `status` varchar(32) not null,
  511. `stdout` text,
  512. `stderr` text,
  513. UNIQUE KEY (`id`, `host`),
  514. PRIMARY KEY (`ii`)
  515. ) ENGINE = InnoDB
  516. DEFAULT CHARSET = utf8;
  517. CREATE TABLE task_host_36
  518. (
  519. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  520. `id` bigint unsigned not null,
  521. `host` varchar(128) not null,
  522. `status` varchar(32) not null,
  523. `stdout` text,
  524. `stderr` text,
  525. UNIQUE KEY (`id`, `host`),
  526. PRIMARY KEY (`ii`)
  527. ) ENGINE = InnoDB
  528. DEFAULT CHARSET = utf8;
  529. CREATE TABLE task_host_37
  530. (
  531. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  532. `id` bigint unsigned not null,
  533. `host` varchar(128) not null,
  534. `status` varchar(32) not null,
  535. `stdout` text,
  536. `stderr` text,
  537. UNIQUE KEY (`id`, `host`),
  538. PRIMARY KEY (`ii`)
  539. ) ENGINE = InnoDB
  540. DEFAULT CHARSET = utf8;
  541. CREATE TABLE task_host_38
  542. (
  543. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  544. `id` bigint unsigned not null,
  545. `host` varchar(128) not null,
  546. `status` varchar(32) not null,
  547. `stdout` text,
  548. `stderr` text,
  549. UNIQUE KEY (`id`, `host`),
  550. PRIMARY KEY (`ii`)
  551. ) ENGINE = InnoDB
  552. DEFAULT CHARSET = utf8;
  553. CREATE TABLE task_host_39
  554. (
  555. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  556. `id` bigint unsigned not null,
  557. `host` varchar(128) not null,
  558. `status` varchar(32) not null,
  559. `stdout` text,
  560. `stderr` text,
  561. UNIQUE KEY (`id`, `host`),
  562. PRIMARY KEY (`ii`)
  563. ) ENGINE = InnoDB
  564. DEFAULT CHARSET = utf8;
  565. CREATE TABLE task_host_40
  566. (
  567. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  568. `id` bigint unsigned not null,
  569. `host` varchar(128) not null,
  570. `status` varchar(32) not null,
  571. `stdout` text,
  572. `stderr` text,
  573. UNIQUE KEY (`id`, `host`),
  574. PRIMARY KEY (`ii`)
  575. ) ENGINE = InnoDB
  576. DEFAULT CHARSET = utf8;
  577. CREATE TABLE task_host_41
  578. (
  579. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  580. `id` bigint unsigned not null,
  581. `host` varchar(128) not null,
  582. `status` varchar(32) not null,
  583. `stdout` text,
  584. `stderr` text,
  585. UNIQUE KEY (`id`, `host`),
  586. PRIMARY KEY (`ii`)
  587. ) ENGINE = InnoDB
  588. DEFAULT CHARSET = utf8;
  589. CREATE TABLE task_host_42
  590. (
  591. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  592. `id` bigint unsigned not null,
  593. `host` varchar(128) not null,
  594. `status` varchar(32) not null,
  595. `stdout` text,
  596. `stderr` text,
  597. UNIQUE KEY (`id`, `host`),
  598. PRIMARY KEY (`ii`)
  599. ) ENGINE = InnoDB
  600. DEFAULT CHARSET = utf8;
  601. CREATE TABLE task_host_43
  602. (
  603. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  604. `id` bigint unsigned not null,
  605. `host` varchar(128) not null,
  606. `status` varchar(32) not null,
  607. `stdout` text,
  608. `stderr` text,
  609. UNIQUE KEY (`id`, `host`),
  610. PRIMARY KEY (`ii`)
  611. ) ENGINE = InnoDB
  612. DEFAULT CHARSET = utf8;
  613. CREATE TABLE task_host_44
  614. (
  615. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  616. `id` bigint unsigned not null,
  617. `host` varchar(128) not null,
  618. `status` varchar(32) not null,
  619. `stdout` text,
  620. `stderr` text,
  621. UNIQUE KEY (`id`, `host`),
  622. PRIMARY KEY (`ii`)
  623. ) ENGINE = InnoDB
  624. DEFAULT CHARSET = utf8;
  625. CREATE TABLE task_host_45
  626. (
  627. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  628. `id` bigint unsigned not null,
  629. `host` varchar(128) not null,
  630. `status` varchar(32) not null,
  631. `stdout` text,
  632. `stderr` text,
  633. UNIQUE KEY (`id`, `host`),
  634. PRIMARY KEY (`ii`)
  635. ) ENGINE = InnoDB
  636. DEFAULT CHARSET = utf8;
  637. CREATE TABLE task_host_46
  638. (
  639. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  640. `id` bigint unsigned not null,
  641. `host` varchar(128) not null,
  642. `status` varchar(32) not null,
  643. `stdout` text,
  644. `stderr` text,
  645. UNIQUE KEY (`id`, `host`),
  646. PRIMARY KEY (`ii`)
  647. ) ENGINE = InnoDB
  648. DEFAULT CHARSET = utf8;
  649. CREATE TABLE task_host_47
  650. (
  651. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  652. `id` bigint unsigned not null,
  653. `host` varchar(128) not null,
  654. `status` varchar(32) not null,
  655. `stdout` text,
  656. `stderr` text,
  657. UNIQUE KEY (`id`, `host`),
  658. PRIMARY KEY (`ii`)
  659. ) ENGINE = InnoDB
  660. DEFAULT CHARSET = utf8;
  661. CREATE TABLE task_host_48
  662. (
  663. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  664. `id` bigint unsigned not null,
  665. `host` varchar(128) not null,
  666. `status` varchar(32) not null,
  667. `stdout` text,
  668. `stderr` text,
  669. UNIQUE KEY (`id`, `host`),
  670. PRIMARY KEY (`ii`)
  671. ) ENGINE = InnoDB
  672. DEFAULT CHARSET = utf8;
  673. CREATE TABLE task_host_49
  674. (
  675. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  676. `id` bigint unsigned not null,
  677. `host` varchar(128) not null,
  678. `status` varchar(32) not null,
  679. `stdout` text,
  680. `stderr` text,
  681. UNIQUE KEY (`id`, `host`),
  682. PRIMARY KEY (`ii`)
  683. ) ENGINE = InnoDB
  684. DEFAULT CHARSET = utf8;
  685. CREATE TABLE task_host_50
  686. (
  687. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  688. `id` bigint unsigned not null,
  689. `host` varchar(128) not null,
  690. `status` varchar(32) not null,
  691. `stdout` text,
  692. `stderr` text,
  693. UNIQUE KEY (`id`, `host`),
  694. PRIMARY KEY (`ii`)
  695. ) ENGINE = InnoDB
  696. DEFAULT CHARSET = utf8;
  697. CREATE TABLE task_host_51
  698. (
  699. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  700. `id` bigint unsigned not null,
  701. `host` varchar(128) not null,
  702. `status` varchar(32) not null,
  703. `stdout` text,
  704. `stderr` text,
  705. UNIQUE KEY (`id`, `host`),
  706. PRIMARY KEY (`ii`)
  707. ) ENGINE = InnoDB
  708. DEFAULT CHARSET = utf8;
  709. CREATE TABLE task_host_52
  710. (
  711. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  712. `id` bigint unsigned not null,
  713. `host` varchar(128) not null,
  714. `status` varchar(32) not null,
  715. `stdout` text,
  716. `stderr` text,
  717. UNIQUE KEY (`id`, `host`),
  718. PRIMARY KEY (`ii`)
  719. ) ENGINE = InnoDB
  720. DEFAULT CHARSET = utf8;
  721. CREATE TABLE task_host_53
  722. (
  723. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  724. `id` bigint unsigned not null,
  725. `host` varchar(128) not null,
  726. `status` varchar(32) not null,
  727. `stdout` text,
  728. `stderr` text,
  729. UNIQUE KEY (`id`, `host`),
  730. PRIMARY KEY (`ii`)
  731. ) ENGINE = InnoDB
  732. DEFAULT CHARSET = utf8;
  733. CREATE TABLE task_host_54
  734. (
  735. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  736. `id` bigint unsigned not null,
  737. `host` varchar(128) not null,
  738. `status` varchar(32) not null,
  739. `stdout` text,
  740. `stderr` text,
  741. UNIQUE KEY (`id`, `host`),
  742. PRIMARY KEY (`ii`)
  743. ) ENGINE = InnoDB
  744. DEFAULT CHARSET = utf8;
  745. CREATE TABLE task_host_55
  746. (
  747. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  748. `id` bigint unsigned not null,
  749. `host` varchar(128) not null,
  750. `status` varchar(32) not null,
  751. `stdout` text,
  752. `stderr` text,
  753. UNIQUE KEY (`id`, `host`),
  754. PRIMARY KEY (`ii`)
  755. ) ENGINE = InnoDB
  756. DEFAULT CHARSET = utf8;
  757. CREATE TABLE task_host_56
  758. (
  759. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  760. `id` bigint unsigned not null,
  761. `host` varchar(128) not null,
  762. `status` varchar(32) not null,
  763. `stdout` text,
  764. `stderr` text,
  765. UNIQUE KEY (`id`, `host`),
  766. PRIMARY KEY (`ii`)
  767. ) ENGINE = InnoDB
  768. DEFAULT CHARSET = utf8;
  769. CREATE TABLE task_host_57
  770. (
  771. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  772. `id` bigint unsigned not null,
  773. `host` varchar(128) not null,
  774. `status` varchar(32) not null,
  775. `stdout` text,
  776. `stderr` text,
  777. UNIQUE KEY (`id`, `host`),
  778. PRIMARY KEY (`ii`)
  779. ) ENGINE = InnoDB
  780. DEFAULT CHARSET = utf8;
  781. CREATE TABLE task_host_58
  782. (
  783. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  784. `id` bigint unsigned not null,
  785. `host` varchar(128) not null,
  786. `status` varchar(32) not null,
  787. `stdout` text,
  788. `stderr` text,
  789. UNIQUE KEY (`id`, `host`),
  790. PRIMARY KEY (`ii`)
  791. ) ENGINE = InnoDB
  792. DEFAULT CHARSET = utf8;
  793. CREATE TABLE task_host_59
  794. (
  795. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  796. `id` bigint unsigned not null,
  797. `host` varchar(128) not null,
  798. `status` varchar(32) not null,
  799. `stdout` text,
  800. `stderr` text,
  801. UNIQUE KEY (`id`, `host`),
  802. PRIMARY KEY (`ii`)
  803. ) ENGINE = InnoDB
  804. DEFAULT CHARSET = utf8;
  805. CREATE TABLE task_host_60
  806. (
  807. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  808. `id` bigint unsigned not null,
  809. `host` varchar(128) not null,
  810. `status` varchar(32) not null,
  811. `stdout` text,
  812. `stderr` text,
  813. UNIQUE KEY (`id`, `host`),
  814. PRIMARY KEY (`ii`)
  815. ) ENGINE = InnoDB
  816. DEFAULT CHARSET = utf8;
  817. CREATE TABLE task_host_61
  818. (
  819. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  820. `id` bigint unsigned not null,
  821. `host` varchar(128) not null,
  822. `status` varchar(32) not null,
  823. `stdout` text,
  824. `stderr` text,
  825. UNIQUE KEY (`id`, `host`),
  826. PRIMARY KEY (`ii`)
  827. ) ENGINE = InnoDB
  828. DEFAULT CHARSET = utf8;
  829. CREATE TABLE task_host_62
  830. (
  831. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  832. `id` bigint unsigned not null,
  833. `host` varchar(128) not null,
  834. `status` varchar(32) not null,
  835. `stdout` text,
  836. `stderr` text,
  837. UNIQUE KEY (`id`, `host`),
  838. PRIMARY KEY (`ii`)
  839. ) ENGINE = InnoDB
  840. DEFAULT CHARSET = utf8;
  841. CREATE TABLE task_host_63
  842. (
  843. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  844. `id` bigint unsigned not null,
  845. `host` varchar(128) not null,
  846. `status` varchar(32) not null,
  847. `stdout` text,
  848. `stderr` text,
  849. UNIQUE KEY (`id`, `host`),
  850. PRIMARY KEY (`ii`)
  851. ) ENGINE = InnoDB
  852. DEFAULT CHARSET = utf8;
  853. CREATE TABLE task_host_64
  854. (
  855. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  856. `id` bigint unsigned not null,
  857. `host` varchar(128) not null,
  858. `status` varchar(32) not null,
  859. `stdout` text,
  860. `stderr` text,
  861. UNIQUE KEY (`id`, `host`),
  862. PRIMARY KEY (`ii`)
  863. ) ENGINE = InnoDB
  864. DEFAULT CHARSET = utf8;
  865. CREATE TABLE task_host_65
  866. (
  867. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  868. `id` bigint unsigned not null,
  869. `host` varchar(128) not null,
  870. `status` varchar(32) not null,
  871. `stdout` text,
  872. `stderr` text,
  873. UNIQUE KEY (`id`, `host`),
  874. PRIMARY KEY (`ii`)
  875. ) ENGINE = InnoDB
  876. DEFAULT CHARSET = utf8;
  877. CREATE TABLE task_host_66
  878. (
  879. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  880. `id` bigint unsigned not null,
  881. `host` varchar(128) not null,
  882. `status` varchar(32) not null,
  883. `stdout` text,
  884. `stderr` text,
  885. UNIQUE KEY (`id`, `host`),
  886. PRIMARY KEY (`ii`)
  887. ) ENGINE = InnoDB
  888. DEFAULT CHARSET = utf8;
  889. CREATE TABLE task_host_67
  890. (
  891. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  892. `id` bigint unsigned not null,
  893. `host` varchar(128) not null,
  894. `status` varchar(32) not null,
  895. `stdout` text,
  896. `stderr` text,
  897. UNIQUE KEY (`id`, `host`),
  898. PRIMARY KEY (`ii`)
  899. ) ENGINE = InnoDB
  900. DEFAULT CHARSET = utf8;
  901. CREATE TABLE task_host_68
  902. (
  903. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  904. `id` bigint unsigned not null,
  905. `host` varchar(128) not null,
  906. `status` varchar(32) not null,
  907. `stdout` text,
  908. `stderr` text,
  909. UNIQUE KEY (`id`, `host`),
  910. PRIMARY KEY (`ii`)
  911. ) ENGINE = InnoDB
  912. DEFAULT CHARSET = utf8;
  913. CREATE TABLE task_host_69
  914. (
  915. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  916. `id` bigint unsigned not null,
  917. `host` varchar(128) not null,
  918. `status` varchar(32) not null,
  919. `stdout` text,
  920. `stderr` text,
  921. UNIQUE KEY (`id`, `host`),
  922. PRIMARY KEY (`ii`)
  923. ) ENGINE = InnoDB
  924. DEFAULT CHARSET = utf8;
  925. CREATE TABLE task_host_70
  926. (
  927. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  928. `id` bigint unsigned not null,
  929. `host` varchar(128) not null,
  930. `status` varchar(32) not null,
  931. `stdout` text,
  932. `stderr` text,
  933. UNIQUE KEY (`id`, `host`),
  934. PRIMARY KEY (`ii`)
  935. ) ENGINE = InnoDB
  936. DEFAULT CHARSET = utf8;
  937. CREATE TABLE task_host_71
  938. (
  939. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  940. `id` bigint unsigned not null,
  941. `host` varchar(128) not null,
  942. `status` varchar(32) not null,
  943. `stdout` text,
  944. `stderr` text,
  945. UNIQUE KEY (`id`, `host`),
  946. PRIMARY KEY (`ii`)
  947. ) ENGINE = InnoDB
  948. DEFAULT CHARSET = utf8;
  949. CREATE TABLE task_host_72
  950. (
  951. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  952. `id` bigint unsigned not null,
  953. `host` varchar(128) not null,
  954. `status` varchar(32) not null,
  955. `stdout` text,
  956. `stderr` text,
  957. UNIQUE KEY (`id`, `host`),
  958. PRIMARY KEY (`ii`)
  959. ) ENGINE = InnoDB
  960. DEFAULT CHARSET = utf8;
  961. CREATE TABLE task_host_73
  962. (
  963. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  964. `id` bigint unsigned not null,
  965. `host` varchar(128) not null,
  966. `status` varchar(32) not null,
  967. `stdout` text,
  968. `stderr` text,
  969. UNIQUE KEY (`id`, `host`),
  970. PRIMARY KEY (`ii`)
  971. ) ENGINE = InnoDB
  972. DEFAULT CHARSET = utf8;
  973. CREATE TABLE task_host_74
  974. (
  975. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  976. `id` bigint unsigned not null,
  977. `host` varchar(128) not null,
  978. `status` varchar(32) not null,
  979. `stdout` text,
  980. `stderr` text,
  981. UNIQUE KEY (`id`, `host`),
  982. PRIMARY KEY (`ii`)
  983. ) ENGINE = InnoDB
  984. DEFAULT CHARSET = utf8;
  985. CREATE TABLE task_host_75
  986. (
  987. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  988. `id` bigint unsigned not null,
  989. `host` varchar(128) not null,
  990. `status` varchar(32) not null,
  991. `stdout` text,
  992. `stderr` text,
  993. UNIQUE KEY (`id`, `host`),
  994. PRIMARY KEY (`ii`)
  995. ) ENGINE = InnoDB
  996. DEFAULT CHARSET = utf8;
  997. CREATE TABLE task_host_76
  998. (
  999. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1000. `id` bigint unsigned not null,
  1001. `host` varchar(128) not null,
  1002. `status` varchar(32) not null,
  1003. `stdout` text,
  1004. `stderr` text,
  1005. UNIQUE KEY (`id`, `host`),
  1006. PRIMARY KEY (`ii`)
  1007. ) ENGINE = InnoDB
  1008. DEFAULT CHARSET = utf8;
  1009. CREATE TABLE task_host_77
  1010. (
  1011. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1012. `id` bigint unsigned not null,
  1013. `host` varchar(128) not null,
  1014. `status` varchar(32) not null,
  1015. `stdout` text,
  1016. `stderr` text,
  1017. UNIQUE KEY (`id`, `host`),
  1018. PRIMARY KEY (`ii`)
  1019. ) ENGINE = InnoDB
  1020. DEFAULT CHARSET = utf8;
  1021. CREATE TABLE task_host_78
  1022. (
  1023. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1024. `id` bigint unsigned not null,
  1025. `host` varchar(128) not null,
  1026. `status` varchar(32) not null,
  1027. `stdout` text,
  1028. `stderr` text,
  1029. UNIQUE KEY (`id`, `host`),
  1030. PRIMARY KEY (`ii`)
  1031. ) ENGINE = InnoDB
  1032. DEFAULT CHARSET = utf8;
  1033. CREATE TABLE task_host_79
  1034. (
  1035. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1036. `id` bigint unsigned not null,
  1037. `host` varchar(128) not null,
  1038. `status` varchar(32) not null,
  1039. `stdout` text,
  1040. `stderr` text,
  1041. UNIQUE KEY (`id`, `host`),
  1042. PRIMARY KEY (`ii`)
  1043. ) ENGINE = InnoDB
  1044. DEFAULT CHARSET = utf8;
  1045. CREATE TABLE task_host_80
  1046. (
  1047. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1048. `id` bigint unsigned not null,
  1049. `host` varchar(128) not null,
  1050. `status` varchar(32) not null,
  1051. `stdout` text,
  1052. `stderr` text,
  1053. UNIQUE KEY (`id`, `host`),
  1054. PRIMARY KEY (`ii`)
  1055. ) ENGINE = InnoDB
  1056. DEFAULT CHARSET = utf8;
  1057. CREATE TABLE task_host_81
  1058. (
  1059. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1060. `id` bigint unsigned not null,
  1061. `host` varchar(128) not null,
  1062. `status` varchar(32) not null,
  1063. `stdout` text,
  1064. `stderr` text,
  1065. UNIQUE KEY (`id`, `host`),
  1066. PRIMARY KEY (`ii`)
  1067. ) ENGINE = InnoDB
  1068. DEFAULT CHARSET = utf8;
  1069. CREATE TABLE task_host_82
  1070. (
  1071. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1072. `id` bigint unsigned not null,
  1073. `host` varchar(128) not null,
  1074. `status` varchar(32) not null,
  1075. `stdout` text,
  1076. `stderr` text,
  1077. UNIQUE KEY (`id`, `host`),
  1078. PRIMARY KEY (`ii`)
  1079. ) ENGINE = InnoDB
  1080. DEFAULT CHARSET = utf8;
  1081. CREATE TABLE task_host_83
  1082. (
  1083. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1084. `id` bigint unsigned not null,
  1085. `host` varchar(128) not null,
  1086. `status` varchar(32) not null,
  1087. `stdout` text,
  1088. `stderr` text,
  1089. UNIQUE KEY (`id`, `host`),
  1090. PRIMARY KEY (`ii`)
  1091. ) ENGINE = InnoDB
  1092. DEFAULT CHARSET = utf8;
  1093. CREATE TABLE task_host_84
  1094. (
  1095. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1096. `id` bigint unsigned not null,
  1097. `host` varchar(128) not null,
  1098. `status` varchar(32) not null,
  1099. `stdout` text,
  1100. `stderr` text,
  1101. UNIQUE KEY (`id`, `host`),
  1102. PRIMARY KEY (`ii`)
  1103. ) ENGINE = InnoDB
  1104. DEFAULT CHARSET = utf8;
  1105. CREATE TABLE task_host_85
  1106. (
  1107. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1108. `id` bigint unsigned not null,
  1109. `host` varchar(128) not null,
  1110. `status` varchar(32) not null,
  1111. `stdout` text,
  1112. `stderr` text,
  1113. UNIQUE KEY (`id`, `host`),
  1114. PRIMARY KEY (`ii`)
  1115. ) ENGINE = InnoDB
  1116. DEFAULT CHARSET = utf8;
  1117. CREATE TABLE task_host_86
  1118. (
  1119. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1120. `id` bigint unsigned not null,
  1121. `host` varchar(128) not null,
  1122. `status` varchar(32) not null,
  1123. `stdout` text,
  1124. `stderr` text,
  1125. UNIQUE KEY (`id`, `host`),
  1126. PRIMARY KEY (`ii`)
  1127. ) ENGINE = InnoDB
  1128. DEFAULT CHARSET = utf8;
  1129. CREATE TABLE task_host_87
  1130. (
  1131. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1132. `id` bigint unsigned not null,
  1133. `host` varchar(128) not null,
  1134. `status` varchar(32) not null,
  1135. `stdout` text,
  1136. `stderr` text,
  1137. UNIQUE KEY (`id`, `host`),
  1138. PRIMARY KEY (`ii`)
  1139. ) ENGINE = InnoDB
  1140. DEFAULT CHARSET = utf8;
  1141. CREATE TABLE task_host_88
  1142. (
  1143. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1144. `id` bigint unsigned not null,
  1145. `host` varchar(128) not null,
  1146. `status` varchar(32) not null,
  1147. `stdout` text,
  1148. `stderr` text,
  1149. UNIQUE KEY (`id`, `host`),
  1150. PRIMARY KEY (`ii`)
  1151. ) ENGINE = InnoDB
  1152. DEFAULT CHARSET = utf8;
  1153. CREATE TABLE task_host_89
  1154. (
  1155. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1156. `id` bigint unsigned not null,
  1157. `host` varchar(128) not null,
  1158. `status` varchar(32) not null,
  1159. `stdout` text,
  1160. `stderr` text,
  1161. UNIQUE KEY (`id`, `host`),
  1162. PRIMARY KEY (`ii`)
  1163. ) ENGINE = InnoDB
  1164. DEFAULT CHARSET = utf8;
  1165. CREATE TABLE task_host_90
  1166. (
  1167. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1168. `id` bigint unsigned not null,
  1169. `host` varchar(128) not null,
  1170. `status` varchar(32) not null,
  1171. `stdout` text,
  1172. `stderr` text,
  1173. UNIQUE KEY (`id`, `host`),
  1174. PRIMARY KEY (`ii`)
  1175. ) ENGINE = InnoDB
  1176. DEFAULT CHARSET = utf8;
  1177. CREATE TABLE task_host_91
  1178. (
  1179. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1180. `id` bigint unsigned not null,
  1181. `host` varchar(128) not null,
  1182. `status` varchar(32) not null,
  1183. `stdout` text,
  1184. `stderr` text,
  1185. UNIQUE KEY (`id`, `host`),
  1186. PRIMARY KEY (`ii`)
  1187. ) ENGINE = InnoDB
  1188. DEFAULT CHARSET = utf8;
  1189. CREATE TABLE task_host_92
  1190. (
  1191. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1192. `id` bigint unsigned not null,
  1193. `host` varchar(128) not null,
  1194. `status` varchar(32) not null,
  1195. `stdout` text,
  1196. `stderr` text,
  1197. UNIQUE KEY (`id`, `host`),
  1198. PRIMARY KEY (`ii`)
  1199. ) ENGINE = InnoDB
  1200. DEFAULT CHARSET = utf8;
  1201. CREATE TABLE task_host_93
  1202. (
  1203. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1204. `id` bigint unsigned not null,
  1205. `host` varchar(128) not null,
  1206. `status` varchar(32) not null,
  1207. `stdout` text,
  1208. `stderr` text,
  1209. UNIQUE KEY (`id`, `host`),
  1210. PRIMARY KEY (`ii`)
  1211. ) ENGINE = InnoDB
  1212. DEFAULT CHARSET = utf8;
  1213. CREATE TABLE task_host_94
  1214. (
  1215. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1216. `id` bigint unsigned not null,
  1217. `host` varchar(128) not null,
  1218. `status` varchar(32) not null,
  1219. `stdout` text,
  1220. `stderr` text,
  1221. UNIQUE KEY (`id`, `host`),
  1222. PRIMARY KEY (`ii`)
  1223. ) ENGINE = InnoDB
  1224. DEFAULT CHARSET = utf8;
  1225. CREATE TABLE task_host_95
  1226. (
  1227. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1228. `id` bigint unsigned not null,
  1229. `host` varchar(128) not null,
  1230. `status` varchar(32) not null,
  1231. `stdout` text,
  1232. `stderr` text,
  1233. UNIQUE KEY (`id`, `host`),
  1234. PRIMARY KEY (`ii`)
  1235. ) ENGINE = InnoDB
  1236. DEFAULT CHARSET = utf8;
  1237. CREATE TABLE task_host_96
  1238. (
  1239. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1240. `id` bigint unsigned not null,
  1241. `host` varchar(128) not null,
  1242. `status` varchar(32) not null,
  1243. `stdout` text,
  1244. `stderr` text,
  1245. UNIQUE KEY (`id`, `host`),
  1246. PRIMARY KEY (`ii`)
  1247. ) ENGINE = InnoDB
  1248. DEFAULT CHARSET = utf8;
  1249. CREATE TABLE task_host_97
  1250. (
  1251. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1252. `id` bigint unsigned not null,
  1253. `host` varchar(128) not null,
  1254. `status` varchar(32) not null,
  1255. `stdout` text,
  1256. `stderr` text,
  1257. UNIQUE KEY (`id`, `host`),
  1258. PRIMARY KEY (`ii`)
  1259. ) ENGINE = InnoDB
  1260. DEFAULT CHARSET = utf8;
  1261. CREATE TABLE task_host_98
  1262. (
  1263. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1264. `id` bigint unsigned not null,
  1265. `host` varchar(128) not null,
  1266. `status` varchar(32) not null,
  1267. `stdout` text,
  1268. `stderr` text,
  1269. UNIQUE KEY (`id`, `host`),
  1270. PRIMARY KEY (`ii`)
  1271. ) ENGINE = InnoDB
  1272. DEFAULT CHARSET = utf8;
  1273. CREATE TABLE task_host_99
  1274. (
  1275. `ii` bigint unsigned NOT NULL AUTO_INCREMENT,
  1276. `id` bigint unsigned not null,
  1277. `host` varchar(128) not null,
  1278. `status` varchar(32) not null,
  1279. `stdout` text,
  1280. `stderr` text,
  1281. UNIQUE KEY (`id`, `host`),
  1282. PRIMARY KEY (`ii`)
  1283. ) ENGINE = InnoDB
  1284. DEFAULT CHARSET = utf8;