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.
26 lines
825 B
Python
26 lines
825 B
Python
# Generated by Django 4.2.5 on 2023-09-08 18:02
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('osinacore', '0003_milestone'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Epic',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=150)),
|
|
('description', models.TextField()),
|
|
('start_date', models.DateField()),
|
|
('end_date', models.DateField()),
|
|
('project', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='osinacore.project')),
|
|
],
|
|
),
|
|
]
|