Fixes: Removed naive datetime warning Extra: Correct import in elasticsearch submodule.
17 lines
469 B
Python
17 lines
469 B
Python
# Generated by Django 5.2.7 on 2025-10-24 23:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("core", "0049_alter_attribute_unique_together"),
|
|
("payments", "0005_gateway_transaction_gateway"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name="transaction",
|
|
index=models.Index(fields=["created"], name="payments_tr_created_95e595_idx"),
|
|
),
|
|
]
|