Add sso and robotsTxt to app backup config.json

This commit is contained in:
Girish Ramakrishnan
2018-03-05 15:03:03 -08:00
parent 6cadaca307
commit b83eb993d8
2 changed files with 6 additions and 3 deletions

View File

@@ -80,8 +80,8 @@ CREATE TABLE IF NOT EXISTS apps(
// the following fields do not belong here, they can be removed when we use a queue for apptask
restoreConfigJson VARCHAR(256), // used to pass backupId to restore from to apptask
oldConfigJson TEXT, // used to pass old config for apptask (configure, restore)
updateConfigJson TEXT, // used to pass new config for apptask (update)
oldConfigJson TEXT, // used to pass old config to apptask (configure, restore)
updateConfigJson TEXT, // used to pass new config to apptask (update)
FOREIGN KEY(domain) REFERENCES domains(domain),
PRIMARY KEY(id));