1
0
mirror of https://github.com/Yubico/yubikey-ksm.git synced 2025-03-16 03:29:20 +01:00

Be first-time install friendly.

This commit is contained in:
Simon Josefsson 2009-04-19 04:40:15 +00:00
parent 1abc4a1b96
commit 5435e8e37e

View File

@ -1,4 +1,4 @@
drop database ykksm;
-- drop database ykksm;
create database ykksm;
use ykksm;
@ -31,7 +31,7 @@ create table yubikeys (
-- and make sure it uses a key to find the column.
);
drop user ykksmreader;
-- drop user ykksmreader;
create user ykksmreader;
grant select on ykksm.yubikeys to 'ykksmreader'@'localhost';
flush privileges;