diff --git a/internal/setup/sql.json b/internal/setup/sql.json index 92201438..4a532444 100644 --- a/internal/setup/sql.json +++ b/internal/setup/sql.json @@ -183856,7 +183856,7 @@ "name": "edgeSSLPolicies", "engine": "InnoDB", "charset": "utf8mb4_general_ci", - "definition": "CREATE TABLE `edgeSSLPolicies` (\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\n `certs` json DEFAULT NULL COMMENT '证书列表',\n `clientCACerts` json DEFAULT NULL COMMENT '客户端证书',\n `clientAuthType` int(11) unsigned DEFAULT '0' COMMENT '客户端认证类型',\n `minVersion` varchar(32) DEFAULT NULL COMMENT '支持的SSL最小版本',\n `cipherSuitesIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否自定义加密算法套件',\n `cipherSuites` json DEFAULT NULL COMMENT '加密算法套件',\n `hsts` json DEFAULT NULL COMMENT 'HSTS设置',\n `http2Enabled` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用HTTP/2',\n `ocspIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用OCSP',\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\n PRIMARY KEY (`id`),\n KEY `userId` (`userId`),\n KEY `ocspIsOn` (`ocspIsOn`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='SSL配置策略'", + "definition": "CREATE TABLE `edgeSSLPolicies` (\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\n `certs` json DEFAULT NULL COMMENT '证书列表',\n `clientCACerts` json DEFAULT NULL COMMENT '客户端证书',\n `clientAuthType` int(11) unsigned DEFAULT '0' COMMENT '客户端认证类型',\n `minVersion` varchar(32) DEFAULT NULL COMMENT '支持的SSL最小版本',\n `cipherSuitesIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否自定义加密算法套件',\n `cipherSuites` json DEFAULT NULL COMMENT '加密算法套件',\n `hsts` json DEFAULT NULL COMMENT 'HSTS设置',\n `http2Enabled` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用HTTP/2',\n `http3Enabled` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用HTTP/3',\n `ocspIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用OCSP',\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\n PRIMARY KEY (`id`),\n KEY `userId` (`userId`),\n KEY `ocspIsOn` (`ocspIsOn`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='SSL配置策略'", "fields": [ { "name": "id", @@ -183906,6 +183906,10 @@ "name": "http2Enabled", "definition": "tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用HTTP/2'" }, + { + "name": "http3Enabled", + "definition": "tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用HTTP/3'" + }, { "name": "ocspIsOn", "definition": "tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用OCSP'"