mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-08-02 05:20:15 +08:00
Support table schema edit
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
package ai.chat2db.spi.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class IndexType {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String typeName;
|
||||
}
|
@ -16,4 +16,7 @@ public class TableMeta {
|
||||
|
||||
|
||||
private List<Collation> collations;
|
||||
|
||||
|
||||
private List<IndexType> indexTypes;
|
||||
}
|
||||
|
Reference in New Issue
Block a user