2016-07-03 01:12:41 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2016-07-03 12:02:46 +00:00
|
|
|
name='Switch',
|
2016-07-03 01:12:41 +00:00
|
|
|
fields=[
|
2016-07-03 12:02:46 +00:00
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, verbose_name='ID', serialize=False)),
|
2016-07-03 01:12:41 +00:00
|
|
|
('building', models.CharField(max_length=10)),
|
2016-07-03 12:02:46 +00:00
|
|
|
('number', models.IntegerField()),
|
|
|
|
('details', models.CharField(max_length=255, blank=True)),
|
2016-07-03 01:12:41 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
]
|