fix: field type of row_status for table webhook (#2579)

Fix field type of row_status for table webhook
This commit is contained in:
Athurg Gooth 2023-12-06 10:57:03 +08:00 committed by GitHub
parent 9c18960f47
commit 5f86769255
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ CREATE TABLE `webhook` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`created_ts` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_ts` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`row_status` TEXT NOT NULL DEFAULT 'NORMAL',
`row_status` VARCHAR(255) NOT NULL DEFAULT 'NORMAL',
`creator_id` INT NOT NULL,
`name` TEXT NOT NULL,
`url` TEXT NOT NULL