• Home
  • Raw
  • Download

Lines Matching +full:- +full:not

27 --
28 -- Table structure for table `planner_plans`
29 --
34 `id` int(11) NOT NULL auto_increment,
35 `name` varchar(255) NOT NULL,
37 `support` longtext NOT NULL,
38 `complete` tinyint(1) NOT NULL,
39 `dirty` tinyint(1) NOT NULL,
46 --
47 -- Table structure for table `planner_test_control_files`
48 --
53 `id` int(11) NOT NULL auto_increment,
54 `the_hash` varchar(40) NOT NULL,
55 `contents` longtext NOT NULL,
61 --
62 -- Table structure for table `planner_test_configs`
63 --
68 `id` int(11) NOT NULL auto_increment,
69 `plan_id` int(11) NOT NULL,
70 `control_file_id` int(11) NOT NULL,
71 `execution_order` int(11) NOT NULL,
72 `alias` varchar(255) NOT NULL,
73 `estimated_runtime` int(11) NOT NULL,
84 --
85 -- Table structure for table `planner_keyvals`
86 --
91 `id` int(11) NOT NULL auto_increment,
92 `the_hash` varchar(40) NOT NULL,
93 `key` varchar(1024) NOT NULL,
94 `value` varchar(1024) NOT NULL,
100 --
101 -- Table structure for table `planner_data_types`
102 --
107 `id` int(11) NOT NULL auto_increment,
108 `name` varchar(255) NOT NULL,
109 `db_table` varchar(255) NOT NULL,
114 --
115 -- Table structure for table `planner_test_jobs`
116 --
121 `id` int(11) NOT NULL auto_increment,
122 `plan_id` int(11) NOT NULL,
123 `test_config_id` int(11) NOT NULL,
124 `afe_job_id` int(11) NOT NULL,
135 --
136 -- Table structure for table `planner_test_configs_skipped_hosts`
137 --
140 testconfig_id INT NOT NULL,
141 host_id INT NOT NULL,
153 --
154 -- Table structure for table `planner_saved_objects`
155 --
160 `id` int(11) NOT NULL auto_increment,
161 `user_id` int(11) NOT NULL,
162 `type` varchar(16) NOT NULL,
163 `name` varchar(255) NOT NULL,
164 `encoded_object` longtext NOT NULL,
172 --
173 -- Table structure for table `planner_plan_owners`
174 --
179 `id` int(11) NOT NULL auto_increment,
180 `plan_id` int(11) NOT NULL,
181 `user_id` int(11) NOT NULL,
190 --
191 -- Table structure for table `planner_plan_host_labels`
192 --
197 `id` int(11) NOT NULL auto_increment,
198 `plan_id` int(11) NOT NULL,
199 `label_id` int(11) NOT NULL,
208 --
209 -- Table structure for table `planner_custom_queries`
210 --
215 `id` int(11) NOT NULL auto_increment,
216 `plan_id` int(11) NOT NULL,
217 `query` longtext NOT NULL,
224 --
225 -- Table structure for table `planner_autoprocess`
226 --
231 `id` int(11) NOT NULL auto_increment,
232 `plan_id` int(11) NOT NULL,
233 `condition` longtext NOT NULL,
234 `enabled` tinyint(1) NOT NULL,
242 --
243 -- Table structure for table `planner_autoprocess_keyvals`
244 --
249 `id` int(11) NOT NULL auto_increment,
250 `autoprocess_id` int(11) NOT NULL,
251 `keyval_id` int(11) NOT NULL,
260 --
261 -- Table structure for table `planner_autoprocess_labels`
262 --
267 `id` int(11) NOT NULL auto_increment,
268 `autoprocess_id` int(11) NOT NULL,
269 `testlabel_id` int(11) NOT NULL,
278 --
279 -- Table structure for table `planner_additional_parameters`
280 --
284 plan_id INT NOT NULL,
285 hostname_regex VARCHAR(255) NOT NULL,
286 param_type VARCHAR(32) NOT NULL,
287 application_order INT NOT NULL
298 --
299 -- Table structure for table `planner_additional_parameter_values`
300 --
304 additional_parameter_id INT NOT NULL,
305 `key` VARCHAR(255) NOT NULL,
306 value VARCHAR(255) NOT NULL
318 --
319 -- Table structure for table `planner_hosts`
320 --
325 `id` int(11) NOT NULL auto_increment,
326 `plan_id` int(11) NOT NULL,
327 `host_id` int(11) NOT NULL,
328 `complete` tinyint(1) NOT NULL,
329 `blocked` tinyint(1) NOT NULL,
339 --
340 -- Table structure for table `planner_bugs`
341 --
346 `id` int(11) NOT NULL auto_increment,
347 `external_uid` varchar(255) NOT NULL,
353 --
354 -- Table structure for table `planner_autoprocess_bugs`
355 --
360 `id` int(11) NOT NULL auto_increment,
361 `autoprocess_id` int(11) NOT NULL,
362 `bug_id` int(11) NOT NULL,
371 --
372 -- Table structure for table `planner_history`
373 --
378 `id` int(11) NOT NULL auto_increment,
379 `plan_id` int(11) NOT NULL,
380 `action_id` int(11) NOT NULL,
381 `user_id` int(11) NOT NULL,
382 `data_type_id` int(11) NOT NULL,
383 `object_id` int(11) NOT NULL,
384 `old_object_repr` longtext NOT NULL,
385 `new_object_repr` longtext NOT NULL,
386 `time` datetime NOT NULL,
397 --
398 -- Table structure for table `planner_test_runs`
399 --
404 `id` int(11) NOT NULL auto_increment,
405 `plan_id` int(11) NOT NULL,
406 `test_job_id` int(11) NOT NULL,
407 `tko_test_id` int(10) unsigned NOT NULL,
408 `status` varchar(16) NOT NULL,
409 `finalized` tinyint(1) NOT NULL,
410 `seen` tinyint(1) NOT NULL,
411 `triaged` tinyint(1) NOT NULL,
412 `host_id` int(11) NOT NULL,
426 --
427 -- Table structure for table `planner_test_run_bugs`
428 --
433 `id` int(11) NOT NULL auto_increment,
434 `testrun_id` int(11) NOT NULL,
435 `bug_id` int(11) NOT NULL,