DSKim
DSKim

Reputation: 595

Can I comment schema in MySQL Workbench?

Is it possible to put some comments on the databases (i.e., Schema) in MySQL Workbench? It has a menu for commenting tables but I can't find an option for commenting databases.

Thanks,

Upvotes: 0

Views: 359

Answers (2)

KamilCuk
KamilCuk

Reputation: 141020

Can I comment schema in MySQL Workbench?

No. Currently the input box is greyed out and mysql-workbench does not handle databases with comments. I created a feature request.

Upvotes: 0

Paul Campbell
Paul Campbell

Reputation: 1986

I doubt it. The comment input box is not enabled in workbench and adding a comment is not part of the CREATE DATABASE syntax. Also, the information_schema.schemata view doesn't have a comments column (unlike tables and columns) so I don't know how workbench would show it back to you.

Upvotes: 1

Related Questions