layerindex-web/layerindex/migrations/0034_source_sha256sum.py
Paul Eggleton 44aa397fbe Add sha256sum to Source model
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>
2019-07-17 11:31:04 +12:00

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