2016-08-30 15:33:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
dependencies = [("subscription", "0001_initial")]
|
2016-08-30 15:33:45 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-04 19:29:19 +00:00
|
|
|
model_name="subscription",
|
|
|
|
name="location",
|
|
|
|
field=models.CharField(
|
|
|
|
max_length=20,
|
|
|
|
verbose_name="location",
|
|
|
|
choices=[
|
|
|
|
("BELFORT", "Belfort"),
|
|
|
|
("SEVENANS", "Sevenans"),
|
|
|
|
("MONTBELIARD", "Montbéliard"),
|
|
|
|
("EBOUTIC", "Eboutic"),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
2016-08-30 15:33:45 +00:00
|
|
|
]
|