5 lines
153 B
SQL
5 lines
153 B
SQL
create database bacula;
|
|
create user bacula@localhost identified by 'password';
|
|
grant all privileges on bacula.* to bacula@'localhost';
|
|
flush privileges;
|