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

Place notes field last. Add notes field to yubikeys.

This commit is contained in:
Simon Josefsson 2009-08-28 12:07:35 +00:00
parent cfb751bda7
commit 14621ad967

View File

@ -8,8 +8,8 @@ CREATE TABLE clients (
created DATETIME NOT NULL,
secret VARCHAR(60) NOT NULL DEFAULT '',
email VARCHAR(255),
notes VARCHAR(100) DEFAULT '',
otp VARCHAR(100) DEFAULT '',
notes VARCHAR(100) DEFAULT '',
PRIMARY KEY (id)
);
@ -24,6 +24,7 @@ CREATE TABLE yubikeys (
low INT,
high INT,
sessionUse INT,
notes VARCHAR(100) DEFAULT '',
PRIMARY KEY (id)
);