Exesize
17 строк · 430.0 Байт
1from django.core.management import BaseCommand
2
3from mainapp.models import News
4
5
6class Command(BaseCommand):
7
8def handle(self, *args, **options):
9news_list = []
10for i in range(1, 11):
11news_list.append(News(
12title=f"title#{i}",
13preambule=f"preambule#{i}",
14body="Текст новости"
15))
16
17News.objects.bulk_create(news_list)
18
19