Create task from project done
parent
7cfc68a208
commit
d1a2929b73
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,28 @@
|
||||
# Generated by Django 4.2.5 on 2023-09-14 14:59
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0019_alter_epic_end_date_alter_epic_start_date'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Task',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=250)),
|
||||
('status', models.CharField(choices=[('Open', 'Open'), ('Working On', 'Working On'), ('Closed', 'Closed')], max_length=200, null=True)),
|
||||
('extra', models.BooleanField(default=False)),
|
||||
('description', models.TextField()),
|
||||
('start_date', models.CharField(max_length=200)),
|
||||
('end_date', models.CharField(max_length=200)),
|
||||
('epic', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='osinacore.epic')),
|
||||
('project', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='osinacore.project')),
|
||||
],
|
||||
),
|
||||
]
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue