Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
awieckowski committed Oct 30, 2024
1 parent 29bddfa commit 09ec852
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/ralph/accounts/migrations/0010_auto_20241030_1235.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.0.13 on 2024-10-30 12:35

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0009_auto_20240621_1217'),
]

operations = [
migrations.AlterField(
model_name='ralphuser',
name='department',
field=models.CharField(blank=True, max_length=128, verbose_name='department'),
),
]

0 comments on commit 09ec852

Please sign in to comment.