mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-19 21:09:37 +02:00
20 lines
441 B
Python
20 lines
441 B
Python
|
# Generated by Django 5.0.8 on 2025-01-19 22:32
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('adventures', '0019_alter_attachment_file'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='attachment',
|
||
|
name='name',
|
||
|
field=models.CharField(default='', max_length=200),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|