payemnt billing and credits refactoring

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-20 07:39:51 +00:00
parent a97c72640a
commit bc50b022f1
34 changed files with 3028 additions and 307 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.2.10 on 2026-01-20 06:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('automation', '0012_add_publishing_image_defaults'),
]
operations = [
migrations.RenameIndex(
model_name='automationconfig',
new_name='igny8_autom_test_mo_f43497_idx',
old_name='automation__test_mo_idx',
),
migrations.AlterField(
model_name='automationrun',
name='trigger_type',
field=models.CharField(choices=[('manual', 'Manual'), ('scheduled', 'Scheduled'), ('test', 'Test')], max_length=20),
),
]