layerindex-web/layerindex/migrations/0043_recipe_srcrev.py
Paul Eggleton 73656432b2 Track SRCREV for each recipe
For the purposes of the branch comparison function I'm about to add it
would be useful to track the value of SRCREV, so we can see if it has
changed even if PV hasn't.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2019-10-21 10:47:01 +13:00

21 lines
459 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.22 on 2019-10-20 22:15
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('layerindex', '0042_recipe_pe_pr'),
]
operations = [
migrations.AddField(
model_name='recipe',
name='srcrev',
field=models.CharField(blank=True, max_length=64),
),
]