Grant "create schema" ON database to a user?

postgresql, postgresql-9.1, role

Solution

It's more simple than I thought.

GRANT CREATE ON DATABASE db TO user;

Problem

I'm using PostgreSQL 9.1 and have to to grant "create schema" ON database to a user. How can I do that?

Original source