Linked Questions

Popular Questions

Push database into Django

Asked by At

I'm currently working on a project with Django, I have designed a model like

Class Item(models.Model):  
    id  
    name     
    ...  

And I've already had a sqlite database with data like

Id, name, ...  
1, a, ...  
2, b, ...  

Now, the question is how I can push this database to django? Thanks

Related Questions