layerindex-web/rrs/migrations/0027_recipeupgrade_prev_version.py
Paul Eggleton cea8a64517 RRS: record previous version
Record the previous version in RecipeUpgrades, and use it to more
accurately record upgrades where there are multiple versions present at
a given time (common with e.g. kernel recipes).

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

21 lines
476 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.22 on 2019-08-20 02:24
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rrs', '0026_recipeupgrade_grouping'),
]
operations = [
migrations.AddField(
model_name='recipeupgrade',
name='prev_version',
field=models.CharField(blank=True, max_length=100),
),
]