diff --git a/backend/users_app/migrations/0002_alter_users_options.py b/backend/users_app/migrations/0002_alter_users_options.py new file mode 100644 index 0000000..ffa6b7c --- /dev/null +++ b/backend/users_app/migrations/0002_alter_users_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.4 on 2023-08-17 05:02 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('users_app', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='users', + options={'verbose_name_plural': 'Users'}, + ), + ]