Skip to content

Commit

Permalink
Add migration to use models.JSONField() instead of the one from djang…
Browse files Browse the repository at this point in the history
…o.contrib
  • Loading branch information
silvanm committed Oct 3, 2021
1 parent 85fdc4a commit 698e1d2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/requestlog/migrations/0005_auto_20211003_1245.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 3.2.7 on 2021-10-03 17:45

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('requestlog', '0004_auto_20210625_1551'),
]

operations = [
migrations.AlterField(
model_name='requestlog',
name='cookies',
field=models.JSONField(null=True),
),
migrations.AlterField(
model_name='requestlog',
name='headers',
field=models.JSONField(null=True),
),
migrations.AlterField(
model_name='requestlog',
name='query',
field=models.JSONField(null=True),
),
]

0 comments on commit 698e1d2

Please sign in to comment.