mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-06 05:34:46 +02:00

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