You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
503 B
Python
20 lines
503 B
Python
# Generated by Django 5.1.7 on 2025-04-05 13:38
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('osinacore', '0109_remove_status_task'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='projectrequirement',
|
|
name='milestone',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='osinacore.milestone'),
|
|
),
|
|
]
|