Skip to content

Commit

Permalink
fix(controller): fix desc not null (#2968)
Browse files Browse the repository at this point in the history
  • Loading branch information
anda-ren authored Nov 13, 2023
1 parent 0ed5b27 commit e6ef1fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `fine_tune_space`
`project_id` bigint NOT NULL,
`owner_id` bigint NOT NULL,
`name` varchar(32) NOT NULL,
`description` varchar(255) NOT NULL,
`description` varchar(255) NULL,
`created_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
Expand Down

0 comments on commit e6ef1fe

Please sign in to comment.