mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 14:59:36 +02:00
notes beta
This commit is contained in:
parent
3f900bc41a
commit
7c2b0e927d
6 changed files with 126 additions and 30 deletions
19
backend/server/adventures/migrations/0018_note_links.py
Normal file
19
backend/server/adventures/migrations/0018_note_links.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue