7 lines
242 B
MySQL
7 lines
242 B
MySQL
|
create database if not exists digikam_core;
|
||
|
create database if not exists digikam_thumbnails;
|
||
|
create database if not exists digikam_similarity;
|
||
|
create database if not exists digikam_recognition;
|
||
|
|
||
|
grant all privileges on *.* to 'digikam'@'%';
|