I have following models:
class Category(models.Model):
title = models.CharField(max_length=200)
class Page(models.Model):
title = models.CharField(max_length=255)
category = models.ForeignKey(Category)
class PageExt(Page):
is_t = models.BooleanField()
Some 'Page' already exists in database. I need to create 'PageExt' for some 'Category' from exists 'Page'. How it right to do with using ORM and optimization like bulk_create?