diff --git a/sanctions/apps/core/migrations/0002_auto_20231018_1919.py b/sanctions/apps/core/migrations/0002_auto_20231018_1919.py new file mode 100644 index 0000000..b9953d4 --- /dev/null +++ b/sanctions/apps/core/migrations/0002_auto_20231018_1919.py @@ -0,0 +1,27 @@ +# Generated by Django 3.2.22 on 2023-10-18 19:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='user', + name='full_name', + ), + migrations.AddField( + model_name='user', + name='lms_user_id', + field=models.IntegerField(db_index=True, null=True), + ), + migrations.AlterField( + model_name='user', + name='username', + field=models.CharField(blank=True, db_index=True, max_length=255), + ), + ]