Re: multiple projects on same database

2014-08-13 Thread Camilo Torres
Hello Hector, It seems that using 2 different databases will cause duplicate schema (tables) and duplicate data. So in your case I prefer to change my mind and recomend you to use a single database. In general I don't see any problem with that. Regards, Camilo. -- You received this message be

Re: multiple projects on same database

2014-08-12 Thread Héctor Urbina
Thanks Camilo, I understand a schema just as a database, so if I use another schema I will be creating a new database and then the auth tables will be duplicated on this new database (or schema). With that, I won't get what I want, that is, only one set of tables with users' information. I'm us

multiple projects on same database

2014-08-07 Thread Camilo Torres
Hello. You can use the same DB, but different schema or different user. You can also use the same schema as long as table names (and other objects names) din't match. I recomend to use diferent schemas for different web apps. Camilo. -- You received this message because you are subscribed to

multiple projects on same database

2014-08-07 Thread Héctor Urbina
Hello, I'm developing a django project for my office, a small project management system. I'm doing some tries to incorporate a third party document management system, namely mayan-edms, by making use of the same database, so that users maintain theirs credentials. Is that good practice?. Gree