Skip to content
Snippets Groups Projects
Commit b93bb293 authored by kfilippopolitis's avatar kfilippopolitis
Browse files

Added migration script to set status to error when the result contains the...

Added migration script to set status to error when the result contains the error types text/plain+error, text/plain+warning, text/plain+user_error
parent 2e90626c
No related branches found
No related tags found
1 merge request!29Added migration script
UPDATE experiment
SET status = 'error'
WHERE
result LIKE '%text/plain+error%'
OR
result LIKE '%text/plain+warning%'
OR
result LIKE '%text/plain+user_error%';
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment