33 lines
1.5 KiB
Python
33 lines
1.5 KiB
Python
# Generated by Django 2.2 on 2021-09-27 13:39
|
|
|
|
from django.conf import settings
|
|
import django.contrib.postgres.fields.jsonb
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Paiement_stripe',
|
|
fields=[
|
|
('uuid', models.UUIDField(db_index=True, default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)),
|
|
('detail', models.CharField(blank=True, max_length=50, null=True)),
|
|
('id_stripe', models.CharField(blank=True, max_length=80, null=True)),
|
|
('metadata_stripe', django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True)),
|
|
('order_date', models.DateTimeField(auto_now=True, verbose_name='Date')),
|
|
('status', models.CharField(choices=[('N', 'Lien de paiement non crée'), ('O', 'Envoyée a Stripe'), ('W', 'En attente de paiement'), ('E', 'Expiré'), ('P', 'Payée'), ('V', 'Payée et validée'), ('C', 'Annulée')], default='N', max_length=1, verbose_name='Statut de la commande')),
|
|
('total', models.FloatField(default=0)),
|
|
('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
),
|
|
]
|