mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-17 20:11:06 +00:00
16 lines
387 B
Python
16 lines
387 B
Python
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),
|
|
),
|
|
]
|