I am currently a developer of a multi-tenant application in which there is a "master" database, which holds customer's data and is also used as a template, that is, it gets copied with a different name for each new customer, to hold its data.
When using Propel ORM in PHP, the model configuration is done in an XML file structured like this:
<?xml version="1.0" encoding="UTF-8"?>
<database name="master_db" defaultIdMethod="native">
<!-- here are tables' definitions -->
</database>
Is it possible to use the same XML file to model all the connections to all of the customers' databases, or would I need a separate file for each one, completely identical except for the database name?
As my question has been marked as a potential duplicate of this one, which I had found before, I'd like to explain why it is different:
- in this case, the number of databases will change over time, while in that question it is fixed
- in this case, all the databases and all the tables in each, will have exactly the same structure
- I do not want different classes for each customer, but rather a single set of model classes, which will query the last selected database
What you ask for sounds a good candidate for XML Inclusions in the configuration files:
The
master-db.xml
filealongside the
propel.xml
fileThis will then include all child-elements of the
database
document element from themaster-db.xml
file.Just the mixing you're looking for.
The good news: Propel2 supports this now, the feature was introduced in: