You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2022/04/30 04:40:01 UTC

[incubator-linkis] 02/03: for the same field in different tables, the length needs to be kept the same

This is an automated email from the ASF dual-hosted git repository.

peacewong pushed a commit to branch dev-1.1.1
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git

commit 468e633642ce88e4db8c9c4d3605ed977f85b800
Author: casionone <ca...@gmail.com>
AuthorDate: Fri Apr 29 23:07:41 2022 +0800

    for the same field in different tables, the length needs to be kept the same
---
 db/linkis_ddl.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/db/linkis_ddl.sql b/db/linkis_ddl.sql
index 23bd75cc3..c798d3e74 100644
--- a/db/linkis_ddl.sql
+++ b/db/linkis_ddl.sql
@@ -186,7 +186,7 @@ CREATE TABLE `linkis_ps_udf_tree` (
 DROP TABLE IF EXISTS `linkis_ps_udf_user_load`;
 CREATE TABLE `linkis_ps_udf_user_load` (
   `id` bigint(20) NOT NULL AUTO_INCREMENT,
-  `udf_id` int(11) NOT NULL,
+  `udf_id` bigint(20) NOT NULL,
   `user_name` varchar(50) NOT NULL,
   PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org