mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 06:29:25 +08:00
19 lines
463 B
Python
19 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),
|
|
),
|
|
]
|