feat: added new setting to debug redsys

This commit is contained in:
2025-02-19 18:44:37 +01:00
parent 44b1efd0ee
commit 52493f6368
3 changed files with 21 additions and 1 deletions
@@ -0,0 +1,18 @@
# Generated by Django 5.1.4 on 2025-02-19 17:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("shop", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="shopsettings",
name="debug",
field=models.BooleanField(default=True, verbose_name="Modo depuración"),
),
]