Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Fix error in h2 sql script #4167

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS dinky_approval
(
id int(11) AUTO_INCREMENT COMMENT 'id',
task_id int(11) NOT NULL COMMENT 'task id',
tenant_id int(11) NOT NULL COMMENT 'tenant id' default 1,
tenant_id int(11) NOT NULL default 1 COMMENT 'tenant id',
previous_task_version int(11) DEFAULT NULL COMMENT 'previous version of task',
current_task_version int(11) NOT NULL COMMENT 'current version to be reviewed of task',
status VARCHAR(50) NOT NULL COMMENT 'approval status',
Expand All @@ -17,7 +17,7 @@ CREATE TABLE IF NOT EXISTS dinky_approval
reviewer int(11) DEFAULT NULL COMMENT 'reviewer user id',
reviewer_comment varchar(255) DEFAULT NULL COMMENT 'reviewer comment',
create_time datetime(0) null DEFAULT null COMMENT 'create time',
update_time datetime(0) null DEFAULT null COMMENT 'update time',
update_time datetime(0) null DEFAULT null COMMENT 'update time'
) ENGINE = InnoDB ROW_FORMAT = Dynamic;

-- ----------------------------
Expand Down
Loading