initial
This commit is contained in:
19
content/migrations/0004_mediafile_name.py
Normal file
19
content/migrations/0004_mediafile_name.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.2.13 on 2024-06-30 17:14
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('content', '0003_alter_question_labels'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='mediafile',
|
||||
name='name',
|
||||
field=models.CharField(db_index=True, default='N.N.', max_length=25, unique=True),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user