8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-02 12:14:05 +00:00
re2o/topologie/migrations/0001_initial.py
2016-07-03 14:02:46 +02:00

23 lines
611 B
Python

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