Skip to content

Commit

Permalink
Merge pull request #469 from UW-GAC/feature/add-missing-migration
Browse files Browse the repository at this point in the history
Add missing migration for max_length changes
  • Loading branch information
amstilp authored Mar 8, 2024
2 parents e9649c7 + 3614d13 commit 5649d3d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions anvil_consortium_manager/migrations/0016_max_length_limits.py
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),
),
]

0 comments on commit 5649d3d

Please sign in to comment.