website/conservancy/fossy/migrations/0003_communitytrackproposal_created_time.py
2024-02-27 19:01:31 +11:00

20 lines
511 B
Python

# Generated by Django 3.2.19 on 2024-02-27 02:56
import datetime
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fossy', '0002_auto_20230130_1841'),
]
operations = [
migrations.AddField(
model_name='communitytrackproposal',
name='created_time',
field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2023, 3, 19, 0, 0)),
preserve_default=False,
),
]