add row in db django

Solutions on MaxInterview for add row in db django by the best coders in the world

showing results for - "add row in db django"
Federico
27 May 2017
1new_entry = YourModel(name='me', age='222', about='stackoverflow')
2new_entry.save()