mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 14:39:25 +08:00
19 lines
402 B
Python
19 lines
402 B
Python
|
# Generated by Django 4.1.7 on 2023-02-23 14:32
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('notes', '0002_note_date_created'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='note',
|
||
|
name='content',
|
||
|
field=models.CharField(max_length=1024),
|
||
|
),
|
||
|
]
|