Skip to content
Snippets Groups Projects
Commit ed065f76 authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

cleanup

parent e84a4d20
Branches
Tags
No related merge requests found
......@@ -6,9 +6,7 @@ CREATE TABLE tokens (
creation_date datetime DEFAULT NULL,
expiration_date datetime DEFAULT NULL,
PRIMARY KEY (id),
UNIQUE KEY token_2 (token),
KEY token (token),
CONSTRAINT token_email_entity UNIQUE (email_address(50),sp_entityid(50))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE entities (
......@@ -22,7 +20,7 @@ CREATE TABLE entities (
federations varchar(50) DEFAULT NULL,
PRIMARY KEY (id),
KEY entityid (entityid)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE accounts (
id bigint(20) NOT NULL AUTO_INCREMENT,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment