26 lines
733 B
Python
26 lines
733 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-01-06 19:24
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('billard', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='LocationData',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('location_id', models.CharField(max_length=32)),
|
|
('table_no', models.IntegerField()),
|
|
('tst', models.DateTimeField()),
|
|
('on_off', models.BooleanField()),
|
|
],
|
|
),
|
|
]
|