mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-19 12:59:36 +02:00
19 lines
493 B
Python
19 lines
493 B
Python
# Generated by Django 5.0.7 on 2024-08-04 13:19
|
|
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('adventures', '0017_alter_note_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='note',
|
|
name='links',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.URLField(), blank=True, null=True, size=None),
|
|
),
|
|
]
|