Jarvis/jarvis/followup/migrations/0023_note_note_type.py

23 lines
531 B
Python

# Generated by Django 4.1.1 on 2022-10-06 12:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("followup", "0022_rename_notes_note"),
]
operations = [
migrations.AddField(
model_name="note",
name="note_type",
field=models.PositiveSmallIntegerField(
choices=[(0, "Draft"), (1, "Published")],
default=0,
verbose_name="Routine type",
),
),
]