Skip to content

Commit

Permalink
migrations before
Browse files Browse the repository at this point in the history
  • Loading branch information
azare242 committed Dec 5, 2023
1 parent 54a939d commit b4e3700
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions backend/backend_api/migrations/0055_alter_discount_code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.2.4 on 2023-12-05 10:56

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("backend_api", "0054_discount_payment_discount"),
]

operations = [
migrations.AlterField(
model_name="discount",
name="code",
field=models.CharField(
default="gZOMBJ8W9Q0r4ln8odqIoAWOniIXQzmo", max_length=32, unique=True
),
),
]

0 comments on commit b4e3700

Please sign in to comment.