You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0010_alter_group_name_max_length.py 379B

12345678910111213141516
  1. from django.db import migrations, models
  2. class Migration(migrations.Migration):
  3. dependencies = [
  4. ('auth', '0009_alter_user_last_name_max_length'),
  5. ]
  6. operations = [
  7. migrations.AlterField(
  8. model_name='group',
  9. name='name',
  10. field=models.CharField(max_length=150, unique=True, verbose_name='name'),
  11. ),
  12. ]