mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 14:39:25 +08:00
20 lines
463 B
Python
20 lines
463 B
Python
|
# Generated by Django 4.1.7 on 2023-02-23 13:46
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('notes', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='note',
|
||
|
name='date_created',
|
||
|
field=models.DateTimeField(default=django.utils.timezone.now, editable=False),
|
||
|
),
|
||
|
]
|