Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
autotest
/
refs/heads/stabilize.59781.98.B
/
.
/
frontend
/
migrations
/
084_convert_metahost_to_label.py
blob: 9fb154cac29a5a6d5df227f81662e433a62361ff [
file
] [
log
] [
blame
] [
edit
]
UP_SQL
=
"""
INSERT INTO afe_jobs_dependency_labels (job_id, label_id)
SELECT job_id, meta_host FROM afe_host_queue_entries
WHERE NOT complete AND NOT active AND status="Queued" AND NOT aborted;
"""
DOWN_SQL
=
"""
"""