Martin Marques wrote: > I'm about to put one of my repositories to work with trac and I wanted > to know which is the best way, for when I add other projects, to deal > with multiple repositories. Should I build a new DB for each one?
As trac doesn't currently support multiple repositories, you don't have much of a choice. > I see that with sqlite each one has his own DB, but is that a good idea > when using a bigger DB engine like PostgreSQL? While you can create a database for each in postgres, I find it much easier to use PostgreSQL schemas for this job. For example: postgres://username:[EMAIL PROTECTED]/database?schema=foo postgres://username:[EMAIL PROTECTED]/database?schema=bar This way you can have multiple trac instances share one physical PostgreSQL database. -John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
