Skip to content

Commit

Permalink
Add missing migrations file
Browse files Browse the repository at this point in the history
  • Loading branch information
sudan45 committed Sep 18, 2024
1 parent 2767ce8 commit 3e33716
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions content/migrations/0002_alter_content_document_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.1.1 on 2024-09-18 05:28

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('content', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='content',
name='document_type',
field=models.IntegerField(choices=[(1, 'Word'), (2, 'PDF'), (3, 'Text')], default=3),
),
]

0 comments on commit 3e33716

Please sign in to comment.