Development of an internal social media platform with personalised dashboards for students
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.

0009_alter_user_last_name_max_length.py 386B

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