You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 11, 2018. It is now read-only.
I can image out of the bat 3 ways to implement multi-tenant splits of databases:
one db per tenant
single db, every table with tenant data gets a 'tenant' column
one single db, where each tenant gets a different sets of tables for his data, with a prefix added to the table name
It is not too clear to me if this bundle currently supports both 1 and 2, or not.
Also: it seems that most of the 'automagic' value would come from version 2 of this package, where integration with the ORM layer is done. Is there any code available for that, or is it still at 0%?