Skip to content

Commit

Permalink
chore(fix): updated model migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
happychuks committed Sep 2, 2024
1 parent e0a4cdf commit 24e1348
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions server/apps/research/migrations/0019_alter_article_status.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.8 on 2024-09-02 23:20

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('research', '0018_alter_article_acknowledgement'),
]

operations = [
migrations.AlterField(
model_name='article',
name='status',
field=models.CharField(choices=[('draft', 'Draft'), ('ready', 'Ready')], db_index=True, default='draft', max_length=10),
),
]

0 comments on commit 24e1348

Please sign in to comment.