Skip to content

Commit

Permalink
Merge branch 'staging' into dave/speculate-ludic
Browse files Browse the repository at this point in the history
  • Loading branch information
davepeck committed May 9, 2024
2 parents 66807c2 + 56dcb31 commit 69598bb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 17 additions & 0 deletions server/vb/migrations/0010_remove_ambiguous_email_sent_at.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.0.3 on 2024-05-09 16:47

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('vb', '0009_add_explicit_roll_field'),
]

operations = [
migrations.RemoveField(
model_name='contestentry',
name='email_sent_at',
),
]
1 change: 0 additions & 1 deletion server/vb/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,6 @@ def is_winner(self) -> bool:
default="",
help_text="The creation code for the gift card, if a prize was issued.",
)
email_sent_at = models.DateTimeField(blank=True, null=True, default=None)

@property
def has_issued(self) -> bool:
Expand Down

0 comments on commit 69598bb

Please sign in to comment.