Reputation: 2468
The command \dn+
shows description as standard public schema
for public
schema.
How can I alter the other schemas to add the description?
Upvotes: 2
Views: 535
Reputation:
Use the comment
command:
comment on schema some_schema is 'This is my other schema';
Upvotes: 3