mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
959 B
31 lines
959 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2017-08-24 19:22
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("preferences", "0007_auto_20170824_2056")]
|
|
|
|
operations = [
|
|
migrations.RemoveField(model_name="assooption", name="adresse"),
|
|
migrations.AddField(
|
|
model_name="assooption",
|
|
name="adresse1",
|
|
field=models.CharField(default="1 Rue de exemple", max_length=128),
|
|
),
|
|
migrations.AddField(
|
|
model_name="assooption",
|
|
name="adresse2",
|
|
field=models.CharField(default="94230 Cachan", max_length=128),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="assooption",
|
|
name="name",
|
|
field=models.CharField(
|
|
default="Association réseau école machin", max_length=256
|
|
),
|
|
),
|
|
]
|
|
|