Reputation: 33
I've been working for a while with SQL Server and I used Extended Properties to tag databases, for example - to save the name of the main DB user (for private use).
Now, I need to start using MySQL.
The thing is that the concept of Extended Properties doesn't seem to exist in MySQL Workbench. Is there an equivalent? If not, what do you recommend in order to compensate for the lack of this feature?
thanks a lot!
Upvotes: 2
Views: 1195
Reputation: 122002
There are no extended properties in MySQL. If you want to add comments to objects, you can do it. Some objects support them.
If you need more, then you should think about your database logic/schema, where to store these information.
Upvotes: 2