layerindex-web/rrs/migrations/0009_rmh_layerbranch.py
Paul Eggleton 58c56883fd rrs_maintainer_history: add --fullreload option
Add an option that deletes all maintainer history records for the
current layer branch so that they can then be reloaded from scratch.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-04 23:57:53 +12:00

21 lines
499 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('layerindex', '0010_add_dependencies'),
('rrs', '0008_upgrade_info'),
]
operations = [
migrations.AddField(
model_name='recipemaintainerhistory',
name='layerbranch',
field=models.ForeignKey(blank=True, null=True, to='layerindex.LayerBranch'),
),
]