mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
339 B
MySQL
11 lines
339 B
MySQL
2 years ago
|
-- webhook
|
||
|
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` VARCHAR(256) NOT NULL DEFAULT 'NORMAL',
|
||
|
`creator_id` INT NOT NULL,
|
||
|
`name` TEXT NOT NULL,
|
||
|
`url` TEXT NOT NULL
|
||
|
);
|