layerindex-web/layerindex/migrations/0041_recipe_configopts.py
Paul Eggleton 6deed03a1c Record configure options
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>
2019-07-17 11:31:04 +12:00

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),
),
]