Extend LD Model
This commit is contained in:
25
billard/migrations/0003_auto_20170109_1509.py
Normal file
25
billard/migrations/0003_auto_20170109_1509.py
Normal 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),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user