Skip to content
Snippets Groups Projects

database change, adding archive JSONField

Merged Nico Vermaas requested to merge sdc-825-archived-page into master
1 file
+ 18
0
Compare changes
  • Side-by-side
  • Inline
# Generated by Django 3.1.4 on 2023-01-12 15:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('taskdatabase', '0018_auto_20221021_1109'),
]
operations = [
migrations.AddField(
model_name='task',
name='archive',
field=models.JSONField(blank=True, null=True),
),
]
Loading