1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

refactor: posgtre client ts refactor

This commit is contained in:
2022-04-14 09:15:16 +02:00
parent e3907914f2
commit d85662cb7d
4 changed files with 704 additions and 843 deletions

View File

@ -72,6 +72,7 @@ export interface TableField {
charset?: string;
collation?: string;
autoIncrement?: boolean;
isArray?: boolean;
onUpdate?: string;
comment?: string;
after?: string;
@ -189,6 +190,7 @@ export interface CreateRoutineParams {
dataAccess: string;
security: string;
comment?: string;
language?: string;
sql: string;
}
@ -208,6 +210,7 @@ export interface CreateFunctionParams {
sql: string;
returns: string;
returnsLength: number;
language?: string;
}
export interface AlterFunctionParams extends CreateFunctionParams {