Extend LD Model

This commit is contained in:
2017-01-09 15:37:25 +01:00
parent 5c21ec8699
commit 6610c3b48e
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-01-09 14:09
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('billard', '0002_locationdata'),
]
operations = [
migrations.AddField(
model_name='locationdata',
name='error_msg',
field=models.CharField(blank=True, max_length=16000, null=True),
),
migrations.AddField(
model_name='locationdata',
name='processed',
field=models.BooleanField(default=False),
),
]