1drop database if exists alpha;
2drop database if exists beta;
3
4create database alpha;
5create database beta;
6
7grant all privileges on alpha.* to 'alpha'@'localhost'
8    identified by 'alphapass';
9grant all privileges on beta.*  to 'beta'@'localhost'
10    identified by 'betapass';
11flush privileges;
12