mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-19 12:59:36 +02:00
18 lines
437 B
Python
18 lines
437 B
Python
# Generated by Django 5.0.6 on 2024-07-15 13:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('adventures', '0007_remove_adventure_trip_alter_adventure_type_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='collection',
|
|
name='description',
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
]
|