20 lines
511 B
Python
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,
|
|
),
|
|
]
|