19 lines
436 B
Python
19 lines
436 B
Python
# Generated by Django 3.1.3 on 2021-02-28 16:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('longs', '0029_auto_20210225_1819'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='long',
|
|
name='recreate_json',
|
|
field=models.BooleanField(default=False, help_text='If the json cache needs updating'),
|
|
),
|
|
]
|