📅  最后修改于: 2022-03-11 14:46:12.738000             🧑  作者: Mango
# to add multiple objects at once use 'bulk_create'
>>> objs = Entry.objects.bulk_create([
... Entry(headline='This is a test'),
... Entry(headline='This is only a test'),
... ])