MyBB Community Forums

Full Version: PostgreSQL schema usage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I understand that MySQL doesn't support schemas and the only way to make sure that mybb tables won't collide with other is to choose a suitable prefix.

But in PostgreSQL, schemas are a great thing because they allow to use more natural table names using one query to set the search_path to approtiate name. It's also more convenient way to avoid colliding with other databases.

I think that I will be able to implement it in some time, if I am to.