8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-22 11:23:10 +00:00
re2o/preferences/migrations/0028_jauge_direction.py
2017-12-19 21:11:52 +01:00

20 lines
533 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-12-16 05:06
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('preferences', '0027_jauge'),
]
operations = [
migrations.AddField(
model_name='jauge',
name='direction',
field=models.CharField(choices=[('croissant', 'croissant'), ('decroissant', 'decroissant')], default='croissant', max_length=32),
),
]