Skip to content

Commit

Permalink
Improve startup speed
Browse files Browse the repository at this point in the history
  • Loading branch information
Chat2DB-Pro committed Dec 13, 2023
1 parent 7399c7f commit cf84d91
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ public class ChartCreateParam {
*/
private String databaseName;

/**
*
*/
private String schemaName;

/**
* ddl内容
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ public class ChartUpdateParam {
*/
private String databaseName;

/**
* schema名称
*/
private String schemaName;
/**
* ddl内容
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ public class Chart {
*/
private String dataSourceName;

/**
* schema名称
*/
private String schemaName;

/**
* 数据库类型
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ public class ChartDO implements Serializable {
*/
private String databaseName;


private String schemaName;

/**
* ddl内容
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `chart` ADD COLUMN `schema_name` varchar(128) NULL COMMENT 'schemaName';
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public class ChartCreateRequest {
*/
private String databaseName;

/**
* schema名称
*/
private String schemaName;
/**
* ddl内容
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public class ChartUpdateRequest {
*/
private String databaseName;

/**
* schema名称
*/
private String schemaName;

/**
* ddl内容
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ public class ChartVO {
*/
private String databaseName;


/**
* schema名称
*/
private String schemaName;

/**
* ddl内容
*/
Expand Down

0 comments on commit cf84d91

Please sign in to comment.