Re: Refer tutorials to make multitenant application with shared database with multiple schma

2018-10-09 Thread Devender Kumar
Thank you all for putting some light on these. Regard Dev On Wed 3 Oct, 2018, 12:59 AM heriberto ochoa, wrote: > I have try this library: > https://django-tenant-schemas.readthedocs.io/en/latest/ > > and with db postgres > > El miércoles, 19 de septiembre de 2018, 1:09:20 (UTC-6), Devender Kumar

Re: Refer tutorials to make multitenant application with shared database with multiple schma

2018-10-02 Thread heriberto ochoa
I have try this library: https://django-tenant-schemas.readthedocs.io/en/latest/ and with db postgres El miércoles, 19 de septiembre de 2018, 1:09:20 (UTC-6), Devender Kumar escribió: > > Hi, > I need a help from you I wanna start a project which is a multitenant > application and I want the te

Re: Refer tutorials to make multitenant application with shared database with multiple schma

2018-09-19 Thread Andréas Kühne
This is not possible with the mysql database, as mysql doesn't support schemas. Schemas in mysql creates multiple databases - this means that you will have to create a new database for each client. Postgres is a much better solution for these types of things. Regards, Andréas Den ons 19 sep. 20

Re: Refer tutorials to make multitenant application with shared database with multiple schma

2018-09-19 Thread Michal Petrucha
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On Wed, Sep 19, 2018 at 12:09:20AM -0700, Devender Kumar wrote: > Hi, > I need a help from you I wanna start a project which is a multitenant > application and I want the tenant can register themselves and schema is > created for him from the share

Re: Refer tutorials to make multitenant application with shared database with multiple schma

2018-09-19 Thread Joel
Follow the django tutorial. Once you complete part 2, you can easily start writing. https://docs.djangoproject.com/en/2.0/intro/tutorial01/ You don't have to worry too much about schema as you use models. On Wed 19 Sep, 2018, 12:39 PM Devender Kumar, wrote: > Hi, > I need a help from you I wa

Re: Refer tutorials to make multitenant application with shared database with multiple schma

2018-09-19 Thread Devender Kumar
All this should be done using the MySQL database. On Wednesday, September 19, 2018 at 12:39:20 PM UTC+5:30, Devender Kumar wrote: > > Hi, > I need a help from you I wanna start a project which is a multitenant > application and I want the tenant can register themselves and schema is > created f

Refer tutorials to make multitenant application with shared database with multiple schma

2018-09-19 Thread Devender Kumar
Hi, I need a help from you I wanna start a project which is a multitenant application and I want the tenant can register themselves and schema is created for him from the shared database across tenants. I want to make this application in Django I know all the terminology of how multitenancy can