Add migration script for tlsConfig in domains

This commit is contained in:
Johannes Zellner
2018-01-31 16:51:53 +01:00
parent 5521e17313
commit 2db35e42de
2 changed files with 26 additions and 0 deletions

View File

@@ -154,6 +154,7 @@ CREATE TABLE IF NOT EXISTS domains(
zoneName VARCHAR(128) NOT NULL, /* this mostly contains the domain itself again */
provider VARCHAR(16) NOT NULL,
configJson TEXT, /* JSON containing the dns backend provider config */
tlsConfigJson TEXT, /* JSON containing the tls provider config */
PRIMARY KEY (domain))