layerindex-web/layerindex/migrations/0049_alter_layerbranch_vcs_subdir.py
Tim Orling 1204b07cf7 layerindex: allow Repository subdir to be 60 chars
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>
2024-02-05 18:18:41 -08:00

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