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.
 
 
 
 
 
 

11 lines
331 B

CREATE TABLE IF NOT EXISTS `tiki_source_auth` (
`identifier` VARCHAR(50) PRIMARY KEY,
`scheme` VARCHAR(20) NOT NULL,
`domain` VARCHAR(200) NOT NULL,
`path` VARCHAR(200) NOT NULL,
`method` VARCHAR(20) NOT NULL,
`arguments` TEXT NOT NULL,
KEY `tiki_source_auth_ix` (`scheme`, `domain`)
) ENGINE=MyISAM;