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

Recipes come and go over time, so when a recipe gets deleted the history for it goes away, which means that if you look back in time you do not see an accurate picture - you only see the subset of recipes that are currently present. Introduce an indirection between recipes and history that allows for old recipes to persist (mostly in name only). Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
28 lines
623 B
Python
28 lines
623 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.16 on 2019-02-26 03:00
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rrs', '0021_recipesymbol_nonnull'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='recipemaintainer',
|
|
name='recipe',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='recipeupgrade',
|
|
name='recipe',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='recipeupstream',
|
|
name='recipe',
|
|
),
|
|
]
|