mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
18 lines
417 B
Python
18 lines
417 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
|
|
),
|
|
),
|
|
]
|