-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] Resolve migration check failure #467
Addressed migration check issue to causing qa-check fail Fixes #467
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
...nwisp2/sample_radius/migrations/0030_alter_radiusaccounting_called_station_id_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Generated by Django 4.2.17 on 2025-01-08 15:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
( | ||
"sample_radius", | ||
"0029_alter_organizationradiussettings_allowed_mobile_prefixes_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="radiusaccounting", | ||
name="called_station_id", | ||
field=models.CharField( | ||
blank=True, | ||
db_column="calledstationid", | ||
db_index=True, | ||
max_length=253, | ||
null=True, | ||
verbose_name="called station ID", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="radiusaccounting", | ||
name="calling_station_id", | ||
field=models.CharField( | ||
blank=True, | ||
db_column="callingstationid", | ||
db_index=True, | ||
max_length=253, | ||
null=True, | ||
verbose_name="calling station ID", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="radiuspostauth", | ||
name="called_station_id", | ||
field=models.CharField( | ||
blank=True, | ||
db_column="calledstationid", | ||
max_length=253, | ||
null=True, | ||
verbose_name="called station ID", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="radiuspostauth", | ||
name="calling_station_id", | ||
field=models.CharField( | ||
blank=True, | ||
db_column="callingstationid", | ||
max_length=253, | ||
null=True, | ||
verbose_name="calling station ID", | ||
), | ||
), | ||
] |