Skip to content

Commit

Permalink
Create 0008_alter_customuser_encryption_salt.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KafetzisThomas committed Feb 1, 2025
1 parent c447078 commit d3b18f6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions users/migrations/0008_alter_customuser_encryption_salt.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.18 on 2025-02-01 15:09

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('users', '0007_customuser_encryption_salt'),
]

operations = [
migrations.AlterField(
model_name='customuser',
name='encryption_salt',
field=models.CharField(blank=True, max_length=44, null=True),
),
]

0 comments on commit d3b18f6

Please sign in to comment.