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

It's not too common but there are instances where people have copied .inc files into their own layer and modified them, and if you are using such a layer that could result in unexpected behaviour. In order to get a handle on when this is being done, collect data about all .inc files and show duplicates in the Duplicates screen. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
25 lines
739 B
Python
25 lines
739 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.12 on 2018-11-05 19:50
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('layerindex', '0025_update_retcode'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='IncFile',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('path', models.CharField(max_length=255)),
|
|
('layerbranch', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='layerindex.LayerBranch')),
|
|
],
|
|
),
|
|
]
|