mirror of
https://github.com/Yubico/yubico-pam.git
synced 2024-11-28 15:24:13 +01:00
10 lines
218 B
SQL
10 lines
218 B
SQL
#
|
|
# 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))
|
|
);
|