Is it possible to migrate a web system in production made in web2py to a redone in django while maintaining the same database? Home
I'm having a system done in web2py (in production) and need to redo it in django , keeping the same database . The problem is that django and web2py have different sets of tables for users.
So, the database in production has the web2py user tables, whereas in django several tables are created (with only one user being the one).
How can I make django work (with authentication system) using a ready-made database of a system made in web2py?
Home
Thanks in advance for your attention!
P.S .: the original DB was made in postgreSQL.