Add is_fully_imported field to DropCampaign and KickDropCampaign models; update views and commands to filter by this field
All checks were successful
Deploy to Server / deploy (push) Successful in 18s
All checks were successful
Deploy to Server / deploy (push) Successful in 18s
This commit is contained in:
parent
5d56a936b0
commit
a8747791c0
12 changed files with 242 additions and 13 deletions
|
|
@ -429,6 +429,10 @@ class DropCampaign(auto_prefetch.Model):
|
|||
auto_now=True,
|
||||
help_text="Timestamp when this campaign record was last updated.",
|
||||
)
|
||||
is_fully_imported = models.BooleanField(
|
||||
default=False,
|
||||
help_text="True if all images and formats are imported and ready for display.",
|
||||
)
|
||||
|
||||
class Meta(auto_prefetch.Model.Meta):
|
||||
ordering = ["-start_at"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue