layerindex-web/layerindex/migrations/0036_layerbranch_local_path.py
Paul Eggleton 19944b2281 import_otherdistro: optionally store local path
We don't actually need this for anything at the moment, but it would be
useful if we get to the point where we need to access imported files
within the application after the import process (e.g. to compare
patches).

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2019-07-17 11:31:04 +12:00

21 lines
535 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2019-04-02 20:22
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('layerindex', '0034_source_sha256sum'),
]
operations = [
migrations.AddField(
model_name='layerbranch',
name='local_path',
field=models.CharField(blank=True, help_text='Local subdirectory where layer data can be found', max_length=255),
),
]