Spaces:
Sleeping
Sleeping
| # Generated by Django 5.1.5 on 2025-02-05 14:25 | |
| import django.utils.timezone | |
| from django.db import migrations, models | |
| class Migration(migrations.Migration): | |
| dependencies = [ | |
| ('Process', '0001_initial'), | |
| ] | |
| operations = [ | |
| migrations.AddField( | |
| model_name='endpoint', | |
| name='time', | |
| field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), | |
| preserve_default=False, | |
| ), | |
| ] | |