mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-07 19:56:19 -04:00
23 lines
534 B
Python
23 lines
534 B
Python
# Generated by Django 4.2.11 on 2024-03-26 23:14
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0004_course_number_alter_course_name"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="file",
|
|
name="created_at",
|
|
field=models.DateTimeField(
|
|
auto_now_add=True, default=django.utils.timezone.now
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|