enum + set for mysql (#693)

* enum + set for mysql

* enum + set for mysql | dropdown

* enum for mysql | removed empty option
This commit is contained in:
Luboš Nguyen
2024-01-23 10:05:49 +01:00
committed by GitHub
parent f2f8b9ef7e
commit cdde770810
10 changed files with 374 additions and 169 deletions

View File

@@ -60,6 +60,8 @@ export interface ColumnInfo extends NamedObjectInfo {
columnComment?: string;
isUnsigned?: boolean;
isZerofill?: boolean;
options?: [];
canSelectMultipleOptions?: boolean,
}
export interface DatabaseObjectInfo extends NamedObjectInfo {