Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
beda42 committed Mar 4, 2021
1 parent 0ff7038 commit 206709f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions apps/logs/migrations/0035_reporttype_materialization_date.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 2.2.17 on 2021-03-04 09:52

from django.db import migrations, models
import django.utils.timezone


class Migration(migrations.Migration):

dependencies = [
('logs', '0034_importbatch_materialization_info'),
]

operations = [
migrations.AddField(
model_name='reporttype',
name='materialization_date',
field=models.DateTimeField(
default=django.utils.timezone.now,
help_text='All data materialized before this data will be recomputed - can be used to force recomputation',
),
),
]

0 comments on commit 206709f

Please sign in to comment.