Skip to content

Commit

Permalink
added extra info to email stat
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Oppenheimer authored and Aaron Oppenheimer committed Jun 5, 2024
1 parent 7db8640 commit d36495c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions stats/migrations/0015_stat_extra_alter_metric_kind.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.11 on 2024-06-05 22:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('stats', '0014_alter_stat_metric'),
]

operations = [
migrations.AddField(
model_name='stat',
name='extra',
field=models.IntegerField(blank=True, null=True),
),
migrations.AlterField(
model_name='metric',
name='kind',
field=models.IntegerField(choices=[(0, 'Daily'), (1, 'All Time'), (2, 'Daily Accumulate'), (3, 'Every')], default=0),
),
]

0 comments on commit d36495c

Please sign in to comment.