implemented abb jobs to infoscreen
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9 on 2016-08-31 17:54
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import datetime
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ABBJob',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('sw_id', models.IntegerField(default=-1)),
|
||||
('title', models.CharField(max_length=255)),
|
||||
('QR', models.CharField(default='', max_length=255)),
|
||||
('created', models.DateTimeField(default=datetime.datetime.now)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user