after some more thought: * If app moves to another location, user has to remember to move all this config * It's not really associated with an app. It's to do with the domain info * We can put some hints in the UI if app is missing. part of #703
259 lines
9.9 KiB
SQL
259 lines
9.9 KiB
SQL
#### WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
|
|
#### This file is not used by any code and is here to document the latest schema
|
|
|
|
#### General ideas
|
|
#### Default char set is utf8 and DEFAULT COLLATE is utf8_bin. Collate affects comparisons in WHERE and ORDER
|
|
#### Strict mode is enabled
|
|
#### VARCHAR - stored as part of table row (use for strings)
|
|
#### TEXT - stored offline from table row (use for strings)
|
|
#### BLOB - stored offline from table row (use for binary data)
|
|
#### https://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html
|
|
#### Times are stored in the database in UTC. And precision is seconds
|
|
|
|
# The code uses zero dates. Make sure sql_mode does NOT have NO_ZERO_DATE
|
|
# http://johnemb.blogspot.com/2014/09/adding-or-removing-individual-sql-modes.html
|
|
# SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'NO_ZERO_DATE',''));
|
|
|
|
CREATE TABLE IF NOT EXISTS users(
|
|
id VARCHAR(128) NOT NULL UNIQUE,
|
|
username VARCHAR(254) UNIQUE,
|
|
email VARCHAR(254) NOT NULL UNIQUE,
|
|
password VARCHAR(1024) NOT NULL,
|
|
salt VARCHAR(512) NOT NULL,
|
|
createdAt VARCHAR(512) NOT NULL,
|
|
ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
displayName VARCHAR(512) DEFAULT "",
|
|
fallbackEmail VARCHAR(512) DEFAULT "",
|
|
twoFactorAuthenticationSecret VARCHAR(128) DEFAULT "",
|
|
twoFactorAuthenticationEnabled BOOLEAN DEFAULT false,
|
|
source VARCHAR(128) DEFAULT "",
|
|
role VARCHAR(32),
|
|
resetToken VARCHAR(128) DEFAULT "",
|
|
resetTokenCreationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
active BOOLEAN DEFAULT 1,
|
|
|
|
PRIMARY KEY(id));
|
|
|
|
CREATE TABLE IF NOT EXISTS userGroups(
|
|
id VARCHAR(128) NOT NULL UNIQUE,
|
|
name VARCHAR(254) NOT NULL UNIQUE,
|
|
source VARCHAR(128) DEFAULT "",
|
|
PRIMARY KEY(id));
|
|
|
|
CREATE TABLE IF NOT EXISTS groupMembers(
|
|
groupId VARCHAR(128) NOT NULL,
|
|
userId VARCHAR(128) NOT NULL,
|
|
FOREIGN KEY(groupId) REFERENCES userGroups(id),
|
|
FOREIGN KEY(userId) REFERENCES users(id),
|
|
UNIQUE (groupId, userId));
|
|
|
|
CREATE TABLE IF NOT EXISTS tokens(
|
|
id VARCHAR(128) NOT NULL UNIQUE,
|
|
name VARCHAR(64) DEFAULT "", // description
|
|
accessToken VARCHAR(128) NOT NULL UNIQUE,
|
|
identifier VARCHAR(128) NOT NULL, // resourceId: app id or user id
|
|
clientId VARCHAR(128),
|
|
scope VARCHAR(512) NOT NULL,
|
|
expires BIGINT NOT NULL, // FIXME: make this a timestamp
|
|
PRIMARY KEY(accessToken));
|
|
|
|
CREATE TABLE IF NOT EXISTS apps(
|
|
id VARCHAR(128) NOT NULL UNIQUE,
|
|
appStoreId VARCHAR(128) NOT NULL, // empty for custom apps
|
|
installationState VARCHAR(512) NOT NULL, // the active task on the app
|
|
runState VARCHAR(512) NOT NULL, // if the app is stopped
|
|
health VARCHAR(128),
|
|
healthTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, // when the app last responded
|
|
containerId VARCHAR(128),
|
|
manifestJson TEXT,
|
|
accessRestrictionJson TEXT, // { users: [ ], groups: [ ] }
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, // when the app was installed
|
|
updateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, // when the last app update was done
|
|
ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, // when this db record was updated (useful for UI caching)
|
|
memoryLimit BIGINT DEFAULT 0,
|
|
cpuShares INTEGER DEFAULT 512,
|
|
xFrameOptions VARCHAR(512),
|
|
sso BOOLEAN DEFAULT 1, // whether user chose to enable SSO
|
|
debugModeJson TEXT, // options for development mode
|
|
reverseProxyConfigJson TEXT, // { robotsTxt, csp }
|
|
enableBackup BOOLEAN DEFAULT 1, // misnomer: controls automatic daily backups
|
|
enableAutomaticUpdate BOOLEAN DEFAULT 1,
|
|
mailboxName VARCHAR(128), // mailbox of this app
|
|
mailboxDomain VARCHAR(128), // mailbox domain of this apps
|
|
label VARCHAR(128), // display name
|
|
tagsJson VARCHAR(2048), // array of tags
|
|
dataDir VARCHAR(256) UNIQUE,
|
|
taskId INTEGER, // current task
|
|
errorJson TEXT,
|
|
servicesConfigJson TEXT, // app services configuration
|
|
containerIp VARCHAR(16) UNIQUE, // this is not-null because of ip allocation fails, user can 'repair'
|
|
|
|
FOREIGN KEY(mailboxDomain) REFERENCES domains(domain),
|
|
FOREIGN KEY(taskId) REFERENCES tasks(id),
|
|
PRIMARY KEY(id));
|
|
|
|
CREATE TABLE IF NOT EXISTS appPortBindings(
|
|
hostPort INTEGER NOT NULL UNIQUE,
|
|
type VARCHAR(8) NOT NULL DEFAULT "tcp",
|
|
environmentVariable VARCHAR(128) NOT NULL,
|
|
appId VARCHAR(128) NOT NULL,
|
|
FOREIGN KEY(appId) REFERENCES apps(id),
|
|
PRIMARY KEY(hostPort));
|
|
|
|
CREATE TABLE IF NOT EXISTS settings(
|
|
name VARCHAR(128) NOT NULL UNIQUE,
|
|
value TEXT,
|
|
PRIMARY KEY(name));
|
|
|
|
CREATE TABLE IF NOT EXISTS appAddonConfigs(
|
|
appId VARCHAR(128) NOT NULL,
|
|
addonId VARCHAR(32) NOT NULL,
|
|
name VARCHAR(128) NOT NULL,
|
|
value VARCHAR(512) NOT NULL,
|
|
FOREIGN KEY(appId) REFERENCES apps(id));
|
|
|
|
CREATE TABLE IF NOT EXISTS appEnvVars(
|
|
appId VARCHAR(128) NOT NULL,
|
|
name TEXT NOT NULL,
|
|
value TEXT NOT NULL,
|
|
FOREIGN KEY(appId) REFERENCES apps(id));
|
|
|
|
CREATE TABLE IF NOT EXISTS backups(
|
|
id VARCHAR(128) NOT NULL,
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
packageVersion VARCHAR(128) NOT NULL, /* app version or box version */
|
|
encryptionVersion INTEGER, /* when null, unencrypted backup */
|
|
type VARCHAR(16) NOT NULL, /* 'box' or 'app' */
|
|
identifier VARCHAR(128) NOT NULL, /* 'box' or the app id */
|
|
dependsOn TEXT, /* comma separate list of objects this backup depends on */
|
|
state VARCHAR(16) NOT NULL,
|
|
manifestJson TEXT, /* to validate if the app can be installed in this version of box */
|
|
format VARCHAR(16) DEFAULT "tgz",
|
|
preserveSecs INTEGER DEFAULT 0,
|
|
|
|
PRIMARY KEY (id));
|
|
|
|
CREATE TABLE IF NOT EXISTS eventlog(
|
|
id VARCHAR(128) NOT NULL,
|
|
action VARCHAR(128) NOT NULL,
|
|
source TEXT, /* { userId, username, ip }. userId can be null for cron,sysadmin */
|
|
data TEXT, /* free flowing json based on action */
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
PRIMARY KEY (id));
|
|
|
|
CREATE TABLE IF NOT EXISTS domains(
|
|
domain VARCHAR(128) NOT NULL UNIQUE, /* if this needs to be larger, InnoDB has a limit of 767 bytes for PRIMARY KEY values! */
|
|
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 */
|
|
wellKnownJson TEXT, /* JSON containing well known docs for this domain */
|
|
|
|
PRIMARY KEY (domain))
|
|
|
|
/* the default db collation is utf8mb4_unicode_ci but for the app table domain constraint we have to use the old one */
|
|
CHARACTER SET utf8 COLLATE utf8_bin;
|
|
|
|
CREATE TABLE IF NOT EXISTS mail(
|
|
domain VARCHAR(128) NOT NULL UNIQUE,
|
|
|
|
enabled BOOLEAN DEFAULT 0, /* MDA enabled */
|
|
mailFromValidation BOOLEAN DEFAULT 1,
|
|
catchAllJson TEXT,
|
|
relayJson TEXT,
|
|
bannerJson TEXT,
|
|
|
|
dkimSelector VARCHAR(128) NOT NULL DEFAULT "cloudron",
|
|
|
|
FOREIGN KEY(domain) REFERENCES domains(domain),
|
|
PRIMARY KEY(domain))
|
|
|
|
CHARACTER SET utf8 COLLATE utf8_bin;
|
|
|
|
/* Future fields:
|
|
* accessRestriction - to determine who can access it. So this has foreign keys
|
|
* quota - per mailbox quota
|
|
|
|
NOTE: this table exists only real mailboxes. And has unique constraint to handle
|
|
conflict with aliases and mailbox names
|
|
*/
|
|
CREATE TABLE IF NOT EXISTS mailboxes(
|
|
name VARCHAR(128) NOT NULL,
|
|
type VARCHAR(16) NOT NULL, /* 'mailbox', 'alias', 'list' */
|
|
ownerId VARCHAR(128) NOT NULL, /* user id */
|
|
ownerType VARCHAR(16) NOT NULL,
|
|
aliasName VARCHAR(128), /* the target name type is an alias */
|
|
aliasDomain VARCHAR(128), /* the target domain */
|
|
membersJson TEXT, /* members of a group. fully qualified */
|
|
membersOnly BOOLEAN DEFAULT false,
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
domain VARCHAR(128),
|
|
|
|
FOREIGN KEY(domain) REFERENCES mail(domain),
|
|
FOREIGN KEY(aliasDomain) REFERENCES mail(domain),
|
|
UNIQUE (name, domain));
|
|
|
|
CREATE TABLE IF NOT EXISTS subdomains(
|
|
appId VARCHAR(128) NOT NULL,
|
|
domain VARCHAR(128) NOT NULL,
|
|
subdomain VARCHAR(128) NOT NULL,
|
|
type VARCHAR(128) NOT NULL, /* primary or redirect */
|
|
|
|
FOREIGN KEY(domain) REFERENCES domains(domain),
|
|
FOREIGN KEY(appId) REFERENCES apps(id),
|
|
UNIQUE (subdomain, domain));
|
|
|
|
CREATE TABLE IF NOT EXISTS tasks(
|
|
id int NOT NULL AUTO_INCREMENT,
|
|
type VARCHAR(32) NOT NULL,
|
|
percent INTEGER DEFAULT 0,
|
|
message TEXT,
|
|
errorJson TEXT,
|
|
resultJson TEXT,
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (id));
|
|
|
|
CREATE TABLE IF NOT EXISTS notifications(
|
|
id int NOT NULL AUTO_INCREMENT,
|
|
userId VARCHAR(128) NOT NULL,
|
|
eventId VARCHAR(128), // reference to eventlog. can be null
|
|
title VARCHAR(512) NOT NULL,
|
|
message TEXT,
|
|
acknowledged BOOLEAN DEFAULT false,
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
UNIQUE KEY appPasswords_name_appId_identifier (name, userId, identifier),
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS appPasswords(
|
|
id VARCHAR(128) NOT NULL UNIQUE,
|
|
name VARCHAR(128) NOT NULL,
|
|
userId VARCHAR(128) NOT NULL,
|
|
identifier VARCHAR(128) NOT NULL, // resourceId: app id or mail or webadmin
|
|
hashedPassword VARCHAR(1024) NOT NULL,
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
FOREIGN KEY(userId) REFERENCES users(id),
|
|
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS volumes(
|
|
id VARCHAR(128) NOT NULL UNIQUE,
|
|
name VARCHAR(256) NOT NULL UNIQUE,
|
|
hostPath VARCHAR(1024) NOT NULL UNIQUE,
|
|
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS appMounts(
|
|
appId VARCHAR(128) NOT NULL,
|
|
volumeId VARCHAR(128) NOT NULL,
|
|
readOnly BOOLEAN DEFAULT 1,
|
|
UNIQUE KEY appMounts_appId_volumeId (appId, volumeId),
|
|
FOREIGN KEY(appId) REFERENCES apps(id),
|
|
FOREIGN KEY(volumeId) REFERENCES volumes(id));
|
|
|
|
CHARACTER SET utf8 COLLATE utf8_bin;
|