getTableFormOptions moved to dialect

This commit is contained in:
Jan Prochazka
2024-09-11 14:01:11 +02:00
parent b0165c14e9
commit 7ad1950777
6 changed files with 83 additions and 79 deletions

View File

@@ -44,4 +44,9 @@ export interface SqlDialect {
// create sql-tree expression
createColumnViewExpression(columnName: string, dataType: string, source: { alias: string }, alias?: string): any;
getTableFormOptions(intent: 'newTableForm' | 'editTableForm' | 'sqlCreateTable' | 'sqlAlterTable'): {
name: string;
sqlFormatString: string;
}[];
}