I'm wondering how to import an existing sqlite3 database and all it's entries into a new Django project. Lets say for example my existing database is called mydatab.db containing a table called 'cars' which has the columns 'name', 'year' and 'owner'. All the columns are text. All examples I have found are for creating new databases and manually entering data.
Thanks