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


##########
streampark-console/streampark-console-service/src/main/resources/db/schema-h2.sql:
##########
@@ -282,6 +282,22 @@ create table if not exists `t_team` (
   unique (`team_name`)
 );
 
+-- ----------------------------
+-- Table of t_variable
+-- ----------------------------
+create table if not exists `t_variable` (
+  `id` bigint generated by default as identity not null comment 'variable id',
+  `variable_code` varchar(100) not null comment 'Variable code is used for 
parameter names passed to the program or as placeholders',
+  `variable_value` text not null comment 'The specific value corresponding to 
the variable',
+  `description` text default null comment 'More detailed description of 
variables, only for display, not involved in program logic',
+  `creator` bigint not null comment 'user_id of creator',

Review Comment:
   oh, column name need change to `user_id`



-- 
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