Update JSON data type matcher

This commit is contained in:
2026-08-06 06:46:01 +01:00
parent c97bedc271
commit e9f0730405
8 changed files with 153 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
import type { BunMariaDBConfig } from "../../types";
export type ColumnInfoRow = {
name: string;
type: string;
comment?: string;
isNullable: boolean;
columnDefault: string | null;
extra: string;
};
export default function getTableColumnsGemini({ tableName, config, }: {
tableName: string;
config?: BunMariaDBConfig;
}): Promise<ColumnInfoRow[]>;