Fix tests

mailboxDomain can be null (even though install/clone currently always
allocate one)
This commit is contained in:
Girish Ramakrishnan
2019-11-19 17:36:05 -08:00
parent 9acf49a99e
commit f919570cea
4 changed files with 5 additions and 5 deletions

View File

@@ -85,7 +85,7 @@ CREATE TABLE IF NOT EXISTS apps(
enableBackup BOOLEAN DEFAULT 1, // misnomer: controls automatic daily backups
enableAutomaticUpdate BOOLEAN DEFAULT 1,
mailboxName VARCHAR(128), // mailbox of this app. default allocated as '.app'
mailboxDomain VARCHAR(128) NOT NULL, // mailbox domain of this apps
mailboxDomain VARCHAR(128), // mailbox domain of this apps
label VARCHAR(128), // display name
tagsJson VARCHAR(2048), // array of tags
dataDir VARCHAR(256) UNIQUE,