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

20 lines
413 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('topologie', '0006_auto_20160703_1129'),
]
operations = [
migrations.AlterField(
model_name='room',
name='number',
field=models.IntegerField(null=True, blank=True),
),
]