mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
19 lines
452 B
Python
19 lines
452 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('auditlog', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='logentry',
|
|
name='object_id',
|
|
field=models.BigIntegerField(db_index=True, null=True, verbose_name='object id', blank=True),
|
|
),
|
|
]
|