mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-25 07:49:37 +02:00
19 lines
391 B
Python
19 lines
391 B
Python
|
# Generated by Django 5.0.7 on 2024-08-05 17:51
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('adventures', '0018_note_links'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='collection',
|
||
|
name='updated_at',
|
||
|
field=models.DateTimeField(auto_now=True),
|
||
|
),
|
||
|
]
|