carom-server/billard/migrations/0001_initial.py

29 lines
873 B
Python
Raw Normal View History

2017-01-03 19:29:13 +01:00
# -*- coding: utf-8 -*-
2017-02-01 13:51:15 +01:00
# Generated by Django 1.10.5 on 2017-02-01 10:50
2017-01-03 19:29:13 +01:00
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
2017-02-01 13:51:15 +01:00
name='LocationData',
2017-01-03 19:29:13 +01:00
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2017-02-01 13:51:15 +01:00
('location_id', models.CharField(max_length=32)),
('table_no', models.IntegerField()),
('tst', models.DateTimeField()),
('on_off', models.BooleanField()),
('processed', models.BooleanField(default=False)),
('error_msg', models.CharField(blank=True, max_length=16000, null=True)),
2017-01-03 19:29:13 +01:00
],
),
]