1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2024-11-28 15:24:13 +01:00

sql: add schema for yubikey_mapping

This commit is contained in:
Klas Lindfors 2021-04-01 14:03:33 +02:00
parent 5b6f78c134
commit c8a8775838
No known key found for this signature in database
GPG Key ID: BCA00FD4B2168C0A

9
yubikey_mapping.sql Normal file
View File

@ -0,0 +1,9 @@
#
# Table structure for table equiv of yubikey_mapping
#
CREATE TABLE IF NOT EXISTS `otp`.`yubikey_mappings` (
`otp_id` VARCHAR(12) NOT NULL ,
`username` VARCHAR(64) NOT NULL ,
PRIMARY KEY (`otp_id`(12))
);