newConfig -> updateConfig

This commit is contained in:
Girish Ramakrishnan
2017-11-16 12:36:07 -08:00
parent 98cad0678d
commit f762d0c0a1
6 changed files with 39 additions and 24 deletions

View File

@@ -74,7 +74,7 @@ CREATE TABLE IF NOT EXISTS apps(
// the following fields do not belong here, they can be removed when we use a queue for apptask
lastBackupId VARCHAR(128), // used to pass backupId to restore from to apptask
oldConfigJson TEXT, // used to pass old config for apptask (configure, restore)
newConfigJson TEXT, // used to pass new config for apptask (update)
updateConfigJson TEXT, // used to pass new config for apptask (update)
PRIMARY KEY(id));