blob: 8b9ea420196910824aaefdf6858bc7cd1ba05c7d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Creates DB and opens it to any user */
/* Run this mysql macro as root! */
DROP DATABASE IF EXISTS GiantDisc;
CREATE DATABASE GiantDisc;
use GiantDisc;
grant all privileges on GiantDisc.* to music@'%';
grant all privileges on GiantDisc.* to music@localhost;
grant all privileges on GiantDisc.* to apache@localhost with grant option;
|