mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Add migration for detailed_object_repr field
This commit is contained in:
parent
6a7908f2ca
commit
d4522ad74a
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 models, migrations
|
||||
import jsonfield.fields
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('auditlog', '0002_auto_support_long_primary_keys'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='logentry',
|
||||
name='detailed_object_repr',
|
||||
field=jsonfield.fields.JSONField(null=True, blank=True),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue