layerindex-web/layerindex/migrations/0042_recipe_pe_pr.py
Pranay Mankad a549f6f393 Track PE and PR for recipes
This change is to record PE (epoch) and PR (release) values for recipes.
These values will be reflected in the REST API but will not be exposed
in the UI. The aim of this change is to enrich metadata availability to
consumers of the feed.

Signed-off-by: Pranay Mankad <pranaymankad@gmail.com>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2019-10-02 14:26:37 +13:00

21 lines
616 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.24 on 2019-09-24 21:34
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('layerindex', '0041_recipe_configopts'),
]
operations = [
migrations.AddField(
model_name='recipe',
name='pe',
field=models.CharField(blank=True, max_length=100),
),
migrations.AddField(
model_name='recipe',
name='pr',
field=models.CharField(blank=True, max_length=100),
),
]