File: 0010_alter_group_name_max_length.py

package info (click to toggle)
python-django 3%3A4.2.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,640 kB
  • sloc: python: 334,821; javascript: 18,754; xml: 215; makefile: 178; sh: 27
file content (15 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("auth", "0009_alter_user_last_name_max_length"),
    ]

    operations = [
        migrations.AlterField(
            model_name="group",
            name="name",
            field=models.CharField(max_length=150, unique=True, verbose_name="name"),
        ),
    ]