You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
414 B

CREATE TABLE IF NOT EXISTS `tiki_webhooks` (
`webhookId` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL,
`user` varchar(200) NOT NULL,
`verification` varchar(100) NOT NULL,
`algo` varchar(100) NOT NULL,
`signatureHeader` varchar(100) NOT NULL,
`secret` text NOT NULL,
`created` int NOT NULL,
`lastModif` int NOT NULL,
PRIMARY KEY (`webhookId`)
) ENGINE=MyISAM AUTO_INCREMENT=1 ;