mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-19 12:59:36 +02:00
18 lines
405 B
Python
18 lines
405 B
Python
# Generated by Django 5.0.7 on 2024-08-04 01:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('adventures', '0014_alter_transportation_type_note'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='note',
|
|
name='date',
|
|
field=models.DateField(blank=True, null=True),
|
|
),
|
|
]
|