Django-NotesApp/project/notes/migrations/0005_delete_historicalnote.py

17 lines
313 B
Python
Raw Normal View History

2023-02-25 16:48:43 +08:00
# Generated by Django 4.1.7 on 2023-02-24 08:53
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('notes', '0004_historicalnote'),
]
operations = [
migrations.DeleteModel(
name='HistoricalNote',
),
]