mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
20 lines
499 B
Python
20 lines
499 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import jsonfield.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('auditlog', '0004_logentry_detailed_object_repr'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='logentry',
|
|
name='additional_data',
|
|
field=jsonfield.fields.JSONField(null=True, verbose_name='additional data', blank=True),
|
|
),
|
|
]
|