layerindex-web/rrs/migrations/0028_recipeupgrade_srcrev.py
Paul Eggleton 1a123bfb15 RRS: detect changes in SRCREV as upgrades
Aligning with recent changes in the layer index proper, handle where PV
is not changing but SRCREV is - typically this happens when PV does not
contain ${SRCPV} - ncurses in OE-Core is one example.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2019-11-21 02:51:30 +13:00

21 lines
473 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.22 on 2019-10-23 00:09
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rrs', '0027_recipeupgrade_prev_version'),
]
operations = [
migrations.AddField(
model_name='recipeupgrade',
name='srcrev',
field=models.CharField(blank=True, max_length=64),
),
]