Skip to content

Commit

Permalink
Merge pull request #3859 from awieckowski/department_field_length
Browse files Browse the repository at this point in the history
Increase max user department field length
  • Loading branch information
hipek8 authored Nov 4, 2024
2 parents a40a030 + 09ec852 commit b088b04
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
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'),
),
]
2 changes: 1 addition & 1 deletion src/ralph/accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class RalphUser(
)
department = models.CharField(
verbose_name=_('department'),
max_length=64,
max_length=128,
blank=True,
)
manager = models.CharField(
Expand Down

0 comments on commit b088b04

Please sign in to comment.