Skip to content

Commit

Permalink
Update put in upgrades file but not here.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiemccarthy committed Dec 31, 2003
1 parent a4680a6 commit bd20c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/mysql/slashschema_create.sql
Expand Up @@ -1131,11 +1131,11 @@ CREATE TABLE users_logtokens (
lid MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT,
uid MEDIUMINT UNSIGNED NOT NULL DEFAULT '0',
locationid CHAR(32) NOT NULL DEFAULT '',
temp TINYINT NOT NULL DEFAULT '0',
temp ENUM("yes","no") NOT NULL DEFAULT "no",
expires DATETIME NOT NULL DEFAULT '2000-01-01 00:00:00',
value CHAR(22) NOT NULL DEFAULT '',
PRIMARY KEY (lid),
UNIQUE uid_locationid (uid, locationid, temp),
UNIQUE uid_locationid_temp (uid, locationid, temp),
KEY (locationid),
KEY (temp)
) TYPE=InnoDB;
Expand Down

0 comments on commit bd20c6a

Please sign in to comment.