add migration
This commit is contained in:
parent
ba29b0a351
commit
136c1eb363
25
billard/migrations/0002_tmplocationdata.py
Normal file
25
billard/migrations/0002_tmplocationdata.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-01-06 18:09
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('billard', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='TmpLocationData',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('location_id', models.UUIDField(editable=False)),
|
||||
('table_no', models.IntegerField()),
|
||||
('tst', models.DateTimeField()),
|
||||
('on_off', models.BooleanField()),
|
||||
],
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user