Implementacion Inicial SumUP
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
# Generated by Django 5.1.4 on 2025-03-02 16:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('home', '0010_loginattempt'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Pedido',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('transaction_id', models.CharField(blank=True, max_length=100, null=True, unique=True)),
|
||||
('email_cliente', models.EmailField(max_length=254)),
|
||||
('estado', models.CharField(default='Pendiente', max_length=20)),
|
||||
('monto', models.DecimalField(decimal_places=2, max_digits=10)),
|
||||
],
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='guildrenamesettings',
|
||||
options={},
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='guildrenamesettings',
|
||||
name='cost',
|
||||
field=models.DecimalField(decimal_places=2, default=10, help_text='Costo en euros para renombrar una hermandad.', max_digits=10),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user