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
411 B

-- 2009-11-05 lphuberdeau
CREATE TABLE IF NOT EXISTS `tiki_auth_tokens` (
`tokenId` INT NOT NULL AUTO_INCREMENT,
`creation` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`timeout` INT NOT NULL DEFAULT 0,
`token` CHAR(32),
`entry` VARCHAR(50),
`parameters` VARCHAR(255),
`groups` VARCHAR(255),
PRIMARY KEY( `tokenId` ),
KEY `tiki_auth_tokens_token` (`token`)
) ENGINE=MyISAM;