errorMessage -> errorJson

This commit is contained in:
Girish Ramakrishnan
2019-08-30 09:45:43 -07:00
parent f25d5b3304
commit 2585282f86
8 changed files with 25 additions and 22 deletions

View File

@@ -89,7 +89,7 @@ CREATE TABLE IF NOT EXISTS apps(
tagsJson VARCHAR(2048), // array of tags
dataDir VARCHAR(256) UNIQUE,
taskId INTEGER, // current task
errorMessage TEXT,
errorJson TEXT,
FOREIGN KEY(taskId) REFERENCES tasks(id),
PRIMARY KEY(id));