I am going to develop django rest framework apis using postgres legacy database in which apart from the existing tables no other default django tables should be created. I would like to know without creating any django default tables or doing migrations,
- can i able to access records from tables using ORM?
- Can i able to access admin page without creating django auth table (i.e superuser)?
- If no for both questions, only way to connect to db is using any db adapter like psycopg2?