Create a new schema - postgres docs
Arguments:
schema_name
[string] - name of the new schemaschema_options
[object] - options:ifNotExists
[boolean] - addsIF NOT EXISTS
clauseauthorization
[string] - alternative user to own new schema
Reverse Operation: dropSchema
Drop a schema - postgres docs
Arguments:
schema_name
[string] - name of the schema to dropdrop_options
[object] - options:ifExists
[boolean] - drops schema only if it existscascade
[boolean] - drops also dependent objects
Rename a schema - postgres docs
Arguments:
old_schema_name
[string] - old name of the schemanew_schema_name
[string] - new name of the schema