Unverified Commit 5f867692 authored by Athurg Gooth's avatar Athurg Gooth Committed by GitHub

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

Fix field type of row_status for table webhook
parent 9c18960f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment