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