Muhammad Kashif
Muhammad Kashif

Reputation: 1

Use same postgres db for both Rail and Django project?

Recently we are working with Rails Now want to attach module working with Django. Can We use same data Base for both project. Secondly postgresql db is used here.If any framework or gem present that can handle this.

Upvotes: 0

Views: 67

Answers (1)

Laurenz Albe
Laurenz Albe

Reputation: 247950

The cool thing about a general-purpose relational database (or actually one of the many cool things) is that you can use it with all kinds of programming environments – all you need to do is use the proper driver. So that should be no problem technically.

If the two programs work on the same data, let them share the database. If they operate on different data, create a new database.

Upvotes: 1

Related Questions