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

Record the configure script options when importing recipe / package information so we can display them. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
21 lines
469 B
Python
21 lines
469 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.16 on 2019-04-15 00:18
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('layerindex', '0038_patch_striplevel'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='recipe',
|
|
name='configopts',
|
|
field=models.CharField(blank=True, max_length=4096),
|
|
),
|
|
]
|