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

Make it clearer what this field is for (it should be set for every comparison layer, so that they don't show up in places they shouldn't). Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
26 lines
680 B
Python
26 lines
680 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.12 on 2018-05-15 05:25
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('layerindex', '0018_layerrecipeextraurl'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='layeritem',
|
|
old_name='classic',
|
|
new_name='comparison',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='layeritem',
|
|
name='comparison',
|
|
field=models.BooleanField(default=False, help_text='Is this a comparison layer?', verbose_name='Comparison'),
|
|
),
|
|
]
|