1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-24 10:07:21 +02:00

fix mysql syntax error

This commit is contained in:
Brad Rydzewski 2016-05-10 17:17:12 -07:00
parent c76dd06b27
commit cf6bf0763b

View File

@ -2,7 +2,7 @@
ALTER TABLE jobs ADD COLUMN job_error VARCHAR(500);
UPDATE jobs SET job_error = '' job_error = null;
UPDATE jobs SET job_error = '' WHERE job_error = null;
-- +migrate Down