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

19 lines
386 B
Python

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