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

Especially since LTS branches have become more popular as the only active branch, we need to be able to turn off updates on a LayerBranch basis rather than the current Layer or Branch heavier hammers. Signed-off-by: Tim Orling <tim.orling@konsulko.com>
19 lines
536 B
Python
19 lines
536 B
Python
# Generated by Django 4.2.6 on 2023-10-07 19:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('layerindex', '0046_alter_patch_status'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='layerbranch',
|
|
name='updates_enabled',
|
|
field=models.BooleanField(default=True, help_text='Enable automatically updating layer metadata for this layer:branch via the update script', verbose_name='Enable updates'),
|
|
),
|
|
]
|