Listing 19.9. Plik tworzenie-pustej-bazy-danych.sql z przykładu 18.1
drop schema if exists mountains;
create schema mountains default character set utf8 collate utf8_polish_ci;
grant all on mountains.* to editor@localhost identified by 'secretPASSWORD';
flush privileges;