Skip to content

Commit

Permalink
fix: Added migration after updating role in model
Browse files Browse the repository at this point in the history
  • Loading branch information
rijuma committed Nov 4, 2024
1 parent 7cdc763 commit f0b0cf8
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.14 on 2024-11-04 08:52

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('learning_assistant', '0007_learningassistantmessage'),
]

operations = [
migrations.AlterField(
model_name='learningassistantmessage',
name='role',
field=models.CharField(choices=[('user', 'user'), ('assistant', 'assistant')], max_length=64),
),
]

0 comments on commit f0b0cf8

Please sign in to comment.