layerindex-web/rrs/migrations/0017_maintenanceplan_maintainer_style.py
Paul Eggleton e071ebab29 rrs: add flag to MaintenancePlan to specify layer-wide maintainers
Most layers do not track maintenance on a per-recipe basis, and for
those layers we will hide some of the per-recipe maintainer features
and on the recipe detail show the layer maintainer(s) as the
maintainer(s) of the recipe.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-04 23:57:53 +12:00

21 lines
623 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.12 on 2018-04-18 02:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rrs', '0016_rmh_layerbranch_nonnull'),
]
operations = [
migrations.AddField(
model_name='maintenanceplan',
name='maintainer_style',
field=models.CharField(choices=[('I', 'Per-recipe - maintainers.inc'), ('L', 'Layer-wide')], default='L', help_text='Maintainer tracking style for the layers within this plan', max_length=1),
),
]