4
ALTER SCHEMA changes the definition of a schema.
6
You must own the schema to use ALTER SCHEMA. To rename a schema you
7
must also have the CREATE privilege for the database. To alter the
8
owner, you must also be a direct or indirect member of the new owning
9
role, and you must have the CREATE privilege for the database:
13
ALTER SCHEMA name RENAME TO new_name
14
ALTER SCHEMA name OWNER TO new_owner
18
The name of an existing schema.
22
The new name of the schema.
26
The new owner of the schema.
31
:doc:`create_schema` and :doc:`drop_schema`