mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00

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>
21 lines
616 B
Python
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),
|
|
),
|
|
]
|