LifeLongStudent
LifeLongStudent

Reputation: 2468

How to add description of schema in Postgres database?

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

Answers (1)

user330315
user330315

Reputation:

Use the comment command:

comment on schema some_schema is 'This is my other schema';

Upvotes: 3

Related Questions