add commit_id to Package

This commit is contained in:
Laura Klünder 2016-09-13 18:22:44 +02:00
parent 30e8204055
commit 8d2e18c890
4 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2016-09-13 16:12
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mapdata', '0002_package_home_repo'),
]
operations = [
migrations.AddField(
model_name='package',
name='commit_id',
field=models.CharField(max_length=40, null=True, verbose_name='current commit id'),
),
]