wolfboys commented on code in PR #4131:
URL: 
https://github.com/apache/incubator-streampark/pull/4131#discussion_r1864883600


##########
streampark-console/streampark-console-service/src/main/resources/db/schema-h2.sql:
##########
@@ -673,3 +673,25 @@ create table if not exists `t_spark_app_backup` (
   `modify_time` datetime default null comment 'modify time',
   primary key(`id`)
 );
+
+-- ----------------------------
+-- Table structure for t_spark_cluster
+-- ----------------------------
+create table if not exists t_spark_cluster (
+  `id` bigint generated by default as identity not null,
+  `master_url` VARCHAR(255),
+  `master_web_url` VARCHAR(255),
+  `cluster_id` VARCHAR(255),
+  `cluster_name` VARCHAR(255),
+  `description` varchar(255) default null,
+  `deploy_mode` INT,
+  `version_id` BIGINT,
+  `resolve_order` INT,
+  `exception` VARCHAR(255),
+  `cluster_state` INT,
+  `create_time` TIMESTAMP,

Review Comment:
   The date type is unified as datetime



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to