layerindex-web/layerindex/migrations/0017_classicrecipe_needs_attention.py
Paul Eggleton fcb44571fd Add "needs attention" flag for comparison recipes
Add a flag that can be set and searched for to indicate that we need to
take care of importing a package or a patch applied by a package.
Ideally the comments would elaborate on what's needed (if it's not
obvious from the cover status).

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-08-13 16:02:59 +02:00

20 lines
424 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('layerindex', '0016_classicrecipe_delete'),
]
operations = [
migrations.AddField(
model_name='classicrecipe',
name='needs_attention',
field=models.BooleanField(default=False),
),
]