mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 14:59:36 +02:00
18 lines
422 B
Python
18 lines
422 B
Python
# Generated by Django 5.0.6 on 2024-07-19 12:55
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('adventures', '0010_adventure_created_at_collection_created_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='adventure',
|
|
name='updated_at',
|
|
field=models.DateTimeField(auto_now=True),
|
|
),
|
|
]
|