Blame view

database/build_update.sql 242 Bytes
a68a90a9   root   conflit doc merge
1
2
3
4
5
6
7
8
CREATE SCHEMA IF NOT EXISTS test_labinvent2 DEFAULT CHARACTER SET latin1;

GRANT USAGE ON *.* TO 'superadmin';
DROP USER 'superadmin';

grant all on test_labinvent2.* to 'superadmin'@'localhost' identified by 'superadmin';

flush privileges;