Add secrets table

this will hold keys, certs etc
This commit is contained in:
Girish Ramakrishnan
2021-04-30 21:54:53 -07:00
parent a33fdee659
commit 130ef72c9a
5 changed files with 135 additions and 0 deletions
+5
View File
@@ -264,4 +264,9 @@ CREATE TABLE IF NOT EXISTS appMounts(
FOREIGN KEY(appId) REFERENCES apps(id),
FOREIGN KEY(volumeId) REFERENCES volumes(id));
CREATE TABLE IF NOT EXISTS secrets(
name VARCHAR(128) NOT NULL UNIQUE,
value TEXT,
PRIMARY KEY(name));
CHARACTER SET utf8 COLLATE utf8_bin;