mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Create 0005_logentry_additional_data_verbose_name.py
Verbose name was missing from 004 so makemigrations causes this.
This commit is contained in:
parent
087255dab7
commit
6b8f7b94a5
1 changed files with 20 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
# -*- 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),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue