8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-04 13:14:06 +00:00
re2o/topologie/migrations/0004_auto_20160703_1122.py

19 lines
374 B
Python
Raw Normal View History

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 = [
2016-07-03 12:02:46 +00:00
('topologie', '0003_room'),
2016-07-03 01:12:41 +00:00
]
operations = [
2016-07-03 12:02:46 +00:00
migrations.AlterUniqueTogether(
name='switch',
unique_together=set([('building', 'number')]),
2016-07-03 01:12:41 +00:00
),
]