1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-01-19 16:52:15 +01:00

Make sure b64 values are compared case-sensitively.

This commit is contained in:
Simon Josefsson 2009-08-31 18:00:05 +00:00
parent ef99dd45e3
commit 4dd33ebdee

View File

@ -18,8 +18,8 @@ CREATE TABLE yubikeys (
active BOOLEAN DEFAULT TRUE,
created DATETIME NOT NULL,
accessed DATETIME,
publicName VARCHAR(16) UNIQUE NOT NULL,
internalName VARCHAR(12) NOT NULL,
publicName VARCHAR(16) UNIQUE NOT NULL COLLATE ascii_bin,
internalName VARCHAR(12) NOT NULL COLLATE ascii_bin,
counter INT,
low INT,
high INT,