configuration增加了port
This commit is contained in:
parent
922a45995e
commit
05a299f859
|
|
@ -5,6 +5,7 @@ export type MySQLConfiguration = {
|
||||||
database: string;
|
database: string;
|
||||||
charset: 'utf8mb4_general_ci';
|
charset: 'utf8mb4_general_ci';
|
||||||
connectionLimit: number;
|
connectionLimit: number;
|
||||||
|
port?: number;
|
||||||
};
|
};
|
||||||
export type Configuration = {
|
export type Configuration = {
|
||||||
mysql: MySQLConfiguration;
|
mysql: MySQLConfiguration;
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ export type MySQLConfiguration = {
|
||||||
database: string;
|
database: string;
|
||||||
charset: 'utf8mb4_general_ci';
|
charset: 'utf8mb4_general_ci';
|
||||||
connectionLimit: number;
|
connectionLimit: number;
|
||||||
|
port?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Configuration = {
|
export type Configuration = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue