mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-20 05:11:51 +00:00
19 lines
502 B
Python
19 lines
502 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("auditlog", "0008_timestamp_index"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterIndexTogether(
|
|
name="logentry",
|
|
index_together={("timestamp", "id")},
|
|
),
|
|
migrations.AlterField(
|
|
model_name="logentry",
|
|
name="timestamp",
|
|
field=models.DateTimeField(auto_now_add=True, verbose_name="timestamp"),
|
|
),
|
|
]
|