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

Allow us to record a checksum for local sources (and potentially remote ones if it is recorded in the recipe). This just adds the field, but doesn't populate it. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
21 lines
466 B
Python
21 lines
466 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.16 on 2019-04-01 03:20
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('layerindex', '0032_patchdisposition'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='source',
|
|
name='sha256sum',
|
|
field=models.CharField(blank=True, max_length=64),
|
|
),
|
|
]
|