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

https://github.com/webosose/meta-webosose has layers like: meta-webos-backports/meta-webos-backports-4.1 which is 45 characters. Allow for up to 60 characters in the vcs_subdir field in the LayerBranch class. [YOCTO #15374] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
23 lines
720 B
Python
23 lines
720 B
Python
# Generated by Django 4.2.9 on 2024-01-30 03:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("layerindex", "0048_bbclassglobal_bbclassrecipe_bbclass_bbclass_type"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="layerbranch",
|
|
name="vcs_subdir",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="Subdirectory within the repository where the layer is located, if not in the root (usually only used if the repository contains more than one layer)",
|
|
max_length=60,
|
|
verbose_name="Repository subdirectory",
|
|
),
|
|
),
|
|
]
|