-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #797 from readthedocs/davidfischer/paid-eligible
Offers now store if they are paid ad eligible
- Loading branch information
Showing
5 changed files
with
133 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Generated by Django 4.2.4 on 2023-10-16 21:31 | ||
from django.db import migrations | ||
from django.db import models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("adserver", "0088_linked_discounts"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="click", | ||
name="is_proxy", | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name="click", | ||
name="paid_eligible", | ||
field=models.BooleanField( | ||
default=None, | ||
help_text="Whether the impression was eligible for a paid ad", | ||
null=True, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="offer", | ||
name="is_proxy", | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name="offer", | ||
name="paid_eligible", | ||
field=models.BooleanField( | ||
default=None, | ||
help_text="Whether the impression was eligible for a paid ad", | ||
null=True, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="view", | ||
name="is_proxy", | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name="view", | ||
name="paid_eligible", | ||
field=models.BooleanField( | ||
default=None, | ||
help_text="Whether the impression was eligible for a paid ad", | ||
null=True, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters