From 2642b246a1791d1853192c94d509eedadab546d3 Mon Sep 17 00:00:00 2001 From: Martin Quarda Date: Thu, 17 Oct 2024 08:42:51 +0200 Subject: [PATCH] migration --- .../0024_profile_forgotten_password_code.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 alkatorapi/migrations/0024_profile_forgotten_password_code.py diff --git a/alkatorapi/migrations/0024_profile_forgotten_password_code.py b/alkatorapi/migrations/0024_profile_forgotten_password_code.py new file mode 100644 index 0000000..5129238 --- /dev/null +++ b/alkatorapi/migrations/0024_profile_forgotten_password_code.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.12 on 2024-10-17 06:42 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('alkatorapi', '0023_cart_address_alter_cartproduct_cart'), + ] + + operations = [ + migrations.AddField( + model_name='profile', + name='forgotten_password_code', + field=models.CharField(blank=True, max_length=120, null=True), + ), + ]