I want to know what is the best practices for controlling the Version for Mobile App APIs.
Requirement
- If I change something in my database previous version of the app should not be affected.
- Currently I'm doing like...
path('v1/auth/', include('authentication.urls')),
path('v2/auth/', include('authentication.urls2')), # Example
path('v1/api/', include('contentstudio.urls')),