-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from UW-GAC/feature/add-missing-migration
Add missing migration for max_length changes
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
anvil_consortium_manager/migrations/0016_max_length_limits.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,33 @@ | ||
# Generated by Django 5.0 on 2024-03-08 00:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('anvil_consortium_manager', '0015_add_new_permissions'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='historicalmanagedgroup', | ||
name='name', | ||
field=models.SlugField(help_text='Name of the group on AnVIL.', max_length=60), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalworkspace', | ||
name='name', | ||
field=models.SlugField(help_text='Name of the workspace on AnVIL, not including billing project name.', max_length=254), | ||
), | ||
migrations.AlterField( | ||
model_name='managedgroup', | ||
name='name', | ||
field=models.SlugField(help_text='Name of the group on AnVIL.', max_length=60, unique=True), | ||
), | ||
migrations.AlterField( | ||
model_name='workspace', | ||
name='name', | ||
field=models.SlugField(help_text='Name of the workspace on AnVIL, not including billing project name.', max_length=254), | ||
), | ||
] |