new fields for project: status, persons
parent
a903e5ed1f
commit
71249aa73e
@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.1.1 on 2020-10-29 12:13
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('input', '0031_auto_20201028_1402'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='project',
|
||||
name='persons',
|
||||
field=models.IntegerField(default=1),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='project',
|
||||
name='status',
|
||||
field=models.CharField(choices=[('RUN', 'läuft'), ('END', 'beendet')], default='RUN', max_length=3),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue