mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 14:39:25 +08:00
19 lines
386 B
Python
19 lines
386 B
Python
|
# Generated by Django 4.1.7 on 2023-03-03 15:34
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('notes', '0008_alter_note_owner'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='note',
|
||
|
name='content',
|
||
|
field=models.TextField(),
|
||
|
),
|
||
|
]
|