layerindex-web/rrs/migrations/0022_recipesymbol_finish.py
Paul Eggleton c0b8439182 RRS: collect history independent of current recipes
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>
2019-11-21 02:27:39 +13:00

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',
),
]