File diff 3ef31ebe432b → 6c24b00fe3fd
conservancy/fossy/migrations/0003_communitytrackproposal_created_time.py
Show inline comments
 
new file 100644
 
# 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,
 
        ),
 
    ]