Mnesia User Properties - is there a way to update the properties after a table has been created?

We found the mnesia:create_option() {user_properties, proplists:proplist()} useful for identifying tables which were dynamically created by our application.

Is there really no way to update the properties after a table has been created?

1 Like

There is, using the undocumented mnesia_schema API.

See e.g.

4 Likes