21 lines
499 B
Python
21 lines
499 B
Python
# Generated by Django 4.2.8 on 2024-01-25 10:37
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("notes", "0005_highlight"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="highlight",
|
|
name="note",
|
|
field=models.OneToOneField(
|
|
null=True, on_delete=django.db.models.deletion.SET_NULL, to="notes.note"
|
|
),
|
|
),
|
|
]
|