Updates
This commit is contained in:
Vendored
+4
-2
@@ -1,11 +1,13 @@
|
||||
export declare const AppData: {
|
||||
readonly ConfigFileName: "bun-mariadb.config.ts";
|
||||
readonly ConfigFileName: "bun-mariadb.config";
|
||||
readonly MaxBackups: 10;
|
||||
readonly MaxExports: 10;
|
||||
readonly DefaultBackupDirName: ".backups";
|
||||
readonly DefaultExportDirName: ".exports";
|
||||
readonly DbSchemaManagerTableName: "__db_schema_manager__";
|
||||
readonly DbSchemaFileName: "schema.ts";
|
||||
readonly DbSchemaFileName: "schema";
|
||||
/** Priority order when resolving config/schema files */
|
||||
readonly SupportedDataFileExtensions: readonly [".ts", ".js", ".json", ".yaml", ".yml"];
|
||||
readonly MaxInitRetries: 50;
|
||||
readonly InitRetryIntervalMilliseconds: 5000;
|
||||
};
|
||||
|
||||
Vendored
+4
-2
@@ -1,11 +1,13 @@
|
||||
export const AppData = {
|
||||
ConfigFileName: "bun-mariadb.config.ts",
|
||||
ConfigFileName: "bun-mariadb.config",
|
||||
MaxBackups: 10,
|
||||
MaxExports: 10,
|
||||
DefaultBackupDirName: ".backups",
|
||||
DefaultExportDirName: ".exports",
|
||||
DbSchemaManagerTableName: "__db_schema_manager__",
|
||||
DbSchemaFileName: "schema.ts",
|
||||
DbSchemaFileName: "schema",
|
||||
/** Priority order when resolving config/schema files */
|
||||
SupportedDataFileExtensions: [".ts", ".js", ".json", ".yaml", ".yml"],
|
||||
MaxInitRetries: 50,
|
||||
InitRetryIntervalMilliseconds: 5000,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user