Support table schema edit

This commit is contained in:
SwallowGG
2023-10-09 18:27:24 +08:00
parent 51452dbfd0
commit ab1cad3cbe
16 changed files with 626 additions and 7 deletions

View File

@ -0,0 +1,14 @@
package ai.chat2db.spi.model;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class IndexType {
/**
*
*/
private String typeName;
}

View File

@ -16,4 +16,7 @@ public class TableMeta {
private List<Collation> collations;
private List<IndexType> indexTypes;
}