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

19 lines
374 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('topologie', '0003_room'),
]
operations = [
migrations.AlterUniqueTogether(
name='switch',
unique_together=set([('building', 'number')]),
),
]