8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-24 04:13:12 +00:00
re2o/topologie/migrations/0075_auto_20200913_2130.py
2020-09-13 21:32:41 +02:00

35 lines
1,009 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-09-13 19:30
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('topologie', '0074_auto_20200419_1640'),
]
operations = [
migrations.AddField(
model_name='dormitory',
name='city',
field=models.CharField(blank=True, max_length=64, null=True),
),
migrations.AddField(
model_name='dormitory',
name='country',
field=models.CharField(blank=True, max_length=64, null=True),
),
migrations.AddField(
model_name='dormitory',
name='street',
field=models.CharField(blank=True, max_length=64, null=True),
),
migrations.AddField(
model_name='dormitory',
name='zipcode',
field=models.CharField(blank=True, max_length=64, null=True),
),
]