Skip to content

Commit

Permalink
feat: Core migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
julianajlk committed Oct 18, 2023
1 parent a893e78 commit 4fc6651
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions sanctions/apps/core/migrations/0002_auto_20231018_1919.py
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit 4fc6651

Please sign in to comment.