From 2bf38523a867b9f50022f0fb6439114f816f0a35 Mon Sep 17 00:00:00 2001 From: Timur Date: Sat, 1 Mar 2025 02:35:56 +0300 Subject: [PATCH] add user status and reg tests --- .../apps/user/migrations/0002_user_status.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 services/backend/apps/user/migrations/0002_user_status.py diff --git a/services/backend/apps/user/migrations/0002_user_status.py b/services/backend/apps/user/migrations/0002_user_status.py new file mode 100644 index 0000000..5fe4011 --- /dev/null +++ b/services/backend/apps/user/migrations/0002_user_status.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.6 on 2025-02-28 21:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('user', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='user', + name='status', + field=models.CharField(choices=[('student', 'Student'), ('metodist', 'Metodist')], default='student', max_length=10), + ), + ]