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.

0002_alter_permission_name_max_length.py 347B

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