Re: Multitenant app // Validation / constraints for related fields

2023-01-19 Thread ASAMOAH EMMANUEL
deas for ensuring that ForeignKey relationships are valid? > > Context / background: I'm working on a multitenant app, and looking at > ways of ensuring the integrity of the data in the system. Specifically, I > want to ensure that for a "tenant'ed" model that contains For

Multitenant app // Validation / constraints for related fields

2023-01-19 Thread Abeed Visram
Hi there, Long-time lurker / Django user; first-time poster. Ask: Any other ideas for ensuring that ForeignKey relationships are valid? Context / background: I'm working on a multitenant app, and looking at ways of ensuring the integrity of the data in the system. Specifically, I wan

Re: Multitenant App

2022-11-07 Thread Sherif Adigun
Take a look at Django Tenants https://github.com/django-tenants/django-tenants I have used it on a project and its just perfect. it does tenancy very well. and I like the Semi Isolated Approach: Shared Database, Separate Schemas. One database for all tenants, but one schema per tenant. On Mond

Re: Multitenant App

2022-11-07 Thread David Emanuel Sandoval
Hi, I'm not sure what you mean by updating all templates. In my case, when I update a template, the changes are reflected in all tenants/clients. David Emanuel Sandoval WEB DEVELOPER +549 3734 607102

Multitenant App

2022-11-07 Thread sebasti...@gmail.com
Hello, ich want sell my app on different companys. Now a part of apps all companys/templates use this but another apps/templates are customer specific. Now i want when i update code from apps/templates which all customer uses that i can update all customer on server as fast as possible. Here a