mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00

Add the newish Inactive-Upstream upstream status. Add 0046_alter_patch_status.py migration. Signed-off-by: Tim Orling <tim.orling@konsulko.com> layerindex/migrations: update patch status Signed-off-by: Tim Orling <tim.orling@konsulko.com>
19 lines
581 B
Python
19 lines
581 B
Python
# Generated by Django 3.2.12 on 2022-04-10 19:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('layerindex', '0045_layerbranch_classicrecipe'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='patch',
|
|
name='status',
|
|
field=models.CharField(choices=[('U', 'Unknown'), ('A', 'Accepted'), ('P', 'Pending'), ('I', 'Inappropriate'), ('B', 'Backport'), ('S', 'Submitted'), ('D', 'Denied'), ('N', 'Inactive-Upstream')], default='U', max_length=1),
|
|
),
|
|
]
|