26 lines
641 B
Python
26 lines
641 B
Python
# -*- 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),
|
|
),
|
|
]
|