Skip to content

Commit

Permalink
[Fix] fix h2 ddl job_history table filed length error (#3210)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzm0809 authored Mar 1, 2024
1 parent 93c43d1 commit e1485dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dinky-admin/src/main/resources/db/db-h2-ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ CREATE TABLE `dinky_history` (
`cluster_id` int(11) NOT null DEFAULT 0 COMMENT 'cluster ID',
`cluster_configuration_id` int(11) null DEFAULT null COMMENT 'cluster configuration id',
`session` varchar(255) null DEFAULT null COMMENT 'session',
`job_id` varchar(50) null DEFAULT null COMMENT 'Job ID',
`job_id` varchar(255) null DEFAULT null COMMENT 'Job ID',
`job_name` varchar(255) null DEFAULT null COMMENT 'Job Name',
`job_manager_address` varchar(255) null DEFAULT null COMMENT 'JJobManager Address',
`batch_model` boolean null DEFAULT false COMMENT 'is batch model',
Expand Down

0 comments on commit e1485dd

Please sign in to comment.