Skip to content

Commit b656a40

Browse files
committed
fix: salt default value
1 parent 6f77b30 commit b656a40

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

django_email_learning/migrations/0007_alter_apikey_salt_alter_imapconnection_salt_and_more.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 6.0.2 on 2026-02-08 14:18
1+
# Generated by Django 6.0.2 on 2026-02-09 12:53
22

33
from django.conf import settings
44
from django.db import migrations, models
@@ -18,7 +18,7 @@ class Migration(migrations.Migration):
1818
model_name="apikey",
1919
name="salt",
2020
field=models.CharField(
21-
default="647b192f563e4a47a23d9cd7d7331e1b",
21+
default="f90a341bca184781820f5ff8012bf350",
2222
editable=False,
2323
max_length=32,
2424
),
@@ -27,7 +27,7 @@ class Migration(migrations.Migration):
2727
model_name="imapconnection",
2828
name="salt",
2929
field=models.CharField(
30-
default="647b192f563e4a47a23d9cd7d7331e1b",
30+
default="f90a341bca184781820f5ff8012bf350",
3131
editable=False,
3232
max_length=32,
3333
),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-email-learning"
3-
version = "0.1.27"
3+
version = "0.1.28"
44
description = "A platform for creating and delivering learning materials via email within a Django application. It provides tools for content management, user role-based administration, and scheduler integration for automated content delivery."
55
authors = [
66
{name = "Payam Najafizadeh",email = "payam.nj@gmail.com"}

0 commit comments

Comments
 (0)